123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713 |
- <?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.DailyRecordTransferDao">
- <resultMap type="cn.ourwill.module.house.entity.daily.DailyRecordTransfer" id="baseMap">
- <result column="id" property="id"/>
- <result column="house_name" property="houseName"/>
- <result column="house_id" property="houseId"/>
- <result column="house_property" property="houseProperty"/>
- <result column="grain_name" property="grainName"/>
- <result column="trans_time" property="transTime"/>
- <result column="trans_user" property="transUser"/>
- <result column="receive_user" property="receiveUser"/>
- <result column="superior_user" property="superiorUser"/>
- <result column="type" property="type"/>
- <result column="count" property="count"/>
- <result column="quality" property="quality"/>
- <result column="condition" property="condition"/>
- <result column="responsible_user" property="responsibleUser"/>
- <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="version" property="version"/>
- <result column="pic" property="pic"/>
- <result column="location" property="location"/>
- <result column="run_time" property="runTime"/>
- <result column="receive_remark" property="receiveRemark"/>
- <result column="keeper" property="keeper"/>
- <result column="receive_num" property="receiveNum"/>
- </resultMap>
- <sql id="dailyRecordTransferColumns">
- id ,
- house_name ,
- house_id,
- house_property,
- grain_name ,
- trans_time ,
- trans_user ,
- receive_user ,
- superior_user ,
- `type`,
- `count`,
- quality ,
- `condition` ,
- responsible_user ,
- remark ,
- c_id ,
- c_time ,
- u_id ,
- u_time ,
- version ,
- pic,
- location,
- run_time,
- receive_remark,
- keeper,
- receive_num
- </sql>
- <sql id="dailyRecordTransferJoins">
- </sql>
- <select id="get" resultMap="baseMap" parameterType="java.lang.Long">
- SELECT
- <include refid="dailyRecordTransferColumns"/>
- FROM daily_record_transfer
- <!--<include refid="dailyRecordTransferJoins"/>-->
- WHERE id = #{id}
- </select>
- <select id="getByUuid" resultMap="baseMap">
- SELECT
- <include refid="dailyRecordTransferColumns"/>
- FROM daily_record_transfer a
- WHERE a.uuid = #{uuid}
- </select>
- <select id="findNoUuidList" resultMap="baseMap">
- SELECT
- <include refid="dailyRecordTransferColumns"/>
- FROM daily_record_transfer a
- WHERE a.uuid is null or trim(a.uuid) = '';
- </select>
- <select id="findList" resultMap="baseMap">
- SELECT
- <include refid="dailyRecordTransferColumns"/>
- FROM daily_record_transfer a
- <include refid="dailyRecordTransferJoins"/>
- <where>
- <if test="id !=null">
- and id = #{id}
- </if>
- <if test="houseName !=null">
- and house_name = #{houseName}
- </if>
- <if test="houseId !=null">
- and house_id = #{houseId}
- </if>
- <if test="houseName !=null">
- and house_property = #{houseProperty}
- </if>
- <if test="grainName !=null">
- and grain_name = #{grainName}
- </if>
- <if test="transTime !=null">
- and trans_time = #{transTime}
- </if>
- <if test="transUser !=null">
- and trans_user = #{transUser}
- </if>
- <if test="receiveUser !=null">
- and receive_user = #{receiveUser}
- </if>
- <if test="superiorUser !=null">
- and superior_user = #{superiorUser}
- </if>
- <if test="type !=null">
- and type = #{type}
- </if>
- <if test="count !=null">
- and count = #{count}
- </if>
- <if test="quality !=null">
- and quality = #{quality}
- </if>
- <if test="condition !=null">
- and condition = #{condition}
- </if>
- <if test="responsibleUser !=null">
- and responsible_user = #{responsibleUser}
- </if>
- <if test="remark !=null">
- and remark = #{remark}
- </if>
- <!--<if test="searchStartDate!=null and searchEndDate !=null ">-->
- <!--and trans_time BETWEEN #{searchStartDate} AND #{searchEndDate}-->
- <!--</if>-->
- <if test="searchStartDate !=null ">
- and trans_time >= #{searchStartDate}
- </if>
- <if test=" searchEndDate !=null ">
- and trans_time <= #{searchEndDate}
- </if>
- </where>
- order by id desc
- </select>
- <select id="findAllList" resultMap="baseMap">
- SELECT
- <include refid="dailyRecordTransferColumns"/>
- FROM daily_record_transfer a
- <include refid="dailyRecordTransferJoins"/>
- <where>
- <if test="id !=null">
- and id = #{id}
- </if>
- <if test="houseName !=null">
- and house_name = #{houseName}
- </if>
- <if test="houseId !=null">
- and house_id = #{houseId}
- </if>
- <if test="houseProperty !=null">
- and house_property = #{houseProperty}
- </if>
- <if test="grainName !=null">
- and grain_name = #{grainName}
- </if>
- <if test="transTime !=null">
- and trans_time = #{transTime}
- </if>
- <if test="transUser !=null">
- and trans_user = #{transUser}
- </if>
- <if test="receiveUser !=null">
- and receive_user = #{receiveUser}
- </if>
- <if test="superiorUser !=null">
- and superior_user = #{superiorUser}
- </if>
- <if test="type !=null">
- and type = #{type}
- </if>
- <if test="count !=null">
- and count = #{count}
- </if>
- <if test="quality !=null">
- and quality = #{quality}
- </if>
- <if test="condition !=null">
- and condition = #{condition}
- </if>
- <if test="responsibleUser !=null">
- and responsible_user = #{responsibleUser}
- </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="version !=null">-->
- <!--and version = #{version}-->
- <!--</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="exportExcel" resultMap="baseMap">
- select
- <include refid="dailyRecordTransferColumns"/>
- from daily_record_transfer order by c_time
- </select>
- <insert id="insert" keyColumn="id" keyProperty="id" useGeneratedKeys="true">
- INSERT INTO daily_record_transfer
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test=" id != null">
- id,
- </if>
- <if test=" uuid != null">
- uuid,
- </if>
- <if test=" houseName != null">
- house_name,
- </if>
- <if test=" houseId != null">
- house_id,
- </if>
- <if test=" houseProperty != null">
- house_property,
- </if>
- <if test=" grainName != null">
- grain_name,
- </if>
- <if test=" transTime != null">
- trans_time,
- </if>
- <if test=" transUser != null">
- trans_user,
- </if>
- <if test=" receiveUser != null">
- receive_user,
- </if>
- <if test=" superiorUser != null">
- superior_user,
- </if>
- <if test=" type != null">
- `type`,
- </if>
- <if test=" count != null">
- `count`,
- </if>
- <if test=" quality != null">
- quality,
- </if>
- <if test=" condition != null">
- `condition`,
- </if>
- <if test=" responsibleUser != null">
- responsible_user,
- </if>
- <if test=" remark != null">
- remark,
- </if>
- <if test=" cId != null">
- c_id,
- </if>
- c_time,
- <if test=" uId != null">
- u_id,
- </if>
- <if test=" uTime != null">
- u_time,
- </if>
- <if test=" version != null">
- version,
- </if>
- <if test=" pic != null">
- pic,
- </if>
- <if test=" location != null">
- location,
- </if>
- <if test=" runTime != null">
- run_time,
- </if>
- <if test=" receiveRemark != null">
- receive_remark,
- </if>
- <if test=" keeper != null">
- keeper,
- </if>
- <if test=" receiveNum != null">
- receive_num
- </if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test=" id != null">
- #{id},
- </if>
- <if test=" uuid != null">
- #{uuid},
- </if>
- <if test=" houseName != null">
- #{houseName},
- </if>
- <if test=" houseId != null">
- #{houseId},
- </if>
- <if test=" houseProperty != null">
- #{houseProperty},
- </if>
- <if test=" grainName != null">
- #{grainName},
- </if>
- <if test=" transTime != null">
- #{transTime},
- </if>
- <if test=" transUser != null">
- #{transUser},
- </if>
- <if test=" receiveUser != null">
- #{receiveUser},
- </if>
- <if test=" superiorUser != null">
- #{superiorUser},
- </if>
- <if test=" type != null">
- #{type},
- </if>
- <if test=" count != null">
- #{count},
- </if>
- <if test=" quality != null">
- #{quality},
- </if>
- <if test=" condition != null">
- #{condition},
- </if>
- <if test=" responsibleUser != null">
- #{responsibleUser},
- </if>
- <if test=" remark != null">
- #{remark},
- </if>
- <if test=" cId != null">
- #{cId},
- </if>
- now(),
- <if test=" uId != null">
- #{uId},
- </if>
- <if test=" uTime != null">
- #{uTime},
- </if>
- <if test=" version != null">
- #{version},
- </if>
- <if test=" pic != null">
- #{pic},
- </if>
- <if test=" location != null">
- #{location},
- </if>
- <if test=" runTime != null">
- #{runTime},
- </if>
- <if test=" receiveRemark != null">
- #{receiveRemark},
- </if>
- <if test=" keeper != null">
- #{keeper},
- </if>
- <if test=" receiveNum != null">
- #{receiveNum}
- </if>
- </trim>
- </insert>
- <update id="update" >
- UPDATE daily_record_transfer
- <set>
- <if test="uuid !=null">
- uuid = #{uuid},
- </if>
- <if test="houseName !=null">
- house_name = #{houseName},
- </if>
- <if test="houseId !=null">
- house_id = #{houseId},
- </if>
- <if test="houseProperty !=null">
- house_property = #{houseProperty},
- </if>
- <if test="grainName !=null">
- grain_name = #{grainName},
- </if>
- <if test="transTime !=null">
- trans_time = #{transTime},
- </if>
- <if test="transUser !=null">
- trans_user = #{transUser},
- </if>
- <if test="receiveUser !=null">
- receive_user = #{receiveUser},
- </if>
- <if test="superiorUser !=null">
- superior_user = #{superiorUser},
- </if>
- <if test="type !=null">
- type = #{type},
- </if>
- <if test="count !=null">
- count = #{count},
- </if>
- <if test="quality !=null">
- quality = #{quality},
- </if>
- <if test="condition !=null">
- `condition` = #{condition},
- </if>
- <if test="responsibleUser !=null">
- responsible_user = #{responsibleUser},
- </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="version !=null">
- version = #{version},
- </if>
- <if test=" pic != null">
- pic = #{pic},
- </if>
- <if test=" location != null">
- location = #{location},
- </if>
- <if test=" runTime != null">
- run_time = #{runTime},
- </if>
- <if test=" receiveRemark != null">
- receive_remark = #{receiveRemark},
- </if>
- <if test=" keeper != null">
- keeper = #{keeper},
- </if>
- <if test=" receiveNum != null">
- receive_num = #{receiveNum}
- </if>
- </set>
- WHERE id = #{id}
- </update>
- <update id="updateByHouseId" >
- UPDATE daily_record_transfer
- <set>
- <!--<if test="uuid !=null">
- uuid = #{uuid},
- </if>
- <if test="houseName !=null">
- house_name = #{houseName},
- </if>
- <if test="houseId !=null">
- house_id = #{houseId},
- </if>
- <if test="houseProperty !=null">
- house_property = #{houseProperty},
- </if>
- <if test="grainName !=null">
- grain_name = #{grainName},
- </if>
- <if test="transTime !=null">
- trans_time = #{transTime},
- </if>
- <if test="transUser !=null">
- trans_user = #{transUser},
- </if>
- <if test="receiveUser !=null">
- receive_user = #{receiveUser},
- </if>
- <if test="superiorUser !=null">
- superior_user = #{superiorUser},
- </if>
- <if test="type !=null">
- type = #{type},
- </if>
- <if test="count !=null">
- count = #{count},
- </if>
- <if test="quality !=null">
- quality = #{quality},
- </if>
- <if test="condition !=null">
- `condition` = #{condition},
- </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="version !=null">
- version = #{version},
- </if>
- <if test=" pic != null">
- pic = #{pic},
- </if>
- <if test=" receiveRemark != null">
- receive_remark = #{receiveRemark},
- </if>
- <if test=" receiveNum != null">
- receive_num = #{receiveNum}
- </if>-->
- <if test=" location != null">
- location = #{location},
- </if>
- <if test=" runTime != null">
- run_time = #{runTime},
- </if>
- <if test=" keeper != null">
- keeper = #{keeper},
- </if>
- <if test="responsibleUser !=null">
- responsible_user = #{responsibleUser}
- </if>
- </set>
- WHERE house_id = #{houseId} and id = #{id}
- </update>
- <update id="updateByUuid" >
- UPDATE daily_record_transfer
- <set>
- <if test="houseName !=null">
- house_name = #{houseName},
- </if>
- <if test="houseId !=null">
- house_id = #{houseId},
- </if>
- <if test="houseProperty !=null">
- house_property = #{houseProperty},
- </if>
- <if test="grainName !=null">
- grain_name = #{grainName},
- </if>
- <if test="transTime !=null">
- trans_time = #{transTime},
- </if>
- <if test="transUser !=null">
- trans_user = #{transUser},
- </if>
- <if test="receiveUser !=null">
- receive_user = #{receiveUser},
- </if>
- <if test="superiorUser !=null">
- superior_user = #{superiorUser},
- </if>
- <if test="type !=null">
- type = #{type},
- </if>
- <if test="count !=null">
- count = #{count},
- </if>
- <if test="quality !=null">
- quality = #{quality},
- </if>
- <if test="condition !=null">
- `condition` = #{condition},
- </if>
- <if test="responsibleUser !=null">
- responsible_user = #{responsibleUser},
- </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="version !=null">
- version = #{version},
- </if>
- <if test=" pic != null">
- pic = #{pic},
- </if>
- <if test=" location != null">
- location = #{location},
- </if>
- <if test=" runTime != null">
- run_time = #{runTime},
- </if>
- <if test=" receiveRemark != null">
- receive_remark = #{receiveRemark},
- </if>
- <if test=" keeper != null">
- keeper = #{keeper},
- </if>
- <if test=" receiveNum != null">
- receive_num = #{receiveNum}
- </if>
- </set>
- WHERE uuid = #{uuid}
- </update>
- <delete id="deleteById" parameterType="java.lang.Long">
- DELETE FROM daily_record_transfer
- WHERE id = #{id}
- </delete>
- <delete id="deleteByIds" parameterType="java.util.List">
- DELETE FROM daily_record_transfer WHERE id IN
- <foreach collection="list" index="index" item="item" open="(" separator="," close=")">
- #{item}
- </foreach>
- </delete>
- <!--todo move-->
- <select id="prepareAdd" parameterType="long" resultType="cn.ourwill.module.house.entity.house.Add">
- SELECT DISTINCT
- gb.`name` AS grainName,
- house_info.house_name AS houseName,
- dd.`name` AS type
- FROM
- house_grain gb
- LEFT JOIN house_info ON gb.id = house_info.grain_id
- LEFT JOIN sys_dic_data dd ON house_info.type = dd.id
- WHERE house_info.id = #{value}
- </select>
- <select id="findByHouseIdNoPage" resultMap="baseMap">
- SELECT *
- FROM daily_record_transfer
- where house_id=#{houseId}
- <if test="cTime != null">
- AND trans_time <![CDATA[ <= ]]> #{cTime}
- </if>
- </select>
- <select id="findPdfList" resultMap="baseMap">
- SELECT *
- FROM daily_record_transfer
- <where>
- <if test="houseId !=null">
- and house_id = #{houseId}
- </if>
- <if test="cTime != null">
- and c_time like CONCAT('%',#{cTime},'%')
- </if>
- </where>
- order by id desc limit #{num},#{size}
- </select>
- <delete id="deleteTransferByHouseId">
- DELETE FROM daily_record_transfer
- WHERE house_id = #{houseId}
- <if test="cTime != null">
- AND trans_time <![CDATA[ <= ]]> #{cTime}
- </if>
- </delete>
-
- </mapper>
|