ScadabjMapper.xml 1.1 KB

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="com.gyee.wisdom.alarm.sharding.mapper.ScadabjMapper">
  4. <select id="pageQueryAll" parameterType="java.util.Map" resultType="com.gyee.wisdom.alarm.sharding.entity.Scadabj">
  5. select * from SCADABJ a
  6. <where>
  7. 1=1
  8. <if test="pointKey !=null and pointKey !=''">
  9. and a.pointKey like '%${pointKey}%'
  10. </if>
  11. <if test="stationId !=null and stationId !=''">
  12. and a.stationId=#{stationId}
  13. </if>
  14. <if test="enable !=null and enable !=''">
  15. and a.enabled=#{enable}
  16. </if>
  17. <if test="description !=null and description !=''">
  18. and a.description like '%${description}%'
  19. </if>
  20. </where>
  21. </select>
  22. <select id="getAll" parameterType="java.util.Map" resultType="com.gyee.wisdom.alarm.sharding.entity.Scadabj">
  23. select * from SCADABJ a
  24. </select>
  25. </mapper>