123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360 |
- <?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.intelcontrol.GrainStatusCheckHistoryDao">
- <resultMap type="cn.ourwill.module.house.entity.intelcontrol.GrainStatusHistoryRecord" id="baseMap">
- <result column="id" property="id"/>
- <result column="cityId" property="cityId"/>
- <result column="grain_id" property="grainId"/>
- <result column="house_id" property="houseId"/>
- <result column="grain_status_check_id" property="grainStatusCheckId"/>
- <result column="check_date" property="checkDate"/>
- <result column="inner_temper" property="innerTemper"/>
- <result column="inner_wet" property="innerWet"/>
- <result column="outside_temper" property="outsideTemper"/>
- <result column="outside_wet" property="outsideWet"/>
- <result column="average_temper" property="averageTemper"/>
- <result column="uuid" property="uuid"/>
- <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="version" property="version"/>
- <result column="sync_flag" property="syncFlag"/>
- </resultMap>
- <sql id="columns">
- id,
- cityId,
- grain_id,
- house_id,
- check_date,
- inner_temper,
- inner_wet,
- outside_temper,
- outside_wet,
- average_temper,
- uuid,
- c_id,
- c_time,
- u_id,
- u_time,
- version,
- sync_flag
- </sql>
- <!--<sql id="joinCols">
- left join sys_user u on sol.c_id=u.id
- </sql>-->
- <select id="get" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM grain_status_historyrecord a
- <!--<include refid="joinCols"/>-->
- WHERE a.id = #{id}
- </select>
- <select id="findList" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM grain_status_historyrecord
- <!--<include refid="joinCols"/>-->
- <where>
- <if test="id !=null">
- and id = #{id}
- </if>
- <if test="cityId !=null">
- and cityId = #{cityId}
- </if>
- <if test="grainId !=null">
- and grain_id = #{grainId}
- </if>
- <if test="houseId !=null">
- and house_id= #{houseId}
- </if>
- <if test="checkDate !=null">
- and check_date = #{checkDate}
- </if>
- <if test="checkStartDate !=null and checkStartDate != ''">
- and check_date <![CDATA[ >= ]]> #{checkStartDate}
- </if>
- <if test="checkEndDate !=null and checkEndDate != ''">
- and check_date <= #{checkEndDate}
- </if>
- <if test="innerTemper !=null and innerTemper != 0.0">
- and inner_temper = #{innerTemper}
- </if>
- <if test="innerWet !=null and innerWet != 0.0">
- and inner_wet = #{innerWet}
- </if>
- <if test="outsideTemper !=null and outsideTemper != 0.0">
- and outside_temper = #{outsideTemper}
- </if>
- <if test="outsideWet !=null and outsideWet != 0.0">
- and outside_wet = #{outsideWet}
- </if>
- <if test="averageTemper !=null and averageTemper != 0.0">
- and average_temper = #{averageTemper}
- </if>
- <if test="uuid !=null">
- and uuid = #{uuid}
- </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="version !=null">
- and version = #{version}
- </if>
- <if test="syncFlag !=null">
- and sync_flag = #{syncFlag}
- </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="findTemHumCurveList" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM grain_status_historyrecord
- <!--<include refid="joinCols"/>-->
- <where>
- <if test="grainId !=null">
- and grain_id = #{grainId}
- </if>
- <if test="houseId !=null">
- and house_id= #{houseId}
- </if>
- <if test="checkDate !=null">
- and check_date = #{checkDate}
- </if>
- <if test="checkStartDate !=null and checkStartDate != ''">
- and check_date <![CDATA[ >= ]]> #{checkStartDate}
- </if>
- <if test="checkEndDate !=null and checkEndDate != ''">
- and check_date <= #{checkEndDate}
- </if>
- </where>
- <choose>
- <when test="page !=null and page.orderBy != null and page.orderBy != ''">
- ORDER BY ${page.orderBy}
- </when>
- <otherwise>
- order by check_date desc
- </otherwise>
- </choose>
- </select>
- <select id="findListByHouseIdAndCheckDate" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM grain_status_historyrecord
- <where>
- <if test="grainId !=null">
- and grain_id = #{grainId}
- </if>
- <if test="houseId !=null">
- and house_id= #{houseId}
- </if>
- <if test="checkDate !=null">
- and check_date like CONCAT('%',#{checkDate},'%')
- </if>
- </where>
- </select>
- <insert id="insert" keyColumn="id" keyProperty="id" useGeneratedKeys="true"
- parameterType="cn.ourwill.module.house.entity.intelcontrol.GrainStatusHistoryRecord">
- INSERT INTO grain_status_historyrecord
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test="id !=null">
- id,
- </if>
- <if test="cityId !=null">
- cityId,
- </if>
- <if test="grainId !=null">
- grain_id,
- </if>
- <if test="houseId !=null">
- house_id,
- </if>
- <if test="checkDate !=null">
- check_date,
- </if>
- <if test="innerTemper !=null">
- inner_temper,
- </if>
- <if test="innerWet !=null">
- inner_wet,
- </if>
- <if test="outsideTemper !=null">
- outside_temper,
- </if>
- <if test="outsideWet !=null">
- outside_wet,
- </if>
- <if test="averageTemper !=null">
- average_temper,
- </if>
- <if test="uuid !=null">
- uuid,
- </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="version !=null">
- version,
- </if>
- <if test="syncFlag !=null">
- sync_flag
- </if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test="id !=null">
- #{id},
- </if>
- <if test="cityId !=null">
- #{cityId},
- </if>
- <if test="grainId !=null">
- #{grainId},
- </if>
- <if test="houseId !=null">
- #{houseId},
- </if>
- <if test="checkDate !=null">
- #{checkDate},
- </if>
- <if test="innerTemper !=null">
- #{innerTemper},
- </if>
- <if test="innerWet !=null">
- #{innerWet},
- </if>
- <if test="outsideTemper !=null">
- #{outsideTemper},
- </if>
- <if test="outsideWet !=null">
- #{outsideWet},
- </if>
- <if test="averageTemper !=null">
- #{averageTemper},
- </if>
- <if test="uuid !=null">
- #{uuid},
- </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="version !=null">
- #{version},
- </if>
- <if test="syncFlag !=null">
- #{syncFlag}
- </if>
- </trim>
- </insert>
- <update id="update" parameterType="cn.ourwill.module.house.entity.intelcontrol.GrainStatusHistoryRecord">
- UPDATE grain_status_historyrecord <set>
- <if test="id !=null">
- id = #{id},
- </if>
- <if test="cityId !=null">
- cityId = #{cityId},
- </if>
- <if test="grainId !=null">
- grain_id = #{grainId},
- </if>
- <if test="houseId !=null">
- house_id= #{houseId},
- </if>
- <if test="checkDate !=null">
- check_date = #{checkDate},
- </if>
- <if test="innerTemper !=null">
- inner_temper = #{innerTemper},
- </if>
- <if test="innerWet !=null">
- inner_wet = #{innerWet},
- </if>
- <if test="outsideTemper !=null">
- outside_temper = #{outsideTemper},
- </if>
- <if test="outsideWet !=null">
- outside_wet = #{outsideWet},
- </if>
- <if test="averageTemper !=null">
- average_temper = #{averageTemper},
- </if>
- <if test="uuid !=null">
- uuid = #{uuid},
- </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="version !=null">
- version = #{version},
- </if>
- <if test="syncFlag !=null">
- sync_flag = #{syncFlag}
- </if>
- </set>
- WHERE id = #{id}
- </update>
- <delete id="deleteById" parameterType="java.lang.Long">
- DELETE FROM grain_status_historyrecord WHERE id = #{id}
- </delete>
- <delete id="deleteByIds" parameterType="java.util.List">
- DELETE FROM grain_status_historyrecord WHERE id IN
- <foreach collection="list" index="index" item="item" open="(" separator="," close=")">
- #{item}
- </foreach>
- </delete>
- </mapper>
|