智慧保安后台管理-外网-验收版本
tangzy
2021-12-06 cc057177b2fb17aee9a173a6adbabdc578fd74c7
src/main/java/org/springblade/modules/seinspect/mapper/SeinspectMapper.xml
@@ -13,11 +13,20 @@
        <result column="reviewTime" property="reviewtime"/>
        <result column="insid" property="insid"/>
        <result column="examination_type" property="examinationType"/>
        <result column="url" property="url"/>
        <result column="jid" property="jid"/>
        <result column="deptid" property="deptid"/>
        <result column="jurisdiction" property="jurisdiction"/>
        <result column="url" property="url"/>
    </resultMap>
    <select id="selectSeinspectPage" resultMap="seinspectResultMap">
        select * from sys_seinspect where is_deleted = 0
        select * from sys_seinspect
        where 1=1
        <if test="seinspect.realname!=null and seinspect.realname != ''">
            and realName like concat('%', #{seinspect.realname},'%')
        </if>
    </select>
</mapper>