123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
- <?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="com.chinaitop.depot.intelligent.grainsituation.mapper.TActkindMapper" >
- <resultMap id="BaseResultMap" type="com.chinaitop.depot.intelligent.grainsituation.model.TActkind" >
- <id column="id" property="id" jdbcType="INTEGER" />
- <id column="vDevKindCode" property="vdevkindcode" jdbcType="VARCHAR" />
- <result column="vDevKindName" property="vdevkindname" jdbcType="VARCHAR" />
- <result column="vRemark" property="vremark" jdbcType="VARCHAR" />
- </resultMap>
- <sql id="Example_Where_Clause" >
- <where >
- <foreach collection="oredCriteria" item="criteria" separator="or" >
- <if test="criteria.valid" >
- <trim prefix="(" suffix=")" prefixOverrides="and" >
- <foreach collection="criteria.criteria" item="criterion" >
- <choose >
- <when test="criterion.noValue" >
- and ${criterion.condition}
- </when>
- <when test="criterion.singleValue" >
- and ${criterion.condition} #{criterion.value}
- </when>
- <when test="criterion.betweenValue" >
- and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
- </when>
- <when test="criterion.listValue" >
- and ${criterion.condition}
- <foreach collection="criterion.value" item="listItem" open="(" close=")" separator="," >
- #{listItem}
- </foreach>
- </when>
- </choose>
- </foreach>
- </trim>
- </if>
- </foreach>
- </where>
- </sql>
- <sql id="Update_By_Example_Where_Clause" >
- <where >
- <foreach collection="example.oredCriteria" item="criteria" separator="or" >
- <if test="criteria.valid" >
- <trim prefix="(" suffix=")" prefixOverrides="and" >
- <foreach collection="criteria.criteria" item="criterion" >
- <choose >
- <when test="criterion.noValue" >
- and ${criterion.condition}
- </when>
- <when test="criterion.singleValue" >
- and ${criterion.condition} #{criterion.value}
- </when>
- <when test="criterion.betweenValue" >
- and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
- </when>
- <when test="criterion.listValue" >
- and ${criterion.condition}
- <foreach collection="criterion.value" item="listItem" open="(" close=")" separator="," >
- #{listItem}
- </foreach>
- </when>
- </choose>
- </foreach>
- </trim>
- </if>
- </foreach>
- </where>
- </sql>
- <sql id="Base_Column_List" >
- id, vDevKindCode, vDevKindName, vRemark
- </sql>
- <select id="selectByExample" resultMap="BaseResultMap" parameterType="com.chinaitop.depot.intelligent.grainsituation.model.TActkindExample" >
- select
- <if test="distinct" >
- distinct
- </if>
- <include refid="Base_Column_List" />
- from t_actkind
- <if test="_parameter != null" >
- <include refid="Example_Where_Clause" />
- </if>
- <if test="orderByClause != null" >
- order by ${orderByClause}
- </if>
- </select>
- <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="com.chinaitop.depot.intelligent.grainsituation.model.TActkindKey" >
- select
- <include refid="Base_Column_List" />
- from t_actkind
- where id = #{id,jdbcType=INTEGER}
- and vDevKindCode = #{vdevkindcode,jdbcType=VARCHAR}
- </select>
- <delete id="deleteByPrimaryKey" parameterType="com.chinaitop.depot.intelligent.grainsituation.model.TActkindKey" >
- delete from t_actkind
- where id = #{id,jdbcType=INTEGER}
- and vDevKindCode = #{vdevkindcode,jdbcType=VARCHAR}
- </delete>
- <delete id="deleteByExample" parameterType="com.chinaitop.depot.intelligent.grainsituation.model.TActkindExample" >
- delete from t_actkind
- <if test="_parameter != null" >
- <include refid="Example_Where_Clause" />
- </if>
- </delete>
- <insert id="insert" parameterType="com.chinaitop.depot.intelligent.grainsituation.model.TActkind" >
- insert into t_actkind (id, vDevKindCode, vDevKindName,
- vRemark)
- values (#{id,jdbcType=INTEGER}, #{vdevkindcode,jdbcType=VARCHAR}, #{vdevkindname,jdbcType=VARCHAR},
- #{vremark,jdbcType=VARCHAR})
- </insert>
- <insert id="insertSelective" parameterType="com.chinaitop.depot.intelligent.grainsituation.model.TActkind" >
- insert into t_actkind
- <trim prefix="(" suffix=")" suffixOverrides="," >
- <if test="id != null" >
- id,
- </if>
- <if test="vdevkindcode != null" >
- vDevKindCode,
- </if>
- <if test="vdevkindname != null" >
- vDevKindName,
- </if>
- <if test="vremark != null" >
- vRemark,
- </if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides="," >
- <if test="id != null" >
- #{id,jdbcType=INTEGER},
- </if>
- <if test="vdevkindcode != null" >
- #{vdevkindcode,jdbcType=VARCHAR},
- </if>
- <if test="vdevkindname != null" >
- #{vdevkindname,jdbcType=VARCHAR},
- </if>
- <if test="vremark != null" >
- #{vremark,jdbcType=VARCHAR},
- </if>
- </trim>
- </insert>
- <select id="countByExample" parameterType="com.chinaitop.depot.intelligent.grainsituation.model.TActkindExample" resultType="java.lang.Integer" >
- select count(*) from t_actkind
- <if test="_parameter != null" >
- <include refid="Example_Where_Clause" />
- </if>
- </select>
- <update id="updateByExampleSelective" parameterType="map" >
- update t_actkind
- <set >
- <if test="record.id != null" >
- id = #{record.id,jdbcType=INTEGER},
- </if>
- <if test="record.vdevkindcode != null" >
- vDevKindCode = #{record.vdevkindcode,jdbcType=VARCHAR},
- </if>
- <if test="record.vdevkindname != null" >
- vDevKindName = #{record.vdevkindname,jdbcType=VARCHAR},
- </if>
- <if test="record.vremark != null" >
- vRemark = #{record.vremark,jdbcType=VARCHAR},
- </if>
- </set>
- <if test="_parameter != null" >
- <include refid="Update_By_Example_Where_Clause" />
- </if>
- </update>
- <update id="updateByExample" parameterType="map" >
- update t_actkind
- set id = #{record.id,jdbcType=INTEGER},
- vDevKindCode = #{record.vdevkindcode,jdbcType=VARCHAR},
- vDevKindName = #{record.vdevkindname,jdbcType=VARCHAR},
- vRemark = #{record.vremark,jdbcType=VARCHAR}
- <if test="_parameter != null" >
- <include refid="Update_By_Example_Where_Clause" />
- </if>
- </update>
- <update id="updateByPrimaryKeySelective" parameterType="com.chinaitop.depot.intelligent.grainsituation.model.TActkind" >
- update t_actkind
- <set >
- <if test="vdevkindname != null" >
- vDevKindName = #{vdevkindname,jdbcType=VARCHAR},
- </if>
- <if test="vremark != null" >
- vRemark = #{vremark,jdbcType=VARCHAR},
- </if>
- </set>
- where id = #{id,jdbcType=INTEGER}
- and vDevKindCode = #{vdevkindcode,jdbcType=VARCHAR}
- </update>
- <update id="updateByPrimaryKey" parameterType="com.chinaitop.depot.intelligent.grainsituation.model.TActkind" >
- update t_actkind
- set vDevKindName = #{vdevkindname,jdbcType=VARCHAR},
- vRemark = #{vremark,jdbcType=VARCHAR}
- where id = #{id,jdbcType=INTEGER}
- and vDevKindCode = #{vdevkindcode,jdbcType=VARCHAR}
- </update>
- </mapper>
|