zhongrj
2023-05-23 e705ac2f51be0417c390a6262cdc7e1422e26a05
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="cn.gistack.sm.alarmRule.mapper.AlarmRuleMapper">
 
    <!--自定义分页列表查询-->
    <select id="selectAlarmRulePage" resultType="cn.gistack.sm.alarmRule.vo.AlarmRuleVO">
        select * from sm_alarm_rule where is_deleted = 0
        <if test="alarmRule.type!=null and alarmRule.type!=''">
            and type = #{alarmRule.type}
        </if>
    </select>
 
</mapper>