123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506 |
- <?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.DailyRecordLsjiagongDao">
- <resultMap type="cn.ourwill.module.house.entity.daily.DailyRecordLsjiagong" id="baseMap">
- <result column="id" property="id"/>
- <result column="uuid" property="uuid"/>
- <result column="jcTime" property="jcTime"/>
- <result column="smj" property="smj"/>
- <result column="cdb" property="cdb"/>
- <result column="hlm" property="hlm"/>
- <result column="mtTime" property="mtTime"/>
- <result column="sml" property="sml"/>
- <result column="zjml" property="zjml"/>
- <result column="hyl" property="hyl"/>
- <result column="otms" property="otms"/>
- <result column="mbl" property="mbl"/>
- <result column="rxsl" property="rxsl"/>
- <result column="bz" property="bz"/>
- <result column="classes" property="classes"/>
- <result column="htype" property="htype"/>
- <result column="house_id" property="houseId"/>
- </resultMap>
- <sql id="columns">
- id ,
- uuid ,
- jcTime,
- smj,
- cdb,
- hlm,
- mtTime,
- sml,
- zjml,
- hyl,
- otms,
- mbl,
- rxsl,
- bz ,
- `classes` ,
- htype ,
- house_id
- </sql>
- <sql id="joinCols">
- </sql>
- <select id="get" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM daily_record_lsjiagong a
- <include refid="joinCols"/>
- WHERE a.id = #{id}
- </select>
- <select id="getByUuid" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM daily_record_lsjiagong a
- <include refid="joinCols"/>
- WHERE a.uuid = #{uuid}
- </select>
- <select id="findList" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM daily_record_lsjiagong a
- <include refid="joinCols"/>
- <where>
- <if test="id !=null">
- and id = #{id}
- </if>
- <!--<if test="type !=null">
- and type = #{type}
- <!–dash;><if test="type ==1 ">
- and ( houseId is not null and houseId != '' )
- </if>
- <if test="type ==2 ">
- and `type`=#{type}
- </if>
- <–>
- </if>-->
- <if test="searchStartDate !=null">
- and jcTime <![CDATA[ >= ]]> #{searchStartDate}
- </if>
- <if test="searchEndDate !=null">
- and jcTime <= #{searchEndDate}
- </if>
- <if test="uuid !=null">
- and uuid = #{uuid}
- </if>
- <if test="houseId !=null">
- and house_id = #{houseId}
- </if>
- <if test="classes !=null">
- and `classes` = #{classes}
- </if>
- <if test="htype !=null">
- and htype = #{htype}
- </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 daily_record_supercheck a
- <include refid="joinCols"/>
- <where>
- <if test="id !=null">
- and id = #{id}
- </if>
- <if test="type !=null">
- <if test="type ==1 ">
- and ( houseId is not null and houseId != '' )
- </if>
- </if>
- <if test="searchStartDate !=null">
- and check_time <![CDATA[ >= ]]> #{searchStartDate}
- </if>
- <if test="searchEndDate !=null">
- and check_time <= #{searchEndDate}
- </if>
- <if test="uuid !=null">
- and uuid = #{uuid}
- </if>
- <if test="checker !=null">
- and checker = #{checker}
- </if>
- <if test="checkTime !=null">
- and check_time = #{checkTime}
- </if>
- <if test="checkDesc !=null">
- and check_desc = #{checkDesc}
- </if>
- <if test="problems !=null">
- and problems = #{problems}
- </if>
- <if test="advices !=null">
- and advices = #{advices}
- </if>
- <if test="remarks !=null">
- and remarks = #{remarks}
- </if>
- <if test="capacity !=null">
- and capacity = #{capacity}
- </if>
- <if test="wheat !=null">
- and wheat = #{wheat}
- </if>
- <if test="rice !=null">
- and rice = #{rice}
- </if>
- <if test="corn !=null">
- and corn = #{corn}
- </if>
- <if test="bean !=null">
- and bean = #{bean}
- </if>
- <if test="houseId !=null">
- and houseId = #{houseId}
- </if>
- <if test="version !=null">
- and version = #{version}
- </if>
- <if test="audit !=null">
- and audit = #{audit}
- </if>
- <if test="otherType !=null">
- and other_type = #{otherType}
- </if>
- <if test="otherHouse !=null">
- and other_house = #{otherHouse}
- </if>
- <if test="problemRadio !=null">
- and problem_radio = #{problemRadio}
- </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>
- <insert id="insert" keyColumn="id" keyProperty="id" useGeneratedKeys="true"
- parameterType="cn.ourwill.module.house.entity.daily.DailyRecordLsjiagong">
- INSERT INTO daily_record_lsjiagong
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test=" id != null">
- id,
- </if>
- <if test=" uuid != null">
- uuid,
- </if>
- <if test=" jcTime != null">
- jcTime,
- </if>
- <if test=" smj != null">
- smj,
- </if>
- <if test=" cdb != null">
- cdb,
- </if>
- <if test=" hlm != null">
- hlm,
- </if>
- <if test=" mtTime != null and mtTime!='' ">
- mtTime,
- </if>
- <if test=" sml != null">
- sml,
- </if>
- <if test=" zjml != null">
- zjml,
- </if>
- <if test=" hyl != null">
- hyl,
- </if>
- <if test=" otms != null">
- otms,
- </if>
- <if test=" mbl != null">
- mbl,
- </if>
- <if test=" rxsl != null">
- rxsl,
- </if>
- <if test=" bz != null">
- bz,
- </if>
- <if test=" classes != null">
- classes,
- </if>
- <if test=" htype != null">
- htype,
- </if>
- <if test=" houseId != null">
- house_id
- </if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test=" id != null">
- #{id}, </if>
- <if test=" uuid != null">
- #{uuid}, </if>
- <if test=" jcTime != null">
- #{jcTime},
- </if>
- <if test=" smj != null">
- #{smj},
- </if>
- <if test=" cdb != null">
- #{cdb},
- </if>
- <if test=" hlm != null">
- #{hlm},
- </if>
- <if test=" mtTime != null and mtTime!='' ">
- #{mtTime},
- </if>
- <if test=" sml != null">
- #{sml},
- </if>
- <if test=" zjml != null">
- #{zjml},
- </if>
- <if test=" hyl != null">
- #{hyl},
- </if>
- <if test=" otms != null">
- #{otms},
- </if>
- <if test=" mbl != null">
- #{mbl},
- </if>
- <if test=" rxsl != null">
- #{rxsl},
- </if>
- <if test=" bz != null">
- #{bz},
- </if>
- <if test=" classes != null">
- #{classes}, </if>
- <if test=" htype != null">
- #{htype}, </if>
- <if test=" houseId != null">
- #{houseId} </if>
- </trim>
- </insert>
- <update id="update" parameterType="cn.ourwill.module.house.entity.daily.DailyRecordLsjiagong">
- UPDATE daily_record_lsjiagong <set>
- <if test="id != null">
- id= #{id} ,
- </if>
- <if test="uuid != null">
- uuid= #{uuid} ,
- </if>
- <if test=" jcTime != null">
- jcTime=#{jcTime},
- </if>
- <if test=" smj != null">
- smj=#{smj},
- </if>
- <if test=" cdb != null">
- cdb=#{cdb},
- </if>
- <if test=" hlm != null">
- hlm =#{hlm},
- </if>
- <if test=" mtTime != null and mtTime !='' " >
- mtTime=#{mtTime},
- </if>
- <if test=" sml != null">
- sml=#{sml},
- </if>
- <if test=" zjml != null">
- zjml=#{zjml},
- </if>
- <if test=" hyl != null">
- hyl=#{hyl},
- </if>
- <if test=" otms != null">
- otms=#{otms},
- </if>
- <if test=" mbl != null">
- mbl=#{mbl},
- </if>
- <if test=" rxsl != null">
- rxsl=#{rxsl},
- </if>
- <if test=" bz != null">
- bz=#{bz},
- </if>
- <if test="classes != null">
- classes = #{classes},
- </if>
- <if test="htype != null">
- htype= #{htype} ,
- </if>
- <if test="houseId != null">
- house_id= #{houseId}
- </if>
- </set>
- WHERE id = #{id}
- </update>
- <update id="updateByUuid" parameterType="cn.ourwill.module.house.entity.daily.DailyRecordSupercheck">
- UPDATE daily_record_supercheck <set>
- <if test="uuid != null">
- uuid= #{uuid} ,
- </if>
- <if test="classes != null">
- classes = #{classes},
- </if>
- <if test="checker != null">
- checker= #{checker} ,
- </if>
- <if test="checkTime != null">
- check_time= #{checkTime} ,
- </if>
- <if test="checkDesc != null">
- check_desc= #{checkDesc} ,
- </if>
- <if test="problems != null">
- problems= #{problems} ,
- </if>
- <if test="advices != null">
- advices= #{advices} ,
- </if>
- <if test="remarks != null">
- remarks= #{remarks} ,
- </if>
- <if test="capacity != null">
- capacity= #{capacity} ,
- </if>
- <if test="wheat != null">
- wheat= #{wheat} ,
- </if>
- <if test="rice != null">
- rice= #{rice} ,
- </if>
- <if test="corn != null">
- corn= #{corn} ,
- </if>
- <if test="bean != null">
- bean= #{bean} ,
- </if>
- <if test="improverPlan != null">
- improver_plan= #{improverPlan} ,
- </if>
- <if test="improverStartPlan != null">
- improver_start_plan= #{improverStartPlan} ,
- </if>
- <if test="improverEndPlan != null">
- improver_end_plan= #{improverEndPlan} ,
- </if>
- <if test="improver != null">
- improver= #{improver} ,
- </if>
- <if test="improveStartTime != null">
- improve_start_time= #{improveStartTime} ,
- </if>
- <if test="improveEndTime != null">
- improve_end_time= #{improveEndTime} ,
- </if>
- <if test="improveWorks != null">
- improve_works= #{improveWorks} ,
- </if>
- <if test="improveResult != null">
- improve_result= #{improveResult} ,
- </if>
- <if test="houseId != null">
- houseId= #{houseId} ,
- </if>
- <if test="audit != null">
- audit= #{audit} ,
- </if>
- <if test="checkerPic != null">
- checker_pic= #{checkerPic} ,
- </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=" pic != null">
- pic= #{pic},
- </if>
- <if test=" pics != null">
- pics= #{pics},
- </if>
- <if test="otherType !=null">
- other_type = #{otherType},
- </if>
- <if test="otherHouse !=null">
- other_house = #{otherHouse}
- </if>
- <if test="problemRadio !=null">
- problem_radio = #{problemRadio}
- </if>
- </set>
- WHERE uuid = #{uuid}
- </update>
- <delete id="deleteById" parameterType="java.lang.Long">
- DELETE FROM daily_record_lsjiagong WHERE id = #{id}
- </delete>
- <delete id="deleteByIds" parameterType="java.util.List">
- DELETE FROM daily_record_supercheck WHERE id IN
- <foreach collection="list" index="index" item="item" open="(" separator="," close=")">
- #{item}
- </foreach>
- </delete>
- <select id="findByHouseIdNoPage" resultMap="baseMap">
- SELECT *
- FROM daily_record_lsjiagong a
- where house_id=#{houseId}
- <if test="cTime != null">
- AND jcTime <![CDATA[ <= ]]> #{cTime}
- </if>
- </select>
- <select id="findByHouseIds" resultMap="baseMap">
- SELECT *
- FROM daily_record_lsjiagong a
- where house_id=#{houseId}
- </select>
- <delete id="deleteLsjiagongByHouseId">
- DELETE FROM daily_record_lsjiagong
- WHERE house_id = #{houseId}
- <if test="cTime != null">
- AND jcTime <![CDATA[ <= ]]> #{cTime}
- </if>
- </delete>
- </mapper>
|