新增图片模块

This commit is contained in:
2025-09-04 16:55:56 +08:00
parent acf191df81
commit 8c6cc08cac
24 changed files with 1119 additions and 6 deletions

View File

@@ -56,9 +56,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="sapNo != null and sapNo != ''">
and sap_no like concat('%', #{sapNo}, '%')
</if>
<if test="status != null and status != ''">
and status = #{status}
</if>
and (status is null or trim(status) != '1')
<if test="isDelete != null and isDelete != ''">
and is_delete = #{isDelete}
</if>