mybatis处理map参数取值

mybatis处理map参数取值


 


insert into ${tableName}

${key}

values
#{value}


 


UPDATE ${tableName} SET

${key} = #{content[${key}]}

where seq = #{content[seq]} and genius_uid <=#{content[genius_uid]};

 


delete from ${tableName}
where seq = #{content[seq]};

转自 [https://blog.csdn.net/hj7jay/article/details/78652050#]

你可能感兴趣的:(mybatis处理map参数取值)