123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288 |
- <?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.dm.DevicePurchasePlanDao">
- <resultMap type="cn.ourwill.module.house.entity.dm.DevicePurchasePlan" id="baseMap">
- <result column="id" property="id"/>
- <result column="grain_id" property="grainId"/>
- <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="planner" property="planner"/>
- <result column="plan_month" property="planMonth"/>
- <result column="device_name" property="deviceName"/>
- <result column="application_number" property="applicationNumber"/>
- <result column="application_state" property="applicationState"/>
- <result column="store_number" property="storeNumber"/>
- <result column="plan_number" property="planNumber"/>
- <result column="purchased_number" property="purchasedNumber"/>
- </resultMap>
- <resultMap type="cn.ourwill.module.house.entity.dm.DevicePurchasePlan" id="mapOfFind" extends="baseMap">
- <result column="name" property="grainName"/>
- </resultMap>
- <sql id="columsOfFind">
- sg.name ,
- </sql>
- <sql id="columns">
- a.id ,
- a.grain_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_name ,
- a.application_number ,
- a.application_state,
- a.planner,
- a.plan_month,
- a.store_number,
- a.plan_number,
- a.purchased_number
- </sql>
- <sql id="joinCols">
- </sql>
- <select id="get" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM device_purchase_plan a
- <include refid="joinCols"/>
- WHERE a.id = #{id}
- </select>
- <select id="findList" resultMap="mapOfFind">
- SELECT d.id,s.name,d.grain_id,
- DATE_FORMAT(d.check_date, '%Y-%m') AS check_date,d.device_name,
- d.application_number,
- d.store_number,
- d.plan_number
- FROM device_purchase_plan d, sys_grain s
- WHERE s.id = d.grain_id AND d.application_state='30'
- <if test="grainList !=null">
- and grain_id in
- <foreach item="item" index="index" collection="grainList" open="(" separator="," close=")">
- #{item}
- </foreach>
- </if>
- <if test="grainId !=null">
- and grain_id=#{grainId}
- </if>
- <if test="deviceName !=null">
- and device_name=#{deviceName}
- </if>
- <if test="checkDate !=null">
- and check_date=#{checkDate}
- </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 s.parentId = #{cityId}
- </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>
- <select id="getStoreNumber" resultType="java.lang.String">
- SELECT store_count FROM dm_device WHERE model_uuid=(
- SELECT uuid FROM dm_device_model WHERE grain_id=#{grainId} AND device_name=#{deviceName} LIMIT 1
- ) ORDER BY id DESC LIMIT 1
- </select>
- <insert id="insert" keyColumn="id" keyProperty="id" useGeneratedKeys="true"
- parameterType="cn.ourwill.module.house.entity.dm.DevicePurchasePlan" >
- INSERT INTO device_purchase_plan
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test=" grainId != null">
- grain_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=" planner != null">
- planner,
- </if>
- <if test="planMonth !=null">
- plan_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="storeNumber !=null">
- store_number,
- </if>
- <if test="planNumber !=null">
- plan_number,
- </if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test=" grainId != null">
- #{grainId}, </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=" planner != null">
- #{planner},
- </if>
- <if test="planMonth !=null">
- #{planMonth},
- </if>
- <if test=" deviceName != null">
- #{deviceName},
- </if>
- <if test=" applicationNumber != null">
- #{applicationNumber},
- </if>
- <if test=" applicationState != null">
- #{applicationState},
- </if>
- <if test="storeNumber !=null">
- #{storeNumber},
- </if>
- <if test="planNumber !=null">
- #{planNumber},
- </if>
- </trim>
- </insert>
- <delete id="deleteByMonthTime">
- DELETE FROM device_purchase_plan
- <where>
- <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>
- </where>
- </delete>
- <update id="update" parameterType="cn.ourwill.module.house.entity.dm.DevicePurchasePlan">
- UPDATE device_purchase_plan <set>
- <if test="grainId != null">
- grain_id= #{grainId},
- </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=" planner != null">
- planner = #{planner},
- </if>
- <if test="planMonth !=null">
- plan_month = #{planMonth},
- </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="storeNumber !=null">
- store_number = #{storeNumber},
- </if>
- <if test="planNumber !=null">
- plan_number = #{planNumber}
- </if>
- </set>
- WHERE id = #{id}
- </update>
- </mapper>
|