兴安优化出门证页面列表

This commit is contained in:
zc
2025-08-08 17:26:33 +08:00
parent 8ef43cccf0
commit f50dbe88ea
4 changed files with 33 additions and 1 deletions

View File

@@ -174,6 +174,12 @@
<if test="examineState != null and examineState != '' and examineState != 3">and e.examine_state = #{examineState}</if>
<if test="isExistBack != null">and e.is_exist_back = #{isExistBack}</if>
<if test="createBy != null">and e.create_by = #{createBy}</if>
<if test="examineStateList != null and examineStateList.size() > 0">
and e.examine_state in
<foreach item="examineState" collection="examineStateList" open="(" separator="," close=")">
#{examineState}
</foreach>
</if>
</where>
order by create_time desc
</select>