kongzy
2024-01-29 983bdb5b89932b38d08a11ad1eed6ea89d1597e1
assess-system/src/main/resources/mapper/SysNoticeMapper.xml
文件名从 assess-system/src/main/resources/mapper/system/SysNoticeMapper.xml 修改
@@ -10,10 +10,11 @@
    <select id="noticeList" resultType="com.gkhy.assess.system.domain.SysNotice">
        select n.id,n.title,n.create_time,n.update_time from sys_notice n
        <where>
            and n.del_flag=0
            <if test="title != null and title != ''">
                AND n.title like concat('%', #{title}, '%')
            </if>
            <if test="status != null and status != ''">
            <if test="status != null">
                AND n.status = #{status}
            </if>
        </where>