123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477 |
- <?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.dm.MedicineInputDao">
- <resultMap type="cn.ourwill.module.house.entity.dm.MedicineInput" id="baseMap">
- <result column="id" property="id"/>
- <result column="name" property="name"/>
- <result column="inputTime" property="inputTime"/>
- <result column="count" property="count"/>
- <result column="providerId" property="providerId"/>
- <result column="price" property="price"/>
- <result column="totalPrice" property="totalPrice"/>
- <result column="buyTime" property="buyTime"/>
- <result column="thickness" property="thickness"/>
- <result column="dangerId" property="dangerId"/>
- <result column="storeId" property="storeId"/>
- <result column="status" property="status"/>
- <result column="houseId" property="houseId"/>
- <result column="source" property="source"/>
- <result column="remark" property="remark"/>
- <result column="cId" property="cId"/>
- <result column="uId" property="uId"/>
- <result column="cTime" property="cTime"/>
- <result column="uTime" property="uTime"/>
- <result column="uuid" property="uuid"/>
- <result column="version" property="version"/>
- <result column="provinceId" property="provinceId"/>
- <result column="cityId" property="cityId"/>
- <result column="grainId" property="grainId"/>
- </resultMap>
- <sql id="columns">
- id ,
- `name` ,
- inputTime ,
- `count` ,
- providerId ,
- price ,
- totalPrice ,
- buyTime ,
- thickness ,
- dangerId ,
- storeId ,
- status ,
- houseId ,
- source ,
- remark ,
- cId ,
- uId ,
- cTime ,
- uTime ,
- uuid ,
- version,
- provinceId,
- cityId,
- grainId
- </sql>
- <sql id="joinCols">
- </sql>
- <select id="get" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM dm_medicine_input a
- <include refid="joinCols"/>
- WHERE a.id = #{id}
- </select>
- <select id="findList" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM dm_medicine_input a
- <include refid="joinCols"/>
- <where>
- <if test="id !=null">
- and id = #{id}
- </if>
- <if test="name !=null">
- and `name` like CONCAT('%',#{name},'%')
- </if>
- <if test="inputTime !=null">
- and inputTime = #{inputTime}
- </if>
- <if test="count !=null">
- and `count` = #{count}
- </if>
- <if test="providerId !=null">
- and providerId = #{providerId}
- </if>
- <if test="price !=null">
- and price = #{price}
- </if>
- <if test="totalPrice !=null">
- and totalPrice = #{totalPrice}
- </if>
- <if test="buyTime !=null">
- and buyTime = #{buyTime}
- </if>
- <if test="thickness !=null">
- and thickness = #{thickness}
- </if>
- <if test="dangerId !=null">
- and dangerId = #{dangerId}
- </if>
- <if test="storeId !=null">
- and storeId = #{storeId}
- </if>
- <if test="status !=null">
- and status = #{status}
- </if>
- <if test="houseId !=null">
- and houseId = #{houseId}
- </if>
- <if test="source !=null">
- and source = #{source}
- </if>
- <if test="remark !=null">
- and remark = #{remark}
- </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="uTime !=null">
- and uTime = #{uTime}
- </if>
- <if test="uuid !=null">
- and uuid = #{uuid}
- </if>
- <if test="version !=null">
- and version = #{version}
- </if>
- <if test="provinceId !=null">
- and provinceId = #{provinceId}
- </if>
- <if test="cityId !=null">
- and cityId = #{cityId}
- </if>
- <if test="grainId !=null">
- and grainId = #{grainId}
- </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 dm_medicine_input a
- <include refid="joinCols"/>
- <where>
- <if test="id !=null">
- and id = #{id}
- </if>
- <if test="name !=null">
- and `name` = #{name}
- </if>
- <if test="inputTime !=null">
- and inputTime = #{inputTime}
- </if>
- <if test="count !=null">
- and `count` = #{count}
- </if>
- <if test="providerId !=null">
- and providerId = #{providerId}
- </if>
- <if test="price !=null">
- and price = #{price}
- </if>
- <if test="totalPrice !=null">
- and totalPrice = #{totalPrice}
- </if>
- <if test="buyTime !=null">
- and buyTime = #{buyTime}
- </if>
- <if test="thickness !=null">
- and thickness = #{thickness}
- </if>
- <if test="dangerId !=null">
- and dangerId = #{dangerId}
- </if>
- <if test="storeId !=null">
- and storeId = #{storeId}
- </if>
- <if test="status !=null">
- and status = #{status}
- </if>
- <if test="houseId !=null">
- and houseId = #{houseId}
- </if>
- <if test="source !=null">
- and source = #{source}
- </if>
- <if test="remark !=null">
- and remark = #{remark}
- </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="uTime !=null">
- and uTime = #{uTime}
- </if>
- <if test="uuid !=null">
- and uuid = #{uuid}
- </if>
- <if test="version !=null">
- and version = #{version}
- </if>
- <if test="provinceId !=null">
- and provinceId = #{provinceId}
- </if>
- <if test="cityId !=null">
- and cityId = #{cityId}
- </if>
- <if test="grainId !=null">
- and grainId = #{grainId}
- </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.MedicineInput">
- INSERT INTO dm_medicine_input
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test=" id != null">
- id,
- </if>
- <if test=" name != null">
- `name`,
- </if>
- <if test=" inputTime != null">
- inputTime,
- </if>
- <if test=" count != null">
- `count`,
- </if>
- <if test=" providerId != null">
- providerId,
- </if>
- <if test=" price != null">
- price,
- </if>
- <if test=" totalPrice != null">
- totalPrice,
- </if>
- <if test=" buyTime != null">
- buyTime,
- </if>
- <if test=" thickness != null">
- thickness,
- </if>
- <if test=" dangerId != null">
- dangerId,
- </if>
- <if test=" storeId != null">
- storeId,
- </if>
- <if test=" status != null">
- status,
- </if>
- <if test=" houseId != null">
- houseId,
- </if>
- <if test=" source != null">
- source,
- </if>
- <if test=" remark != null">
- remark,
- </if>
- <if test=" cId != null">
- cId,
- </if>
- <if test=" uId != null">
- uId,
- </if>
- <if test=" cTime != null">
- cTime,
- </if>
- <if test=" uTime != null">
- uTime,
- </if>
- <if test=" uuid != null">
- uuid,
- </if>
- <if test=" version != null">
- version,
- </if>
- <if test=" provinceId != null">
- provinceId,
- </if>
- <if test=" cityId != null">
- cityId,
- </if>
- <if test=" grainId != null">
- grainId
- </if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test=" id != null">
- #{id}, </if>
- <if test=" name != null">
- #{name}, </if>
- <if test=" inputTime != null">
- #{inputTime}, </if>
- <if test=" count != null">
- #{count}, </if>
- <if test=" providerId != null">
- #{providerId}, </if>
- <if test=" price != null">
- #{price}, </if>
- <if test=" totalPrice != null">
- #{totalPrice}, </if>
- <if test=" buyTime != null">
- #{buyTime}, </if>
- <if test=" thickness != null">
- #{thickness}, </if>
- <if test=" dangerId != null">
- #{dangerId}, </if>
- <if test=" storeId != null">
- #{storeId}, </if>
- <if test=" status != null">
- #{status}, </if>
- <if test=" houseId != null">
- #{houseId}, </if>
- <if test=" source != null">
- #{source}, </if>
- <if test=" remark != null">
- #{remark}, </if>
- <if test=" cId != null">
- #{cId}, </if>
- <if test=" uId != null">
- #{uId}, </if>
- <if test=" cTime != null">
- #{cTime}, </if>
- <if test=" uTime != null">
- #{uTime}, </if>
- <if test=" uuid != null">
- #{uuid}, </if>
- <if test=" version != null">
- #{version} , </if>
- <if test=" provinceId != null">
- #{provinceId} , </if>
- <if test=" cityId != null">
- #{cityId} , </if>
- <if test=" grainId != null">
- #{grainId} </if>
- </trim>
- </insert>
- <update id="update" parameterType="cn.ourwill.module.house.entity.dm.MedicineInput">
- UPDATE dm_medicine_input <set>
- <if test="id != null">
- id= #{id} ,
- </if>
- <if test="name != null">
- name= #{name} ,
- </if>
- <if test="inputTime != null">
- inputTime= #{inputTime} ,
- </if>
- <if test="count != null">
- `count`= #{count} ,
- </if>
- <if test="providerId != null">
- providerId= #{providerId} ,
- </if>
- <if test="price != null">
- price= #{price} ,
- </if>
- <if test="totalPrice != null">
- totalPrice= #{totalPrice} ,
- </if>
- <if test="buyTime != null">
- buyTime= #{buyTime} ,
- </if>
- <if test="thickness != null">
- thickness= #{thickness} ,
- </if>
- <if test="dangerId != null">
- dangerId= #{dangerId} ,
- </if>
- <if test="storeId != null">
- storeId= #{storeId} ,
- </if>
- <if test="status != null">
- status= #{status} ,
- </if>
- <if test="houseId != null">
- houseId= #{houseId} ,
- </if>
- <if test="source != null">
- source= #{source} ,
- </if>
- <if test="remark != null">
- remark= #{remark} ,
- </if>
- <if test="cId != null">
- cId= #{cId} ,
- </if>
- <if test="uId != null">
- uId= #{uId} ,
- </if>
- <if test="cTime != null">
- cTime= #{cTime} ,
- </if>
- <if test="uTime != null">
- uTime= #{uTime} ,
- </if>
- <if test="uuid != null">
- uuid= #{uuid} ,
- </if>
- <if test="version != null">
- version= #{version},
- </if>
- <if test="provinceId != null">
- provinceId= #{provinceId},
- </if>
- <if test="cityId != null">
- cityId= #{cityId},
- </if>
- <if test="grainId != null">
- grainId= #{grainId}
- </if>
- </set>
- WHERE id = #{id}
- </update>
- <delete id="deleteById" parameterType="java.lang.Long">
- DELETE FROM dm_medicine_input WHERE id = #{id}
- </delete>
- <delete id="deleteByIds" parameterType="java.util.List">
- DELETE FROM dm_medicine_input WHERE id IN
- <foreach collection="list" index="index" item="item" open="(" separator="," close=")">
- #{item}
- </foreach>
- </delete>
- <select id="getNameList" resultMap="baseMap">
- SELECT
- DISTINCT name
- FROM dm_medicine_input order by name asc
- </select>
- <select id="getProviderList" resultMap="baseMap">
- SELECT
- DISTINCT providerId
- FROM dm_medicine_input where name=#{name}
- </select>
- </mapper>
|