123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515 |
- <?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.ourwill.module.house.dao.daily.DeviceApplicationDao">
- <resultMap type="cn.ourwill.module.house.entity.daily.DeviceApplication" id="baseMap">
- <result column="id" property="id"/>
- <result column="grain_id" property="grainId"/>
- <result column="house_id" property="houseId"/>
- <result column="uuid" property="uuid"/>
- <result column="sync_flag" property="syncFlag"/>
- <result column="remark" property="remark"/>
- <result column="c_id" property="cId"/>
- <result column="c_time" property="cTime"/>
- <result column="u_id" property="uId"/>
- <result column="u_time" property="uTime"/>
- <result column="check_date" property="checkDate"/>
- <result column="device_applicationer" property="deviceApplicationer"/>
- <result column="application_month" property="applicationMonth"/>
- <result column="device_name" property="deviceName"/>
- <result column="application_number" property="applicationNumber"/>
- <result column="application_state" property="applicationState"/>
- <result column="agreed_date" property="agreedDate"/>
- <result column="deny_date" property="denyDate"/>
- <result column="deny_reason" property="denyReason"/>
- <result column="total" property="total"/>
- <result column="monthTime" property="monthTime"/>
- <result column="april" property="april"/>
- <result column="may" property="may"/>
- <result column="store_number" property="storeNumber"/>
- </resultMap>
- <resultMap type="cn.ourwill.module.house.entity.daily.DeviceApplication" id="mapOfFind" extends="baseMap">
- <result column="name" property="grainName"/>
- <result column="house_name" property="houseName"/>
- </resultMap>
- <sql id="columsOfFind">
- sg.name ,
- hf.house_name,
- </sql>
- <sql id="columns">
- a.id ,
- a.grain_id ,
- a.house_id ,
- a.uuid ,
- a.sync_flag ,
- a.remark ,
- a.c_id ,
- a.c_time ,
- a.u_id ,
- a.u_time ,
- a.check_date ,
- a.device_applicationer ,
- a.application_month ,
- a.device_name ,
- a.application_number ,
- a.application_state,
- agreed_date,
- deny_date,
- deny_reason
- </sql>
- <sql id="joinCols">
- </sql>
- <select id="get" resultMap="baseMap">
- SELECT
- hf.house_name,
- <include refid="columns"/>
- FROM device_application a
- LEFT JOIN house_info hf on hf.id=a.house_id
- <include refid="joinCols"/>
- WHERE a.id = #{id}
- </select>
- <select id="getByUuid" resultMap="baseMap">
- SELECT
- hf.house_name,
- <include refid="columns"/>
- FROM device_application a
- LEFT JOIN house_info hf on hf.id=a.house_id
- <include refid="joinCols"/>
- WHERE a.uuid = #{uuid}
- </select>
- <select id="findList" resultMap="mapOfFind">
- SELECT
- <include refid="columsOfFind"/>
- <include refid="columns"/>
- FROM device_application a
- LEFT JOIN sys_grain sg on sg.id=a.grain_id
- LEFT JOIN house_info hf on hf.id=a.house_id
- <include refid="joinCols"/>
- <where>
- <if test="id !=null">
- and a.id = #{id}
- </if>
- <if test="grainId !=null">
- and a.grain_id = #{grainId}
- </if>
- <if test="houseId !=null">
- and a.house_id = #{houseId}
- </if>
- <if test="uuid !=null">
- and a.uuid = #{uuid}
- </if>
- <if test="syncFlag !=null">
- and a.sync_flag = #{syncFlag}
- </if>
- <if test="remark !=null">
- and a.remark = #{remark}
- </if>
- <if test="cId !=null">
- and a.c_id = #{cId}
- </if>
- <if test="cTime !=null">
- and a.c_time = #{cTime}
- </if>
- <if test="uId !=null">
- and a.u_id = #{uId}
- </if>
- <if test="uTime !=null">
- and a.u_time = #{uTime}
- </if>
- <if test="checkDate !=null">
- and a.check_date = #{checkDate}
- </if>
- <if test="deviceApplicationer !=null">
- and a.device_applicationer = #{deviceApplicationer}
- </if>
- <if test="applicationMonth !=null">
- and a.application_month = #{applicationMonth}
- </if>
- <if test="deviceName !=null">
- and a.device_name = #{deviceName}
- </if>
- <if test="searchStartDate !=null">
- and a.check_date >= #{searchStartDate}
- </if>
- <if test="searchEndDate !=null">
- and a.check_date <= #{searchEndDate}
- </if>
- <if test="applicationNumber !=null">
- and a.application_number = #{applicationNumber}
- </if>
- <if test="agreedDate !=null">
- and a.agreed_date = #{agreedDate}
- </if>
- <if test="denyDate !=null">
- and a.deny_date = #{denyDate}
- </if>
- <if test="denyReason !=null">
- and a.deny_reason = #{denyReason}
- </if>
- <if test="applicationState !=null">
- and a.application_state <![CDATA[ <> ]]>'10'
- </if>
- <if test="yearTime !=null">
- and date_format(check_date,'%Y')=#{yearTime}
- </if>
- <if test="monthTime !=null and yearTime !=null">
- and date_format(check_date,'%Y%m')=#{monthTime}
- </if>
- <if test="cityId !=null">
- and sg.parentId = #{cityId}
- </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="baseMap">
- SELECT
- <include refid="columns"/>
- FROM device_application a
- <include refid="joinCols"/>
- <where>
- <if test="id !=null">
- and id = #{id}
- </if>
- <if test="grainId !=null">
- and grain_id = #{grainId}
- </if>
- <if test="houseId !=null">
- and house_id = #{houseId}
- </if>
- <if test="uuid !=null">
- and uuid = #{uuid}
- </if>
- <if test="syncFlag !=null">
- and sync_flag = #{syncFlag}
- </if>
- <if test="remark !=null">
- and remark = #{remark}
- </if>
- <if test="cId !=null">
- and c_id = #{cId}
- </if>
- <if test="cTime !=null">
- and c_time = #{cTime}
- </if>
- <if test="uId !=null">
- and u_id = #{uId}
- </if>
- <if test="uTime !=null">
- and u_time = #{uTime}
- </if>
- <if test="checkDate !=null">
- and check_date = #{checkDate}
- </if>
- <if test="deviceApplicationer !=null">
- and device_applicationer = #{deviceApplicationer}
- </if>
- <if test="applicationMonth !=null">
- and application_month = #{applicationMonth}
- </if>
- <if test="deviceName !=null">
- and device_name = #{deviceName}
- </if>
- <if test="applicationNumber !=null">
- and application_number = #{applicationNumber}
- </if>
- <if test="applicationState !=null">
- and application_state = #{applicationState}
- </if>
- <if test="agreedDate !=null">
- and agreed_date = #{agreedDate}
- </if>
- <if test="denyDate !=null">
- and deny_date = #{denyDate}
- </if>
- <if test="denyReason !=null">
- and deny_reason = #{denyReason}
- </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.daily.DeviceApplication">
- INSERT INTO device_application
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test=" id != null">
- id,
- </if>
- <if test=" grainId != null">
- grain_id,
- </if>
- <if test=" houseId != null">
- house_id,
- </if>
- <if test="uuid !=null">
- uuid,
- </if>
- <if test=" syncFlag != null">
- sync_flag,
- </if>
- <if test=" remark != null">
- remark,
- </if>
- <if test=" cId != null">
- c_id,
- </if>
- <if test=" cTime != null">
- c_time,
- </if>
- <if test=" uId != null">
- u_id,
- </if>
- <if test=" uTime != null">
- u_time,
- </if>
- <if test=" checkDate != null">
- check_date,
- </if>
- <if test=" deviceApplicationer != null">
- device_applicationer,
- </if>
- <if test="applicationMonth !=null">
- application_month,
- </if>
- <if test=" deviceName != null">
- device_name,
- </if>
- <if test=" applicationNumber != null">
- application_number,
- </if>
- <if test=" applicationState != null">
- application_state,
- </if>
- <if test="agreedDate !=null">
- agreed_date,
- </if>
- <if test="denyDate !=null">
- deny_date,
- </if>
- <if test="denyReason !=null">
- deny_reason
- </if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test=" id != null">
- #{id}, </if>
- <if test=" grainId != null">
- #{grainId}, </if>
- <if test=" houseId != null">
- #{houseId}, </if>
- <if test=" uuid != null">
- #{uuid}, </if>
- <if test="syncFlag !=null">
- #{syncFlag}, </if>
- <if test=" remark != null">
- #{remark}, </if>
- <if test=" cId != null">
- #{cId}, </if>
- <if test=" cTime != null">
- #{cTime}, </if>
- <if test=" uId != null">
- #{uId}, </if>
- <if test=" uTime != null">
- #{uTime}, </if>
- <if test=" checkDate != null">
- #{checkDate}, </if>
- <if test=" deviceApplicationer != null">
- #{deviceApplicationer}, </if>
- <if test="applicationMonth !=null">
- #{applicationMonth}, </if>
- <if test=" deviceName != null">
- #{deviceName}, </if>
- <if test=" applicationNumber != null">
- #{applicationNumber}, </if>
- <if test=" applicationState != null">
- #{applicationState}, </if>
- <if test="agreedDate !=null">
- #{agreedDate},
- </if>
- <if test="denyDate !=null">
- #{denyDate},
- </if>
- <if test="denyReason !=null">
- #{denyReason}
- </if>
- </trim>
- </insert>
- <update id="update" parameterType="cn.ourwill.module.house.entity.daily.DeviceApplication">
- UPDATE device_application <set>
- <if test=" id != null">
- id = #{id}, </if>
- <if test=" grainId != null">
- grain_id = #{grainId}, </if>
- <if test=" houseId != null">
- house_id = #{houseId}, </if>
- <if test=" uuid != null">
- uuid = #{uuid}, </if>
- <if test="syncFlag !=null">
- sync_flag = #{syncFlag}, </if>
- <if test=" remark != null">
- remark = #{remark}, </if>
- <if test=" cId != null">
- c_id = #{cId}, </if>
- <if test=" cTime != null">
- c_time = #{cTime}, </if>
- <if test=" uId != null">
- u_id = #{uId}, </if>
- <if test=" uTime != null">
- u_time = #{uTime}, </if>
- <if test=" checkDate != null">
- check_date = #{checkDate}, </if>
- <if test=" deviceApplicationer != null">
- device_applicationer = #{deviceApplicationer}, </if>
- <if test="applicationMonth !=null">
- application_month = #{applicationMonth}, </if>
- <if test=" deviceName != null">
- device_name = #{deviceName} , </if>
- <if test=" applicationNumber != null">
- application_number = #{applicationNumber}, </if>
- <if test=" applicationState != null">
- application_state = #{applicationState}, </if>
- <if test="agreedDate !=null">
- agreed_date = #{agreedDate},
- </if>
- <if test="denyDate !=null">
- deny_date = #{denyDate},
- </if>
- <if test="denyReason !=null">
- deny_reason = #{denyReason}
- </if>
- </set>
- WHERE id = #{id}
- </update>
- <update id="updateByUUID" parameterType="cn.ourwill.module.house.entity.daily.DeviceApplication">
- UPDATE device_application <set>
- <if test=" id != null">
- id = #{id}, </if>
- <if test=" grainId != null">
- grain_id = #{grainId}, </if>
- <if test=" houseId != null">
- house_id = #{houseId}, </if>
- <if test=" uuid != null">
- uuid = #{uuid}, </if>
- <if test="syncFlag !=null">
- sync_flag = #{syncFlag}, </if>
- <if test=" remark != null">
- remark = #{remark}, </if>
- <if test=" cId != null">
- c_id = #{cId}, </if>
- <if test=" cTime != null">
- c_time = #{cTime}, </if>
- <if test=" uId != null">
- u_id = #{uId}, </if>
- <if test=" uTime != null">
- u_time = #{uTime}, </if>
- <if test=" checkDate != null">
- check_date = #{checkDate}, </if>
- <if test=" deviceApplicationer != null">
- device_applicationer = #{deviceApplicationer}, </if>
- <if test="applicationMonth !=null">
- application_month = #{applicationMonth}, </if>
- <if test=" deviceName != null">
- device_name = #{deviceName} , </if>
- <if test=" applicationNumber != null">
- application_number = #{applicationNumber}, </if>
- <if test=" applicationState != null">
- application_state = #{applicationState}, </if>
- <if test="agreedDate !=null">
- agreed_date = #{agreedDate},
- </if>
- <if test="denyDate !=null">
- deny_date = #{denyDate},
- </if>
- <if test="denyReason !=null">
- deny_reason = #{denyReason}
- </if>
- </set>
- WHERE uuid = #{uuid}
- </update>
- <delete id="deleteById" parameterType="java.lang.Long">
- DELETE FROM device_application WHERE id = #{id}
- </delete>
- <delete id="deleteByIds" parameterType="java.util.List">
- DELETE FROM device_application WHERE id IN
- <foreach collection="list" index="index" item="item" open="(" separator="," close=")">
- #{item}
- </foreach>
- </delete>
- <select id="batchApplicationByIds" parameterType="java.util.List" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM device_application a
- <include refid="joinCols"/>
- WHERE id IN
- <foreach collection="list" index="index" item="item" open="(" separator="," close=")">
- #{item}
- </foreach>
- </select>
- <select id="findCollectionList" resultMap="baseMap">
- select DATE_FORMAT(check_date,'%m') monthTime,da.device_name,sum(da.application_number) total
- from device_application da
- where DATE_FORMAT(check_date,'%Y')=#{yearTime} and da.application_state='30'
- <if test=" grainId != null">
- and grain_id = #{grainId}
- </if>
- group BY device_name,monthTime
- <choose>
- <when test="page !=null and page.orderBy != null and page.orderBy != ''">
- ORDER BY ${page.orderBy}
- </when>
- <otherwise>
- </otherwise>
- </choose>
- </select>
- <select id="findApplicationList" resultMap="mapOfFind">
- SELECT s.name,d.grain_id,
- d.check_date,d.device_name,
- sum(d.application_number) application_number,
- a.store_count store_number
- FROM device_application d, (SELECT sum(dd.store_count) store_count,ddm.device_name FROM dm_device dd LEFT JOIN dm_device_model ddm ON dd.model_uuid = ddm.uuid GROUP BY ddm.device_name) AS a,sys_grain s
- WHERE s.id = d.grain_id AND d.device_name = a.device_name AND d.application_state='30'
- <if test="yearTime !=null">
- and date_format(check_date,'%Y')=#{yearTime}
- </if>
- <if test="monthTime !=null and yearTime !=null">
- and date_format(check_date,'%Y%m')=#{monthTime}
- </if>
- GROUP BY d.device_name
- <choose>
- <when test="page !=null and page.orderBy != null and page.orderBy != ''">
- ORDER BY ${page.orderBy}
- </when>
- <otherwise>
- </otherwise>
- </choose>
- </select>
- </mapper>
|