123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376 |
- <!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.RecordDeviceCustodyDao">
- <resultMap type="cn.ourwill.module.house.entity.dm.RecordDeviceCustody" id="baseMap">
- <result column="id" property="id"/>
- <result column="grain_id" property="grainId"/>
- <result column="get_time" property="getTime"/>
- <result column="device_name" property="deviceName"/>
- <result column="device_model" property="deviceModel"/>
- <result column="remark" property="remark"/>
- <result column="device_count" property="deviceCount"/>
- <result column="number" property="number"/>
- <result column="store_count" property="storeCount"/>
- <result column="bookkeeper" property="bookkeeper"/>
- <result column="handler" property="handler"/>
- <result column="collator" property="collator"/>
- <result column="model_uuid" property="modelUuid"/>
- <result column="uuid" property="uuid"/>
- </resultMap>
- <resultMap type="cn.ourwill.module.house.entity.dm.RecordDeviceCustody" id="mapOfFind" extends="baseMap">
- <result column="id" property="id"/>
- <result column="get_time" property="getTime"/>
- <result column="device_name" property="deviceName"/>
- <result column="device_model" property="deviceModel"/>
- <result column="remark" property="remark"/>
- <result column="device_count" property="deviceCount"/>
- <result column="number" property="number"/>
- <result column="store_count" property="storeCount"/>
- <result column="bookkeeper" property="bookkeeper"/>
- <result column="handler" property="handler"/>
- <result column="collator" property="collator"/>
- <result column="model_uuid" property="modelUuid"/>
- <result column="uuid" property="uuid"/>
- </resultMap>
- <sql id="columns">
- a.id ,
- a.grain_id,
- a.get_time,
- a.device_name,
- a.device_model,
- a.remark,
- a.device_count,
- a.number,
- a.store_count,
- a.bookkeeper,
- a.`handler`,
- a.collator,
- a.model_uuid,
- a.uuid
- </sql>
- <!-- <sql id = "columsOfFind">
- sg.name,
- ddm.grain_id,
- 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_custody a
- <include refid="joinCols"/>
- WHERE a.id = #{id}
- </select>
- <select id="getByGrainIdList" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM record_device_custody a
- <include refid="joinCols"/>
- WHERE a.grain_id = #{grainId}
- </select>
- <select id="findByGrainIdAndDeviceDC" resultType="java.lang.Integer">
- SELECT SUM(device_count) FROM record_device_custody a
- <include refid="joinCols"/>
- WHERE a.grain_id = #{gi} AND device_model=#{deviceModel} AND device_name=#{deviceName}
- </select>
- <select id="findByGrainIdAndDeviceSC" resultType="java.lang.Integer">
- SELECT SUM(number) FROM record_device_custody a
- <include refid="joinCols"/>
- WHERE a.grain_id = #{gi} AND device_model=#{deviceModel} AND device_name=#{deviceName}
- </select>
- <select id="getByUuid" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM record_device_custody a
- <include refid="joinCols"/>
- WHERE a.uuid = #{uuid}
- </select>
- <select id="findList" resultMap="mapOfFind">
- SELECT
- <include refid="columns"/>
- FROM record_device_custody a
- LEFT JOIN sys_grain sg ON sg.id = a.grain_id
- <where>
- <if test="id !=null">
- and a.id = #{id}
- </if>
- <if test="cityId !=null and cityId !=''">
- and sg.parentId = #{cityId}
- </if>
- <if test="grainId !=null">
- and a.grain_id = #{grainId}
- </if>
- <if test="getTime !=null">
- and a.get_time like CONCAT('%',#{getTime},'%')
- </if>
- <if test="deviceName !=null and deviceName !=''">
- and a.device_name = #{deviceName}
- </if>
- <if test="deviceModel !=null and deviceModel !=''">
- and a.device_model = #{deviceModel}
- </if>
- <if test="remark !=null">
- and a.remark = #{remark}
- </if>
- <if test="deviceCount !=null">
- and a.device_count = #{deviceCount}
- </if>
- <if test="number !=null">
- and a.number = #{number}
- </if>
- <if test="storeCount !=null">
- and a.store_count = #{storeCount}
- </if>
- <if test="bookkeeper !=null">
- and a.bookkeeper = #{bookkeeper}
- </if>
- <if test="handler !=null">
- and a.handler = #{handler}
- </if>
- <if test="collator !=null">
- and a.collator = #{collator}
- </if>
- <if test="modelUuid !=null">
- and a.model_uuid = #{modelUuid}
- </if>
- <if test="uuid !=null">
- and a.uuid = #{uuid}
- </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="findListAll" resultMap="mapOfFind">
- SELECT
- *
- FROM record_device_custody a
- <include refid="joinCols"/>
- </select>
- <select id="findAllList" resultMap="mapOfFind">
- SELECT
- <include refid="columns"/>
- FROM record_device_custody a
- <where>
- <if test="id !=null">
- and a.id = #{id}
- </if>
- <if test="getTime !=null">
- and a.get_time = #{getTime}
- </if>
- <if test="deviceName !=null and deviceName !=''">
- and a.device_name = #{deviceName}
- </if>
- <if test="deviceModel !=null and deviceModel !=''">
- and a.device_model = #{deviceModel}
- </if>
- <if test="remark !=null">
- and a.remark = #{remark}
- </if>
- <if test="deviceCount !=null">
- and a.device_count = #{deviceCount}
- </if>
- <if test="number !=null">
- and a.number = #{number}
- </if>
- <if test="storeCount !=null">
- and a.store_count = #{storeCount}
- </if>
- <if test="bookkeeper !=null">
- and a.bookkeeper = #{bookkeeper}
- </if>
- <if test="handler !=null">
- and a.handler = #{handler}
- </if>
- <if test="collator !=null">
- and a.collator = #{collator}
- </if>
- <if test="modelUuid !=null">
- and a.model_uuid = #{modelUuid}
- </if>
- <if test="uuid !=null">
- and a.uuid = #{uuid}
- </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.RecordDeviceCustody">
- INSERT INTO record_device_custody
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test=" id != null">
- id,
- </if>
- <if test="grainId != null">
- grain_id,
- </if>
- <if test="getTime !=null">
- get_time ,
- </if>
- <if test="deviceName !=null and deviceName !=''">
- device_name ,
- </if>
- <if test="deviceModel !=null and deviceModel !=''">
- device_model ,
- </if>
- <if test="remark !=null">
- remark ,
- </if>
- <if test="deviceCount !=null">
- device_count ,
- </if>
- <if test="number !=null">
- `number`,
- </if>
- <if test="storeCount !=null">
- store_count,
- </if>
- <if test="bookkeeper !=null">
- bookkeeper ,
- </if>
- <if test="handler !=null">
- handler ,
- </if>
- <if test="collator !=null">
- collator ,
- </if>
- <if test="modelUuid !=null">
- model_uuid ,
- </if>
- <if test="uuid !=null">
- uuid
- </if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test=" id != null">
- #{id}, </if>
- <if test=" grainId != null">
- #{grainId}, </if>
- <if test="getTime !=null">
- #{getTime},
- </if>
- <if test="deviceName !=null and deviceName !=''">
- #{deviceName},
- </if>
- <if test="deviceModel !=null and deviceModel !=''">
- #{deviceModel},
- </if>
- <if test="remark !=null">
- #{remark},
- </if>
- <if test="deviceCount !=null">
- #{deviceCount},
- </if>
- <if test="number !=null">
- #{number},
- </if>
- <if test="storeCount !=null">
- #{storeCount},
- </if>
- <if test="bookkeeper !=null">
- #{bookkeeper},
- </if>
- <if test="handler !=null">
- #{handler},
- </if>
- <if test="collator !=null">
- #{collator},
- </if>
- <if test="modelUuid !=null">
- #{modelUuid},
- </if>
- <if test="uuid !=null">
- #{uuid}
- </if>
- </trim>
- </insert>
- <update id="update" parameterType="cn.ourwill.module.house.entity.dm.RecordDeviceCustody">
- UPDATE record_device_custody <set>
- <if test="id != null">
- id= #{id} ,
- </if>
- <if test="getTime !=null">
- get_time = #{getTime},
- </if>
- <if test="deviceName !=null and deviceName !=''">
- device_name = #{deviceName},
- </if>
- <if test="deviceModel !=null and deviceModel !=''">
- device_model = #{deviceModel},
- </if>
- <if test="remark !=null">
- remark = #{remark},
- </if>
- <if test="deviceCount !=null">
- device_count = #{deviceCount},
- </if>
- <if test="number !=null">
- number = #{number},
- </if>
- <if test="storeCount !=null">
- store_count = #{storeCount},
- </if>
- <if test="bookkeeper !=null">
- bookkeeper = #{bookkeeper},
- </if>
- <if test="handler !=null">
- handler = #{handler},
- </if>
- <if test="collator !=null">
- collator = #{collator},
- </if>
- <if test="modelUuid !=null">
- model_uuid = #{modelUuid},
- </if>
- <if test="uuid !=null">
- uuid = #{uuid}
- </if>
- </set>
- WHERE id = #{id}
- </update>
- <delete id="deleteById" parameterType="java.lang.Long">
- DELETE FROM record_device_custody WHERE id = #{id}
- </delete>
- <delete id="deleteByIds" parameterType="java.util.List">
- DELETE FROM record_device_custody WHERE id IN
- <foreach collection="list" index="index" item="item" open="(" separator="," close=")">
- #{item}
- </foreach>
- </delete>
- </mapper>
|