无关风月
昨天 f6760448428b0a11aebab4ee281023532e4f61d7
1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.system.mapper.CleanToiletMaintenanceMapper">
 
    <select id="pageList" resultType="com.ruoyi.system.model.CleanToiletMaintenance">
        select * from clean_toilet_maintenance
        where 1=1
        <if test="query.recordDate != null and query.recordDate != ''">
            and record_date like concat('%',#{query.recordDate},'%')
        </if>
        and disabled = ${@com.ruoyi.common.enums.DisabledEnum@NO.getCode()}
    </select>
</mapper>