操作日志查询修改

master
Xusan 2024-05-22 16:15:07 +08:00
parent 2c83c39456
commit 3290a93cc2
1 changed files with 2 additions and 2 deletions

View File

@ -18,10 +18,10 @@
AND A.ID = #{dto.abId} AND A.ID = #{dto.abId}
</if> </if>
<if test="dto.type != null and dto.type != '' "> <if test="dto.type != null and dto.type != '' ">
AND A.TYPE = #{dto.type} AND V.TYPE = #{dto.type}
</if> </if>
<if test="dto.version != null and dto.version != '' "> <if test="dto.version != null and dto.version != '' ">
AND A.VERSION = #{dto.version} AND V.VERSION = #{dto.version}
</if> </if>
</where> </where>