删除无用字段

This commit is contained in:
weicw
2023-06-08 12:38:25 +08:00
parent 6b9d4c4ef8
commit 83d918a467

View File

@@ -49,9 +49,9 @@
<if test="param.comments != null">
AND a.comments LIKE CONCAT('%', #{param.comments}, '%')
</if>
<if test="param.username != null">
AND a.username = #{param.username}
</if>
<!-- <if test="param.username != null">-->
<!-- AND a.username = #{param.username}-->
<!-- </if>-->
<if test="param.deleted != null">
AND a.deleted = #{param.deleted}
</if>