NoticeCaseMapper.xml 3.22 KB
<?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.yohoufo.dal.order.NoticeCaseMapper">
  <resultMap id="BaseResultMap" type="com.yohoufo.dal.order.model.NoticeCase">
    <id column="id" jdbcType="INTEGER" property="id" />
    <result column="meta_key" jdbcType="VARCHAR" property="metaKey" />
    <result column="title" jdbcType="VARCHAR" property="title" />
    <result column="rule_ids" jdbcType="VARCHAR" property="ruleIds" />
    <result column="rules" jdbcType="VARCHAR" property="rules" />
  </resultMap>
  <sql id="Base_Column_List">
    id, meta_key, title, rule_ids, rules
  </sql>

  <select id="selectByMetaKey" parameterType="java.lang.String" resultMap="BaseResultMap">
    select
    <include refid="Base_Column_List" />
    from notice_case
    where meta_key = #{metaKey,jdbcType=VARCHAR}
  </select>

  <select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
    select 
    <include refid="Base_Column_List" />
    from notice_case
    where id = #{id,jdbcType=INTEGER}
  </select>

  <insert id="insert" keyColumn="id" keyProperty="id" parameterType="com.yohoufo.dal.order.model.NoticeCase" useGeneratedKeys="true">
    insert into notice_case (meta_key, title, rule_ids, 
      rules)
    values (#{metaKey,jdbcType=VARCHAR}, #{title,jdbcType=VARCHAR}, #{ruleIds,jdbcType=VARCHAR}, 
      #{rules,jdbcType=VARCHAR})
  </insert>
  <insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.yohoufo.dal.order.model.NoticeCase" useGeneratedKeys="true">
    insert into notice_case
    <trim prefix="(" suffix=")" suffixOverrides=",">
      <if test="metaKey != null">
        meta_key,
      </if>
      <if test="title != null">
        title,
      </if>
      <if test="ruleIds != null">
        rule_ids,
      </if>
      <if test="rules != null">
        rules,
      </if>
    </trim>
    <trim prefix="values (" suffix=")" suffixOverrides=",">
      <if test="metaKey != null">
        #{metaKey,jdbcType=VARCHAR},
      </if>
      <if test="title != null">
        #{title,jdbcType=VARCHAR},
      </if>
      <if test="ruleIds != null">
        #{ruleIds,jdbcType=VARCHAR},
      </if>
      <if test="rules != null">
        #{rules,jdbcType=VARCHAR},
      </if>
    </trim>
  </insert>
  <update id="updateByPrimaryKeySelective" parameterType="com.yohoufo.dal.order.model.NoticeCase">
    update notice_case
    <set>
      <if test="metaKey != null">
        meta_key = #{metaKey,jdbcType=VARCHAR},
      </if>
      <if test="title != null">
        title = #{title,jdbcType=VARCHAR},
      </if>
      <if test="ruleIds != null">
        rule_ids = #{ruleIds,jdbcType=VARCHAR},
      </if>
      <if test="rules != null">
        rules = #{rules,jdbcType=VARCHAR},
      </if>
    </set>
    where id = #{id,jdbcType=INTEGER}
  </update>
  <update id="updateByPrimaryKey" parameterType="com.yohoufo.dal.order.model.NoticeCase">
    update notice_case
    set meta_key = #{metaKey,jdbcType=VARCHAR},
      title = #{title,jdbcType=VARCHAR},
      rule_ids = #{ruleIds,jdbcType=VARCHAR},
      rules = #{rules,jdbcType=VARCHAR}
    where id = #{id,jdbcType=INTEGER}
  </update>
</mapper>