123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302 |
- <?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.DailyRecordFoodbasicinfolocatesDao">
- <resultMap type="cn.ourwill.module.house.entity.daily.DailyRecordFoodbasicinfolocates" id="baseMap">
- <result column="id" property="id"/>
- <result column="changeTime" property="changeTime"/>
- <result column="oldNumber" property="oldNumber"/>
- <result column="newNumber" property="newNumber"/>
- <result column="cId" property="cId"/>
- <result column="uId" property="uId"/>
- <result column="cTime" property="cTime"/>
- <result column="houseId" property="houseId"/>
- <result column="foodbasicinfoId" property="foodbasicinfoId"/>
- <result column="grain_number" property="grainNumber"/>
- <result column="change_record" property="changeRecord"/>
- <result column="number_of_losses" property="numberOfLosses"/>
- </resultMap>
- <sql id="columns">
- id ,
- changeTime ,
- oldNumber ,
- newNumber ,
- cId ,
- uId ,
- cTime ,
- houseId ,
- foodbasicinfoId,
- grain_number,
- change_record,
- number_of_losses
- </sql>
- <sql id="joinCols">
- </sql>
- <select id="get" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM daily_record_foodbasicinfolocates a
- <include refid="joinCols"/>
- WHERE a.id = #{id}
- </select>
- <select id="findList" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM daily_record_foodbasicinfolocates a
- <include refid="joinCols"/>
- <where>
- <if test="id !=null">
- and id = #{id}
- </if>
- <if test="changeTime !=null">
- and changeTime = #{changeTime}
- </if>
- <if test="oldNumber !=null">
- and oldNumber = #{oldNumber}
- </if>
- <if test="newNumber !=null">
- and newNumber = #{newNumber}
- </if>
- <if test="cId !=null">
- and cId = #{cId}
- </if>
- <if test="uId !=null">
- and uId = #{uId}
- </if>
- <if test="cTime !=null">
- and cTime = #{cTime}
- </if>
- <if test="houseId !=null">
- and houseId = #{houseId}
- </if>
- <if test="foodbasicinfoId !=null">
- and foodbasicinfoId = #{foodbasicinfoId}
- </if>
- <if test="grainNumber !=null">
- and grain_number = #{grainNumber}
- </if>
- <if test="changeRecord !=null">
- and change_record = #{changeRecord}
- </if>
- <if test="numberOfLosses !=null">
- and number_of_losses = #{numberOfLosses}
- </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="findAllList" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM daily_record_foodbasicinfolocates a
- <include refid="joinCols"/>
- <where>
- <if test="id !=null">
- and id = #{id}
- </if>
- <if test="changeTime !=null">
- and changeTime = #{changeTime}
- </if>
- <if test="oldNumber !=null">
- and oldNumber = #{oldNumber}
- </if>
- <if test="newNumber !=null">
- and newNumber = #{newNumber}
- </if>
- <if test="cId !=null">
- and cId = #{cId}
- </if>
- <if test="uId !=null">
- and uId = #{uId}
- </if>
- <if test="cTime !=null">
- and cTime = #{cTime}
- </if>
- <if test="houseId !=null">
- and houseId = #{houseId}
- </if>
- <if test="foodbasicinfoId !=null">
- and foodbasicinfoId = #{foodbasicinfoId}
- </if>
- <if test="grainNumber !=null">
- and grain_number = #{grainNumber}
- </if>
- <if test="changeRecord !=null">
- and change_record = #{changeRecord}
- </if>
- <if test="numberOfLosses !=null">
- and number_of_losses = #{numberOfLosses}
- </if>
- </where>
- <choose>
- <when test="page !=null and page.orderBy != null and page.orderBy != ''">
- ORDER BY ${page.orderBy}
- </when>
- <otherwise>
- </otherwise>
- </choose>
- </select>
- <insert id="insert" keyColumn="id" keyProperty="id" useGeneratedKeys="true"
- parameterType="cn.ourwill.module.house.entity.daily.DailyRecordFoodbasicinfolocates">
- INSERT INTO daily_record_foodbasicinfolocates
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test=" id != null">
- id,
- </if>
- <if test=" changeTime != null">
- changeTime,
- </if>
- <if test=" oldNumber != null">
- oldNumber,
- </if>
- <if test=" newNumber != null">
- newNumber,
- </if>
- <if test=" cId != null">
- cId,
- </if>
- <if test=" uId != null">
- uId,
- </if>
- <if test=" cTime != null">
- cTime,
- </if>
- <if test=" houseId != null">
- houseId,
- </if>
- <if test=" foodbasicinfoId != null">
- foodbasicinfoId,
- </if>
- <if test="grainNumber !=null">
- grain_number,
- </if>
- <if test="changeRecord !=null">
- change_record,
- </if>
- <if test="numberOfLosses !=null">
- number_of_losses
- </if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test=" id != null">
- #{id}, </if>
- <if test=" changeTime != null">
- #{changeTime}, </if>
- <if test=" oldNumber != null">
- #{oldNumber}, </if>
- <if test=" newNumber != null">
- #{newNumber}, </if>
- <if test=" cId != null">
- #{cId}, </if>
- <if test=" uId != null">
- #{uId}, </if>
- <if test=" cTime != null">
- #{cTime}, </if>
- <if test=" houseId != null">
- #{houseId}, </if>
- <if test=" foodbasicinfoId != null">
- #{foodbasicinfoId}, </if>
- <if test="grainNumber !=null">
- #{grainNumber},
- </if>
- <if test="changeRecord !=null">
- #{changeRecord},
- </if>
- <if test="numberOfLosses !=null">
- #{numberOfLosses}
- </if>
- </trim>
- </insert>
- <update id="update" parameterType="cn.ourwill.module.house.entity.daily.DailyRecordFoodbasicinfolocates">
- UPDATE daily_record_foodbasicinfolocates <set>
- <if test="id != null">
- id= #{id} ,
- </if>
- <if test="changeTime != null">
- changeTime= #{changeTime} ,
- </if>
- <if test="oldNumber != null">
- oldNumber= #{oldNumber} ,
- </if>
- <if test="newNumber != null">
- newNumber= #{newNumber} ,
- </if>
- <if test="cId != null">
- cId= #{cId} ,
- </if>
- <if test="uId != null">
- uId= #{uId} ,
- </if>
- <if test="cTime != null">
- cTime= #{cTime} ,
- </if>
- <if test="houseId != null">
- houseId= #{houseId} ,
- </if>
- <if test="foodbasicinfoId != null">
- foodbasicinfoId= #{foodbasicinfoId},
- </if>
- <if test="grainNumber !=null">
- grain_number = #{grainNumber},
- </if>
- <if test="changeRecord !=null">
- change_record = #{changeRecord},
- </if>
- <if test="numberOfLosses !=null">
- number_of_losses = #{numberOfLosses}
- </if>
- </set>
- WHERE id = #{id}
- </update>
- <delete id="deleteById" parameterType="java.lang.Long">
- DELETE FROM daily_record_foodbasicinfolocates WHERE id = #{id}
- </delete>
- <delete id="deleteByIds" parameterType="java.util.List">
- DELETE FROM daily_record_foodbasicinfolocates 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_foodbasicinfolocates a
- where houseId=#{houseId}
- <if test="cTime != null">
- AND changeTime <![CDATA[ <= ]]> #{cTime}
- </if>
- </select>
- <delete id="deleteFoodbaseicInfolocatesByHouseId">
- DELETE FROM daily_record_foodbasicinfolocates
- WHERE houseId = #{houseId}
- <if test="cTime != null">
- AND changeTime <![CDATA[ <= ]]> #{cTime}
- </if>
- </delete>
- <select id="getLastlocateYearByHouseId" resultMap="baseMap">
- SELECT *
- FROM daily_record_foodbasicinfolocates a
- where houseId=#{houseId}
- ORDER by a.changeTime DESC
- limit 1
- </select>
- </mapper>
|