|
@@ -66,7 +66,7 @@
|
|
|
<if test="cochain != null ">and cochain = #{cochain}</if>
|
|
|
<if test="tetherId != null ">and tether_id = #{tetherId}</if>
|
|
|
<if test="delFlag != null">and del_flag = #{delFlag}</if>
|
|
|
- <if test="delFlag == null">and del_flag = #{0}</if>
|
|
|
+ <if test="delFlag == null">and del_flag = 0</if>
|
|
|
</where>
|
|
|
</select>
|
|
|
|
|
@@ -173,7 +173,7 @@
|
|
|
|
|
|
<update id="deletePoCollectionByCollectionId" parameterType="Long">
|
|
|
update po_collection
|
|
|
- SET del_flag = #{1}
|
|
|
+ SET del_flag = 1
|
|
|
where collection_id = #{collectionId}
|
|
|
</update>
|
|
|
|