123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336 |
- <!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.dm.RecordMedicineCheckDao">
- <resultMap type="cn.ourwill.module.house.entity.dm.RecordMedicineCheck" id="baseMap">
- <result column="id" property="id"/>
- <result column="grain_id" property="grainId"/>
- <result column="check_type" property="checkType"/>
- <result column="check_time" property="checkTime"/>
- <result column="reason" property="reason"/>
- <result column="book_lhv" property="bookLhv"/>
- <result column="book_ddw" property="bookDdw"/>
- <result column="book_mlll" property="bookMlll"/>
- <result column="reality_lhv" property="realityLhv"/>
- <result column="reality_ddw" property="realityDdw"/>
- <result column="reality_mlll" property="realityMlll"/>
- <result column="checker" property="checker"/>
- <result column="problems" property="problems"/>
- <result column="match_lhv" property="matchLhv"/>
- <result column="match_ddw" property="matchDdw"/>
- <result column="match_mlll" property="matchMlll"/>
- </resultMap>
- <sql id="columns">
- id ,
- grain_id ,
- check_type ,
- check_time ,
- reason ,
- book_lhv ,
- book_ddw ,
- book_mlll ,
- reality_lhv ,
- reality_ddw ,
- reality_mlll ,
- checker ,
- problems ,
- match_Lhv ,
- match_Ddw ,
- match_Mlll
- </sql>
- <sql id="joinCols">
- </sql>
- <select id="get" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM record_medicine_check a
- <include refid="joinCols"/>
- WHERE a.id = #{id}
- </select>
- <select id="findList" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM record_medicine_check a
- <include refid="joinCols"/>
- <where>
- <if test="id !=null">
- and id = #{id}
- </if>
- <if test="grainId !=null">
- and grain_id = #{grainId}
- </if>
- <if test="checkType !=null">
- and check_type = #{checkType}
- </if>
- <if test="checkTime !=null">
- and check_time = #{checkTime}
- </if>
- <if test="reason !=null">
- and reason = #{reason}
- </if>
- <if test="bookLhv !=null">
- and book_lhv = #{bookLhv}
- </if>
- <if test="bookDdw !=null">
- and book_ddw = #{bookDdw}
- </if>
- <if test="bookMlll !=null">
- and book_mlll = #{bookMlll}
- </if>
- <if test="realityLhv !=null">
- and reality_lhv = #{realityLhv}
- </if>
- <if test="realityDdw !=null">
- and reality_ddw = #{realityDdw}
- </if>
- <if test="realityMlll !=null">
- and reality_mlll = #{realityMlll}
- </if>
- <if test="checker !=null">
- and checker = #{checker}
- </if>
- <if test="problems !=null">
- and problems = #{problems}
- </if>
- <if test="matchLhv !=null">
- and match_lhv = #{matchLhv}
- </if>
- <if test="matchDdw !=null">
- and match_ddw = #{matchDdw}
- </if>
- <if test="matchMlll !=null">
- and match_mlll = #{matchMlll}
- </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 record_medicine_check a
- <include refid="joinCols"/>
- <where>
- <if test="id !=null">
- and id = #{id}
- </if>
- <if test="grainId !=null">
- and grain_id = #{grainId}
- </if>
- <if test="checkType !=null">
- and check_type = #{checkType}
- </if>
- <if test="checkTime !=null">
- and check_time = #{checkTime}
- </if>
- <if test="reason !=null">
- and reason = #{reason}
- </if>
- <if test="bookLhv !=null">
- and book_lhv = #{bookLhv}
- </if>
- <if test="bookDdw !=null">
- and book_ddw = #{bookDdw}
- </if>
- <if test="bookMlll !=null">
- and book_mlll = #{bookMlll}
- </if>
- <if test="realityLhv !=null">
- and reality_lhv = #{realityLhv}
- </if>
- <if test="realityDdw !=null">
- and reality_ddw = #{realityDdw}
- </if>
- <if test="realityMlll !=null">
- and reality_mlll = #{realityMlll}
- </if>
- <if test="checker !=null">
- and checker = #{checker}
- </if>
- <if test="problems !=null">
- and problems = #{problems}
- </if>
- <if test="matchLhv !=null">
- and match_lhv = #{matchLhv}
- </if>
- <if test="matchDdw !=null">
- and match_ddw = #{matchDdw}
- </if>
- <if test="matchMlll !=null">
- and match_mlll = #{matchMlll}
- </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.dm.RecordMedicineCheck">
- INSERT INTO record_medicine_check
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test=" id != null">
- id,
- </if>
- <if test=" grainId != null">
- grain_id,
- </if>
- <if test=" checkType != null">
- check_type,
- </if>
- <if test=" checkTime != null">
- check_time,
- </if>
- <if test=" reason != null">
- reason,
- </if>
- <if test=" bookLhv != null">
- book_lhv,
- </if>
- <if test=" bookDdw != null">
- book_ddw,
- </if>
- <if test=" bookMlll != null">
- book_mlll,
- </if>
- <if test=" realityLhv != null">
- reality_lhv,
- </if>
- <if test=" realityDdw != null">
- reality_ddw,
- </if>
- <if test=" realityMlll != null">
- reality_mlll,
- </if>
- <if test=" checker != null">
- checker,
- </if>
- <if test=" problems != null">
- problems,
- </if>
- <if test="matchLhv !=null">
- match_lhv,
- </if>
- <if test="matchDdw !=null">
- match_ddw,
- </if>
- <if test="matchMlll !=null">
- match_mlll
- </if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test=" id != null">
- #{id}, </if>
- <if test=" grainId != null">
- #{grainId}, </if>
- <if test=" checkType != null">
- #{checkType}, </if>
- <if test=" checkTime != null">
- #{checkTime}, </if>
- <if test=" reason != null">
- #{reason}, </if>
- <if test=" bookLhv != null">
- #{bookLhv}, </if>
- <if test=" bookDdw != null">
- #{bookDdw}, </if>
- <if test=" bookMlll != null">
- #{bookMlll}, </if>
- <if test=" realityLhv != null">
- #{realityLhv}, </if>
- <if test=" realityDdw != null">
- #{realityDdw}, </if>
- <if test=" realityMlll != null">
- #{realityMlll}, </if>
- <if test=" checker != null">
- #{checker}, </if>
- <if test=" problems != null">
- #{problems}, </if>
- <if test="matchLhv !=null">
- #{matchLhv}, </if>
- <if test="matchDdw !=null">
- #{matchDdw}, </if>
- <if test="matchMlll !=null">
- #{matchMlll} </if>
- </trim>
- </insert>
- <update id="update" parameterType="cn.ourwill.module.house.entity.dm.RecordMedicineCheck">
- UPDATE record_medicine_check <set>
- <if test="id != null">
- id= #{id} ,
- </if>
- <if test="grainId != null">
- grain_id= #{grainId} ,
- </if>
- <if test="checkType != null">
- check_type= #{checkType} ,
- </if>
- <if test="checkTime != null">
- check_time= #{checkTime} ,
- </if>
- <if test="reason != null">
- reason= #{reason} ,
- </if>
- <if test="bookLhv != null">
- book_lhv= #{bookLhv} ,
- </if>
- <if test="bookDdw != null">
- book_ddw= #{bookDdw} ,
- </if>
- <if test="bookMlll != null">
- book_mlll= #{bookMlll} ,
- </if>
- <if test="realityLhv != null">
- reality_lhv= #{realityLhv} ,
- </if>
- <if test="realityDdw != null">
- reality_ddw= #{realityDdw} ,
- </if>
- <if test="realityMlll != null">
- reality_mlll= #{realityMlll} ,
- </if>
- <if test="checker != null">
- checker= #{checker} ,
- </if>
- <if test="problems != null">
- problems= #{problems} ,
- </if>
- <if test="matchLhv !=null">
- match_lhv = #{matchLhv} ,
- </if>
- <if test="matchDdw !=null">
- match_ddw = #{matchDdw} ,
- </if>
- <if test="matchMlll !=null">
- match_mlll = #{matchMlll}
- </if>
- </set>
- WHERE id = #{id}
- </update>
- <delete id="deleteById" parameterType="java.lang.Long">
- DELETE FROM record_medicine_check WHERE id = #{id}
- </delete>
- <delete id="deleteByIds" parameterType="java.util.List">
- DELETE FROM record_medicine_check WHERE id IN
- <foreach collection="list" index="index" item="item" open="(" separator="," close=")">
- #{item}
- </foreach>
- </delete>
- </mapper>
|