123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464 |
- <!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.RecordMedicineCheckNewDao">
- <resultMap type="cn.ourwill.module.house.entity.dm.RecordMedicineCheckNew" id="baseMap">
- <result column="id" property="id"/>
- <result column="grain_id" property="grainId"/>
- <result column="medicine_id" property="medicineId"/>
- <result column="book_number" property="bookNumber"/>
- <result column="reality_number" property="realityNumber"/>
- <result column="ismatch" property="isMatch"/>
- <result column="check_type" property="checkType"/>
- <result column="check_time" property="checkTime"/>
- <result column="reason" property="reason"/>
- <result column="checker" property="checker"/>
- <result column="problems" property="problems"/>
- <result column="inventory_no" property="inventoryNo"/>
- <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="uuid" property="uuid"/>
- </resultMap>
- <sql id="columns">
- a.id ,
- a.grain_id ,
- a.medicine_id,
- a.book_number ,
- a.reality_number,
- a.ismatch,
- a.check_type ,
- a.check_time ,
- a.reason ,
- a.checker ,
- a.problems ,
- a.inventory_no,
- a.c_id ,
- a.c_time ,
- a.u_id ,
- a.u_time,
- a.uuid
- </sql>
- <sql id="joinCols">
- </sql>
- <select id="get" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM record_medicine_check_new a
- <include refid="joinCols"/>
- WHERE a.id = #{id}
- </select>
- <select id="getByInventoryNo" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM record_medicine_check_new a
- <include refid="joinCols"/>
- WHERE a.inventory_no = #{inventoryNo}
- limit 1
- </select>
- <select id="getMedicineListByInventoryNo" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM record_medicine_check_new a
- <include refid="joinCols"/>
- WHERE a.inventory_no = #{inventoryNo}
- </select>
- <select id="findList" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM record_medicine_check_new a
- LEFT JOIN sys_grain sg ON a.grain_id=sg.id
- <include refid="joinCols"/>
- <where>
- <if test="id !=null">
- and a.id = #{id}
- </if>
- <if test="grainId !=null">
- and a.grain_id = #{grainId}
- </if>
- <if test="medicineId !=null">
- and a.medicine_id = #{medicineId}
- </if>
- <if test="cityId !=null and cityId !=''">
- and sg.parentId = #{cityId}
- </if>
- <if test="bookNumber !=null">
- and a.book_number = #{bookNumber}
- </if>
- <if test="realityNumber !=null">
- and a.reality_number = #{realityNumber}
- </if>
- <if test="isMatch !=null">
- and a.ismatch = #{isMatch}
- </if>
- <if test="checkType !=null">
- and a.check_type = #{checkType}
- </if>
- <if test="checkTime !=null">
- and a.check_time = #{checkTime}
- </if>
- <if test="reason !=null">
- and a.reason = #{reason}
- </if>
- <if test="checker !=null">
- and a.checker = #{checker}
- </if>
- <if test="problems !=null">
- and a.problems = #{problems}
- </if>
- <if test="inventoryNo !=null">
- and a.inventory_no = #{inventoryNo}
- </if>
- <if test="cId !=null">
- and a.c_id=#{cId}
- </if>
- <if test="cTime !=null">
- and c_time=#{cTime}
- </if>
- <if test="uId !=null">
- and a.u_id=#{uId}
- </if>
- <if test="uTime !=null">
- and a.u_time=#{uTime}
- </if>
- <if test="uuid !=null">
- and a.uuid=#{uuid}
- </if>
- </where>
- group by inventory_no
- <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_new a
- <include refid="joinCols"/>
- <where>
- <if test="id !=null">
- and id = #{id}
- </if>
- <if test="grainId !=null">
- and grain_id = #{grainId}
- </if>
- <if test="medicineId !=null">
- and medicine_id = #{medicineId}
- </if>
- <if test="bookNumber !=null">
- and book_number = #{bookNumber}
- </if>
- <if test="realityNumber !=null">
- and reality_number = #{realityNumber}
- </if>
- <if test="isMatch !=null">
- and ismatch = #{isMatch}
- </if>
- <if test="checkType !=null">
- and check_type = #{checkType}
- </if>
- <if test="checkTime !=null">
- and check_time LIKE CONCAT('%',DATE_FORMAT(#{checkTime}, '%Y'),'%')
- </if>
- <if test="reason !=null">
- and reason = #{reason}
- </if>
- <if test="checker !=null">
- and checker = #{checker}
- </if>
- <if test="problems !=null">
- and problems = #{problems}
- </if>
- <if test="inventoryNo !=null">
- and inventory_no like CONCAT('%',#{inventoryNo},'%')
- </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">
- u_time=#{uTime},
- </if>
- <if test="uuid !=null">
- uuid=#{uuid}
- </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.RecordMedicineCheckNew">
- INSERT INTO record_medicine_check_new
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test=" grainId != null">
- grain_id,
- </if>
- <if test="medicineId !=null">
- medicine_id,
- </if>
- <if test="bookNumber !=null">
- book_number,
- </if>
- <if test="realityNumber !=null">
- reality_number,
- </if>
- <if test="isMatch !=null">
- ismatch,
- </if>
- <if test="checkType !=null">
- check_type,
- </if>
- <if test="checkTime !=null">
- check_time,
- </if>
- <if test="reason !=null">
- reason,
- </if>
- <if test="checker !=null">
- checker,
- </if>
- <if test="problems !=null">
- problems,
- </if>
- <if test="inventoryNo !=null">
- inventory_no,
- </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="uuid !=null">
- uuid
- </if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test=" grainId != null">
- #{grainId}, </if>
- <if test="medicineId !=null">
- #{medicineId},
- </if>
- <if test="bookNumber !=null">
- #{bookNumber},
- </if>
- <if test="realityNumber !=null">
- #{realityNumber},
- </if>
- <if test="isMatch !=null">
- #{isMatch},
- </if>
- <if test="checkType !=null">
- #{checkType},
- </if>
- <if test="checkTime !=null">
- #{checkTime},
- </if>
- <if test="reason !=null">
- #{reason},
- </if>
- <if test="checker !=null">
- #{checker},
- </if>
- <if test="problems !=null">
- #{problems},
- </if>
- <if test="inventoryNo !=null">
- #{inventoryNo},
- </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="uuid !=null">
- #{uuid}
- </if>
- </trim>
- </insert>
- <update id="update" parameterType="cn.ourwill.module.house.entity.dm.RecordMedicineCheckNew">
- UPDATE record_medicine_check_new <set>
- <if test="id != null">
- id= #{id} ,
- </if>
- <if test="grainId != null">
- grain_id= #{grainId} ,
- </if>
- <if test="medicineId !=null">
- medicine_id = #{medicineId},
- </if>
- <if test="bookNumber !=null">
- book_number = #{bookNumber},
- </if>
- <if test="realityNumber !=null">
- reality_number = #{realityNumber},
- </if>
- <if test="isMatch !=null">
- ismatch = #{isMatch},
- </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="checker !=null">
- checker = #{checker},
- </if>
- <if test="problems !=null">
- problems = #{problems},
- </if>
- <if test="inventoryNo !=null">
- inventory_no = #{inventoryNo},
- </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="uuid !=null">
- uuid=#{uuid}
- </if>
- </set>
- WHERE id = #{id}
- </update>
- <delete id="deleteById" parameterType="java.lang.Long">
- DELETE FROM record_medicine_check_new WHERE id = #{id}
- </delete>
- <delete id="deleteByNo" >
- DELETE FROM record_medicine_check_new WHERE inventory_no = #{inventoryNo}
- </delete>
- <delete id="deleteByIds" parameterType="java.util.List">
- DELETE FROM record_medicine_check_new WHERE id IN
- <foreach collection="list" index="index" item="item" open="(" separator="," close=")">
- #{item}
- </foreach>
- </delete>
- <select id="getByUUid" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM record_medicine_check_new a
- <include refid="joinCols"/>
- WHERE a.uuid=#{uuid}
- </select>
- <update id="updateByUuid" parameterType="cn.ourwill.module.house.entity.dm.RecordMedicineCheckNew">
- UPDATE record_medicine_check_new <set>
- <if test="id != null">
- id= #{id} ,
- </if>
- <if test="grainId != null">
- grain_id= #{grainId} ,
- </if>
- <if test="medicineId !=null">
- medicine_id = #{medicineId},
- </if>
- <if test="bookNumber !=null">
- book_number = #{bookNumber},
- </if>
- <if test="realityNumber !=null">
- reality_number = #{realityNumber},
- </if>
- <if test="isMatch !=null">
- ismatch = #{isMatch},
- </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="checker !=null">
- checker = #{checker},
- </if>
- <if test="problems !=null">
- problems = #{problems},
- </if>
- <if test="inventoryNo !=null">
- inventory_no = #{inventoryNo},
- </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="uuid !=null">
- uuid=#{uuid}
- </if>
- </set>
- WHERE uuid=#{uuid}
- </update>
- </mapper>
|