kongzy
2024-01-29 983bdb5b89932b38d08a11ad1eed6ea89d1597e1
assess-system/src/main/resources/mapper/SysLawMapper.xml
文件名从 assess-system/src/main/resources/mapper/system/SysLawMapper.xml 修改
@@ -9,10 +9,11 @@
    <select id="lawList" resultType="com.gkhy.assess.system.domain.SysLaw">
        select l.id,l.title,l.sub_title,l.law_type,l.pub_agency,l.pub_date,l.create_time from sys_law l
        <where>
            and l.del_flag=0
            <if test="title != null and title != ''">
                AND l.title like concat('%', #{title}, '%')
            </if>
            <if test="status != null and status != ''">
            <if test="status != null">
                AND l.status = #{status}
            </if>
        </where>