zss
2026-09-02 fbe2a6980c307b8cb5d4a1d895515d325634c0ab
src/main/resources/mapper/approve/ApprovalInstanceMapper.xml
@@ -29,6 +29,9 @@
        left join sys_user su on ai.create_user = su.user_id
        <where>
            deleted = 0
            <if test="ew.id != null">
                and ai.id = #{ew.id}
            </if>
            <if test="ew.instanceNo != null">
                and ai.instance_no like concat('%',#{ew.instanceNo},'%')
            </if>
@@ -52,7 +55,7 @@
                and ai.applicant_name = #{ew.applicantName}
            </if>
        </where>
        order by ai.id desc
        order by ai.create_time desc
    </select>
</mapper>