123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280 |
- <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="cn.ourwill.module.house.dao.dm.RecordDeviceKeepsDao">
- <resultMap type="cn.ourwill.module.house.entity.dm.RecordDeviceKeeps" id="baseMap">
- <result column="id" property="id"/>
- <result column="uuid" property="uuid"/>
- <result column="model_uuid" property="modelUuid"/>
- <result column="grain_id" property="grainId"/>
- <result column="keep_time_start" property="keepTimeStart"/>
- <result column="keep_time_end" property="keepTimeEnd"/>
- <result column="keeper" property="keeper"/>
- <result column="c_id" property="cId"/>
- <result column="c_time" property="cTime"/>
- </resultMap>
- <resultMap type="cn.ourwill.module.house.entity.dm.RecordDeviceKeeps" id="mapOfFind" extends="baseMap">
- <result column="name" property="grainName"/>
- <result column="device_name" property="deviceName"/>
- <result column="device_model" property="deviceModel"/>
- <result column="device_manager" property="deviceManager"/>
- </resultMap>
- <sql id="columns">
- a.id ,
- a.uuid ,
- a.model_uuid ,
- a.grain_id ,
- a.keep_time_start ,
- a.keep_time_end ,
- a.keeper ,
- a.c_id ,
- a.c_time
- </sql>
- <sql id="columnsOfFind">
- sg.name ,
- ddm.device_name ,
- ddm.device_model ,
- ddm.device_manager ,
- </sql>
- <sql id="joinCols">
- </sql>
- <select id="get" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM record_device_keeps a
- <include refid="joinCols"/>
- WHERE a.id = #{id}
- </select>
- <select id="getByUuid" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM record_device_keeps a
- <include refid="joinCols"/>
- WHERE a.uuid = #{uuid}
- </select>
- <select id="findList" resultMap="mapOfFind">
- SELECT
- <include refid="columnsOfFind"/>
- <include refid="columns"/>
- FROM record_device_keeps a
- left join dm_device_model ddm on a.model_uuid = ddm.uuid
- left join sys_grain sg on sg.id = a.grain_id
- <include refid="joinCols"/>
- <where>
- <if test="id !=null">
- and a.id = #{id}
- </if>
- <if test="uuid !=null">
- and a.uuid = #{uuid}
- </if>
- <if test="modelUuid !=null">
- and a.model_uuid = #{modelUuid}
- </if>
- <if test="grainId !=null">
- and a.grain_id = #{grainId}
- </if>
- <if test="cityId !=null">
- and sg.parentId = #{cityId}
- </if>
- <if test="grainName !=null">
- and sg.name = #{grainName}
- </if>
- <if test="deviceName !=null and deviceName !=''">
- and ddm.device_name = #{deviceName}
- </if>
- <if test="deviceModel !=null and deviceModel !=''">
- and ddm.device_model = #{deviceModel}
- </if>
- <if test="keepTimeStart !=null">
- and a.keep_time_start = #{keepTimeStart}
- </if>
- <if test="keepTimeEnd !=null">
- and a.keep_time_end = #{keepTimeEnd}
- </if>
- <if test="keeper !=null">
- and a.keeper = #{keeper}
- </if>
- <if test="cId !=null">
- and a.c_id = #{cId}
- </if>
- <if test="cTime !=null">
- and a.c_time = #{cTime}
- </if>
- </where>
- <choose>
- <when test="page !=null and page.orderBy != null and page.orderBy != ''">
- ORDER BY ${page.orderBy}
- </when>
- <otherwise>
- </otherwise>
- </choose>
- </select>
- <select id="findAllList" resultMap="mapOfFind">
- SELECT
- <include refid="columnsOfFind"/>
- <include refid="columns"/>
- FROM record_device_keeps a
- left join dm_device_model ddm on a.model_uuid = ddm.uuid
- left join sys_grain sg on sg.id = a.grain_id
- <include refid="joinCols"/>
- <where>
- <if test="id !=null">
- and a.id = #{id}
- </if>
- <if test="uuid !=null">
- and a.uuid = #{uuid}
- </if>
- <if test="modelUuid !=null">
- and a.model_uuid = #{modelUuid}
- </if>
- <if test="grainId !=null">
- and a.grain_id = #{grainId}
- </if>
- <if test="grainName !=null">
- and sg.name = #{grainName}
- </if>
- <if test="deviceName !=null and deviceName !=''">
- and ddm.device_name = #{deviceName}
- </if>
- <if test="deviceModel !=null and deviceModel !=''">
- and ddm.device_model = #{deviceModel}
- </if>
- <if test="keepTimeStart !=null">
- and a.keep_time_start = #{keepTimeStart}
- </if>
- <if test="keepTimeEnd !=null">
- and a.keep_time_end = #{keepTimeEnd}
- </if>
- <if test="keeper !=null">
- and a.keeper = #{keeper}
- </if>
- <if test="cId !=null">
- and a.c_id = #{cId}
- </if>
- <if test="cTime !=null">
- and a.c_time = #{cTime}
- </if>
- </where>
- <choose>
- <when test="page !=null and page.orderBy != null and page.orderBy != ''">
- ORDER BY ${page.orderBy}
- </when>
- <otherwise>
- </otherwise>
- </choose>
- </select>
- <insert id="insert" keyColumn="id" keyProperty="id" useGeneratedKeys="true"
- parameterType="cn.ourwill.module.house.entity.dm.RecordDeviceKeeps">
- INSERT INTO record_device_keeps
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test=" id != null">
- id,
- </if>
- <if test=" uuid != null">
- uuid,
- </if>
- <if test=" modelUuid != null">
- model_uuid,
- </if>
- <if test=" grainId != null">
- grain_id,
- </if>
- <if test=" keepTimeStart != null">
- keep_time_start,
- </if>
- <if test=" keepTimeEnd != null">
- keep_time_end,
- </if>
- <if test=" keeper != null">
- keeper,
- </if>
- <if test=" cId != null">
- c_id,
- </if>
- <if test=" cTime != null">
- c_time
- </if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test=" id != null">
- #{id},
- </if>
- <if test=" uuid != null">
- #{uuid},
- </if>
- <if test=" modelUuid != null">
- #{modelUuid},
- </if>
- <if test=" grainId != null">
- #{grainId},
- </if>
- <if test=" keepTimeStart != null">
- #{keepTimeStart},
- </if>
- <if test=" keepTimeEnd != null">
- #{keepTimeEnd},
- </if>
- <if test=" keeper != null">
- #{keeper},
- </if>
- <if test=" cId != null">
- #{cId},
- </if>
- <if test=" cTime != null">
- #{cTime}
- </if>
- </trim>
- </insert>
- <update id="update" parameterType="cn.ourwill.module.house.entity.dm.RecordDeviceKeeps">
- UPDATE record_device_keeps
- <set>
- <if test="id != null">
- id= #{id} ,
- </if>
- <if test="uuid != null">
- uuid= #{uuid} ,
- </if>
- <if test="modelUuid != null">
- model_uuid= #{modelUuid} ,
- </if>
- <if test="grainId != null">
- grain_id= #{grainId} ,
- </if>
- <if test="keepTimeStart != null">
- keep_time_start= #{keepTimeStart} ,
- </if>
- <if test="keepTimeEnd != null">
- keep_time_end= #{keepTimeEnd} ,
- </if>
- <if test="keeper != null">
- keeper= #{keeper} ,
- </if>
- <if test="cId != null">
- c_id= #{cId} ,
- </if>
- <if test="cTime != null">
- c_time= #{cTime}
- </if>
- </set>
- WHERE id = #{id}
- </update>
- <delete id="deleteById" parameterType="java.lang.Long">
- DELETE FROM record_device_keeps WHERE id = #{id}
- </delete>
- <delete id="deleteByIds" parameterType="java.util.List">
- DELETE FROM record_device_keeps WHERE id IN
- <foreach collection="list" index="index" item="item" open="(" separator="," close=")">
- #{item}
- </foreach>
- </delete>
- </mapper>
|