123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701 |
- <?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.DailyRecordWindrainsnowDao">
- <resultMap type="cn.ourwill.module.house.entity.daily.DailyRecordWindrainsnow" id="baseMap">
- <result column="id" property="id"/>
- <result column="uuid" property="uuid"/>
- <result column="house_id" property="houseId"/>
- <result column="check_date" property="checkDate"/>
- <result column="check_sign" property="checkSign"/>
- <result column="custodian_sign" property="custodianSign"/>
- <result column="remark" property="remark"/>
- <result column="pre_window_close" property="preWindowClose"/>
- <result column="pre_water_clean" property="preWaterClean"/>
- <result column="doing_weather" property="doingWeather"/>
- <result column="doing_window_close" property="doingWindowClose"/>
- <result column="doing_water_clean" property="doingWaterClean"/>
- <result column="doing_water_in" property="doingWaterIn"/>
- <result column="doing_water_in_position" property="doingWaterInPosition"/>
- <result column="doing_water_in_solution" property="doingWaterInSolution"/>
- <result column="post_check_date" property="postCheckDate"/>
- <result column="post_house_temp" property="postHouseTemp"/>
- <result column="post_house_water" property="postHouseWater"/>
- <result column="post_water_in" property="postWaterIn"/>
- <result column="post_water_in_position" property="postWaterInPosition"/>
- <result column="post_water_in_solution" property="postWaterInSolution"/>
- <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 ,
- uuid ,
- house_id ,
- check_date,
- check_sign,
- custodian_sign,
- remark,
- pre_window_close,
- pre_water_clean,
- doing_weather,
- doing_window_close,
- doing_water_clean,
- doing_water_in,
- doing_water_in_position,
- doing_water_in_solution,
- post_check_date,
- post_house_temp,
- post_house_water,
- post_water_in,
- post_water_in_position,
- post_water_in_solution,
- c_id ,
- c_time ,
- u_id ,
- u_time ,
- version,
- sync_flag
- </sql>
- <sql id="joinCols">
- </sql>
- <select id="get" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM windrainsnow_check a
- <include refid="joinCols"/>
- WHERE a.id = #{id}
- </select>
- <select id="getByUuid" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM windrainsnow_check a
- <include refid="joinCols"/>
- WHERE a.uuid = #{uuid}
- </select>
- <update id="updateByUuid" parameterType="cn.ourwill.module.house.entity.daily.DailyRecordWindrainsnow">
- UPDATE windrainsnow_check <set>
- <if test="uuid != null">
- uuid=#{uuid},
- </if>
- <if test="houseId != null">
- house_id=#{houseId},
- </if>
- <if test="checkDate !=null">
- check_date=#{checkDate},
- </if>
- <if test="checkSign !=null">
- check_sign=#{checkSign},
- </if>
- <if test="custodianSign !=null">
- custodian_sign=#{custodianSign},
- </if>
- <if test="remark !=null">
- remark=#{remark},
- </if>
- <if test="preWindowClose !=null">
- pre_window_close=#{preWindowClose},
- </if>
- <if test="preWaterClean !=null">
- pre_water_clean=#{preWaterClean},
- </if>
- <if test="doingWeather !=null">
- doing_weather=#{doingWeather},
- </if>
- <if test="doingWindowClose !=null">
- doing_window_close=#{doingWindowClose},
- </if>
- <if test="doingWaterClean !=null">
- doing_water_clean=#{doingWaterClean},
- </if>
- <if test="doingWaterIn !=null">
- doing_water_in=#{doingWaterIn},
- </if>
- <if test="doingWaterInPosition !=null">
- doing_water_in_position=#{doingWaterInPosition},
- </if>
- <if test="doingWaterInSolution !=null">
- doing_water_in_solution=#{doingWaterInSolution},
- </if>
- <if test="postCheckDate !=null">
- post_check_date=#{postCheckDate},
- </if>
- <if test="postHouseTemp !=null">
- post_house_temp=#{postHouseTemp},
- </if>
- <if test="postHouseWater !=null">
- post_house_water=#{postHouseWater},
- </if>
- <if test="postWaterIn !=null">
- post_water_in=#{postWaterIn},
- </if>
- <if test="postWaterInPosition !=null">
- post_water_in_position=#{postWaterInPosition},
- </if>
- <if test="postWaterInSolution !=null">
- post_water_in_solution=#{postWaterInSolution},
- </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 uuid = #{uuid}
- </update>
- <select id="findNoUuidList" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM windrainsnow_check a
- <include refid="joinCols"/>
- WHERE a.uuid is null or trim(a.uuid) = '';
- </select>
- <select id="findList" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM windrainsnow_check a
- <include refid="joinCols"/>
- <where>
- <if test="id !=null">
- and id = #{id}
- </if>
- <if test="searchStartDate !=null">
- and STR_TO_DATE(check_date, '%Y-%m-%d') <![CDATA[ >= ]]> #{searchStartDate}
- </if>
- <if test="searchEndDate !=null">
- and STR_TO_DATE(check_date, '%Y-%m-%d') <= #{searchEndDate}
- </if>
- <if test="uuid !=null">
- and uuid = #{uuid}
- </if>
- <if test="houseId !=null">
- and house_id = #{houseId}
- </if>
- <if test="checkDate !=null">
- and check_date = #{checkDate}
- </if>
- <if test="checkSign !=null">
- and check_sign = #{checkSign}
- </if>
- <if test="custodianSign !=null">
- and custodian_sign = #{custodianSign}
- </if>
- <if test="remark !=null">
- and remark = #{remark}
- </if>
- <if test="preWindowClose !=null">
- and pre_window_close = #{preWindowClose}
- </if>
- <if test="preWaterClean !=null">
- and pre_water_clean = #{preWaterClean}
- </if>
- <if test="doingWeather !=null">
- and doing_weather = #{doingWeather}
- </if>
- <if test="doingWindowClose !=null">
- and doing_window_close = #{doingWindowClose}
- </if>
- <if test="doingWaterClean !=null">
- and doing_water_clean = #{doingWaterClean}
- </if>
- <if test="doingWaterIn !=null">
- and doing_water_in = #{doingWaterIn}
- </if>
- <if test="doingWaterInPosition !=null">
- and doing_water_in_position = #{doingWaterInPosition}
- </if>
- <if test="doingWaterInSolution !=null">
- and doing_water_in_solution = #{doingWaterInSolution}
- </if>
- <if test="postCheckDate !=null">
- and post_check_date = #{postCheckDate}
- </if>
- <if test="postHouseTemp !=null">
- and post_house_temp = #{postHouseTemp}
- </if>
- <if test="postHouseWater !=null">
- and post_house_water = #{postHouseWater}
- </if>
- <if test="postWaterIn !=null">
- and post_water_in = #{postWaterIn}
- </if>
- <if test="postWaterInPosition !=null">
- and post_water_in_position = #{postWaterInPosition}
- </if>
- <if test="postWaterInSolution !=null">
- and post_water_in_solution = #{postWaterInSolution}
- </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>
- order by id desc
- </otherwise>
- </choose>
- </select>
- <select id="findAllList" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM windrainsnow_check a
- <include refid="joinCols"/>
- <where>
- <if test="id !=null">
- and id = #{id}
- </if>
- <if test="searchStartDate !=null">
- and STR_TO_DATE(check_date, '%Y-%m-%d') <![CDATA[ >= ]]> #{searchStartDate}
- </if>
- <if test="searchEndDate !=null">
- and STR_TO_DATE(check_date, '%Y-%m-%d') <= #{searchEndDate}
- </if>
- <if test="uuid !=null">
- and uuid = #{uuid}
- </if>
- <if test="houseId !=null">
- and house_id = #{houseId}
- </if>
- <if test="checkDate !=null">
- and check_date = #{checkDate}
- </if>
- <if test="checkSign !=null">
- and check_sign = #{checkSign}
- </if>
- <if test="custodianSign !=null">
- and custodian_sign = #{custodianSign}
- </if>
- <if test="remark !=null">
- and remark = #{remark}
- </if>
- <if test="preWindowClose !=null">
- and pre_window_close = #{preWindowClose}
- </if>
- <if test="preWaterClean !=null">
- and pre_water_clean = #{preWaterClean}
- </if>
- <if test="doingWeather !=null">
- and doing_weather = #{doingWeather}
- </if>
- <if test="doingWindowClose !=null">
- and doing_window_close = #{doingWindowClose}
- </if>
- <if test="doingWaterClean !=null">
- and doing_water_clean = #{doingWaterClean}
- </if>
- <if test="doingWaterIn !=null">
- and doing_water_in = #{doingWaterIn}
- </if>
- <if test="doingWaterInPosition !=null">
- and doing_water_in_position = #{doingWaterInPosition}
- </if>
- <if test="doingWaterInSolution !=null">
- and doing_water_in_solution = #{doingWaterInSolution}
- </if>
- <if test="postCheckDate !=null">
- and post_check_date = #{postCheckDate}
- </if>
- <if test="postHouseTemp !=null">
- and post_house_temp = #{postHouseTemp}
- </if>
- <if test="postHouseWater !=null">
- and post_house_water = #{postHouseWater}
- </if>
- <if test="postWaterIn !=null">
- and post_water_in = #{postWaterIn}
- </if>
- <if test="postWaterInPosition !=null">
- and post_water_in_position = #{postWaterInPosition}
- </if>
- <if test="postWaterInSolution !=null">
- and post_water_in_solution = #{postWaterInSolution}
- </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="findListByHouseId" resultMap="baseMap" parameterType="Map">
- SELECT
- <include refid="columns"/>
- from windrainsnow_check drfk
- where type = 0
- <if test="houseId !=null">
- and drfk.house_id = #{houseId}
- </if>
- <if test="beginDate !=null and beginDate!=''">
- and drfk.check_date >= str_to_date(#{beginDate},'%Y-%m-%d')
- </if>
- <if test="endDate !=null and endDate!=''">
- and drfk.check_date < str_to_date(#{endDate},'%Y-%m-%d')
- </if>
- order by str_to_date(drfk.check_date,'%Y-%m-%d') asc,drfk.id desc
- </select>
- <insert id="insert" keyColumn="id" keyProperty="id" useGeneratedKeys="true"
- parameterType="cn.ourwill.module.house.entity.daily.DailyRecordWindrainsnow">
- INSERT INTO windrainsnow_check
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test="id != null">
- id,
- </if>
- <if test="uuid != null">
- uuid,
- </if>
- <if test="houseId != null">
- house_id,
- </if>
- <if test="checkDate !=null and checkDate!='' ">
- check_date,
- </if>
- <if test="checkSign !=null">
- check_sign,
- </if>
- <if test="custodianSign !=null">
- custodian_sign,
- </if>
- <if test="remark !=null">
- remark,
- </if>
- <if test="preWindowClose !=null">
- pre_window_close,
- </if>
- <if test="preWaterClean !=null">
- pre_water_clean,
- </if>
- <if test="doingWeather !=null">
- doing_weather,
- </if>
- <if test="doingWindowClose !=null">
- doing_window_close,
- </if>
- <if test="doingWaterClean !=null">
- doing_water_clean,
- </if>
- <if test="doingWaterIn !=null">
- doing_water_in,
- </if>
- <if test="doingWaterInPosition !=null">
- doing_water_in_position,
- </if>
- <if test="doingWaterInSolution !=null">
- doing_water_in_solution,
- </if>
- <if test="postCheckDate !=null and postCheckDate!=''">
- post_check_date,
- </if>
- <if test="postHouseTemp !=null">
- post_house_temp,
- </if>
- <if test="postHouseWater !=null">
- post_house_water,
- </if>
- <if test="postWaterIn !=null">
- post_water_in,
- </if>
- <if test="postWaterInPosition !=null">
- post_water_in_position,
- </if>
- <if test="postWaterInSolution !=null">
- post_water_in_solution,
- </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=" uuid != null">
- #{uuid}, </if>
- <if test=" houseId != null">
- #{houseId}, </if>
- <if test="checkDate !=null and checkDate!=''" >
- #{checkDate},
- </if>
- <if test="checkSign !=null">
- #{checkSign},
- </if>
- <if test="custodianSign !=null">
- #{custodianSign},
- </if>
- <if test="remark !=null">
- #{remark},
- </if>
- <if test="preWindowClose !=null">
- #{preWindowClose},
- </if>
- <if test="preWaterClean !=null">
- #{preWaterClean},
- </if>
- <if test="doingWeather !=null">
- #{doingWeather},
- </if>
- <if test="doingWindowClose !=null">
- #{doingWindowClose},
- </if>
- <if test="doingWaterClean !=null">
- #{doingWaterClean},
- </if>
- <if test="doingWaterIn !=null">
- #{doingWaterIn},
- </if>
- <if test="doingWaterInPosition !=null">
- #{doingWaterInPosition},
- </if>
- <if test="doingWaterInSolution !=null">
- #{doingWaterInSolution},
- </if>
- <if test="postCheckDate !=null and postCheckDate!=''">
- #{postCheckDate},
- </if>
- <if test="postHouseTemp !=null">
- #{postHouseTemp},
- </if>
- <if test="postHouseWater !=null">
- #{postHouseWater},
- </if>
- <if test="postWaterIn !=null">
- #{postWaterIn},
- </if>
- <if test="postWaterInPosition !=null">
- #{postWaterInPosition},
- </if>
- <if test="postWaterInSolution !=null">
- #{postWaterInSolution},
- </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.daily.DailyRecordWindrainsnow">
- UPDATE windrainsnow_check <set>
- <if test="id != null">
- id=#{id},
- </if>
- <if test="uuid != null">
- uuid=#{uuid},
- </if>
- <if test="houseId != null">
- house_id=#{houseId},
- </if>
- <if test="checkDate !=null">
- check_date=#{checkDate},
- </if>
- <if test="checkSign !=null">
- check_sign=#{checkSign},
- </if>
- <if test="custodianSign !=null">
- custodian_sign=#{custodianSign},
- </if>
- <if test="remark !=null">
- remark=#{remark},
- </if>
- <if test="preWindowClose !=null">
- pre_window_close=#{preWindowClose},
- </if>
- <if test="preWaterClean !=null">
- pre_water_clean=#{preWaterClean},
- </if>
- <if test="doingWeather !=null">
- doing_weather=#{doingWeather},
- </if>
- <if test="doingWindowClose !=null">
- doing_window_close=#{doingWindowClose},
- </if>
- <if test="doingWaterClean !=null">
- doing_water_clean=#{doingWaterClean},
- </if>
- <if test="doingWaterIn !=null">
- doing_water_in=#{doingWaterIn},
- </if>
- <if test="doingWaterInPosition !=null">
- doing_water_in_position=#{doingWaterInPosition},
- </if>
- <if test="doingWaterInSolution !=null">
- doing_water_in_solution=#{doingWaterInSolution},
- </if>
- <if test="postCheckDate !=null">
- post_check_date=#{postCheckDate},
- </if>
- <if test="postHouseTemp !=null">
- post_house_temp=#{postHouseTemp},
- </if>
- <if test="postHouseWater !=null">
- post_house_water=#{postHouseWater},
- </if>
- <if test="postWaterIn !=null">
- post_water_in=#{postWaterIn},
- </if>
- <if test="postWaterInPosition !=null">
- post_water_in_position=#{postWaterInPosition},
- </if>
- <if test="postWaterInSolution !=null">
- post_water_in_solution=#{postWaterInSolution},
- </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="cn.ourwill.module.house.entity.daily.DailyRecordWindrainsnow">
- DELETE FROM windrainsnow_check WHERE id=#{id}
- </delete>
- <select id="findByHouseIdNoPage" resultMap="baseMap">
- SELECT *
- FROM windrainsnow_check
- where house_id=#{houseId}
- <if test="cTime != null">
- AND post_check_date <![CDATA[ <= ]]> #{cTime}
- </if>
- </select>
- <select id="findHouseId" resultMap="baseMap">
- SELECT *
- FROM windrainsnow_check
- <where>
- <if test="houseId !=null">
- and house_id = #{houseId}
- </if>
- <if test="cTime !=null">
- and c_time like CONCAT('%',#{cTime},'%')
- </if>
- </where>
- order by check_date asc limit #{num},#{size}
- </select>
- <delete id="deleteWindrainsnowByHouseId">
- DELETE FROM windrainsnow_check
- WHERE house_id = #{houseId}
- <if test="cTime != null">
- AND post_check_date <![CDATA[ <= ]]> #{cTime}
- </if>
- </delete>
- </mapper>
|