123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243 |
- <?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.grain.GrainBinDao">
-
- <resultMap type="cn.ourwill.module.house.entity.grain.GrainBin" id="baseMap">
- <!-- a.id AS "id", -->
- <result column= "id" property="id" />
- <!-- a.city_id AS "cityId", -->
- <result column= "city_id" property="cityId" />
- <!-- a.type AS "type", -->
- <result column= "type" property="type" />
- <!-- a.name AS "name", -->
- <result column= "name" property="name" />
- <!-- a.c_time AS "cTime", -->
- <result column= "c_time" property="cTime" />
- <!-- a.u_time AS "uTime", -->
- <result column= "u_time" property="uTime" />
- <!-- a.u_id AS "uId", -->
- <result column= "u_id" property="uId" />
- <result column="version" property="version"/>
- </resultMap>
-
- <sql id="grainBinColumns" >
- id ,
- city_id ,
- `type` ,
- `name` ,
- c_time ,
- u_time ,
- u_id ,
- parent_grain_id,
- version
- </sql>
-
- <sql id="grainBinJoins">
- </sql>
-
- <select id="get" resultMap="baseMap" parameterType="java.lang.Long">
- SELECT
- <include refid="grainBinColumns"/>
- FROM grain_bin a
- <include refid="grainBinJoins"/>
- WHERE a.id = #{id}
- </select>
-
- <select id="findList" resultMap="baseMap" parameterType="cn.ourwill.module.house.entity.grain.GrainBin">
- SELECT
- <include refid="grainBinColumns"/>
- FROM grain_bin a
- <include refid="grainBinJoins"/>
- <where>
- <if test="cityId !=null">
- and city_id = #{cityId}
- </if>
- <if test="type !=null">
- and type = #{type}
- </if>
- <if test="name !=null">
- and name = #{name}
- </if>
- <!--<if test="cTime !=null">-->
- <!--and c_time = #{cTime}-->
- <!--</if>-->
- <!--<if test="uTime !=null">-->
- <!--and u_time = #{uTime}-->
- <!--</if>-->
- <!--<if test="uId !=null">-->
- <!--and u_id = #{uId}-->
- <!--</if>-->
- <!--<if test="version !=null">-->
- <!--and version = #{version}-->
- <!--</if>-->
- <if test="parentGrainId !=null">
- and parent_grain_id = #{parentGrainId}
- </if>
- <!--AND a.name LIKE -->
- <!--<if test="dbName == 'oracle'">'%'||#{name}||'%'</if>-->
- <!--<if test="dbName == 'mssql'">'%'+#{name}+'%'</if>-->
- <!--<if test="dbName == 'mysql'">concat('%',#{name},'%')</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="grainBinColumns"/>
- FROM grain_bin a
- <include refid="grainBinJoins"/>
- <where>
- <if test="id !=null">
- and id = #{id}
- </if>
- <if test="cityId !=null">
- and city_id = #{cityId}
- </if>
- <if test="type !=null">
- and type = #{type}
- </if>
- <if test="name !=null">
- and name = #{name}
- </if>
- <!--<if test="cTime !=null">-->
- <!--and c_time = #{cTime}-->
- <!--</if>-->
- <!--<if test="uTime !=null">-->
- <!--and u_time = #{uTime}-->
- <!--</if>-->
- <!--<if test="uId !=null">-->
- <!--and u_id = #{uId}-->
- <!--</if>-->
- <!--</if>-->
- <!--<if test="version !=null">-->
- <!--and version = #{version}-->
- <!--</if>-->
- <if test="parentGrainId !=null">
- and parent_grain_id = #{parentGrainId}
- </if>
- </where>
- </select>
-
- <insert id="insert" keyColumn="id" keyProperty="id" useGeneratedKeys="true" parameterType="cn.ourwill.module.house.entity.grain.GrainBin">
- INSERT INTO grain_bin
- <trim prefix="(" suffix=")" suffixOverrides="," >
- <if test=" id != null" >
- id,
- </if>
- <if test=" cityId != null" >
- city_id,
- </if>
- <if test=" type != null" >
- type,
- </if>
- <if test=" name != null" >
- name,
- </if>
- <if test=" cTime != null" >
- c_time,
- </if>
- <if test=" uTime != null" >
- u_time,
- </if>
- <if test=" uId != null" >
- u_id,
- </if>
- <if test=" parentGrainId != null" >
- parent_grain_id,
- </if>
- <if test="version !=null">
- version,
- </if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides="," >
- <if test=" id != null" >
- #{id},
- </if>
- <if test=" cityId != null" >
- #{cityId},
- </if>
- <if test=" type != null" >
- #{type},
- </if>
- <if test=" name != null" >
- #{name},
- </if>
- <if test=" cTime != null" >
- #{cTime},
- </if>
- <if test=" uTime != null" >
- #{uTime},
- </if>
- <if test=" uId != null" >
- #{uId},
- </if>
- <if test=" parentGrainId != null" >
- #{parentGrainId},
- </if>
- <if test="version !=null">
- #{version}
- </if>
- </trim>
- </insert>
-
- <update id="update" parameterType="cn.ourwill.module.house.entity.grain.GrainBin">
- UPDATE grain_bin <set>
- <if test="cityId !=null">
- city_id = #{cityId},
- </if>
- <if test="type !=null">
- type = #{type},
- </if>
- <if test="name !=null">
- name = #{name},
- </if>
- <if test="parentGrainId !=null">
- parent_grain_id = #{parentGrainId}
- </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>
- </set>
- WHERE id = #{id}
- </update>
-
- <delete id="deleteById" parameterType="java.lang.Long">
- DELETE FROM grain_bin
- WHERE id = #{id}
- </delete>
- <delete id="deleteByIds" parameterType="java.util.List">
- DELETE FROM grain_bin WHERE id IN
- <foreach collection="list" index="index" item="item" open="(" separator="," close=")">
- #{item}
- </foreach>
- </delete>
- </mapper>
|