|
@@ -5,12 +5,12 @@
|
|
|
|
|
|
|
|
|
<select id="handleEncryption" resultType="com.citygis.pojo.ColumnInfo">
|
|
|
- select ${id} as id, ${column} as value from ${tableName}
|
|
|
+ select ${id} as id, ${column} as value from ${tableName} where IS_ENCRYPT is null
|
|
|
</select>
|
|
|
|
|
|
|
|
|
<update id="updateEncryption">
|
|
|
- update ${tableName} set ${column} = #{encryString} where ID = ${id}
|
|
|
+ update ${tableName} set ${column} = #{encryString} , IS_ENCRYPT = 1 where ID = ${id}
|
|
|
</update>
|
|
|
|
|
|
</mapper>
|