zyl 3 mesi fa
parent
commit
a08e6fc434
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      src/main/resources/mapper/JiaMiMapper.xml

+ 2 - 2
src/main/resources/mapper/JiaMiMapper.xml

@@ -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>