STATIC_CUSTOM_RESPONSE_BASEMapper.xml 2.4 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.sunyo.wlpt.base.dao.STATIC_CUSTOM_RESPONSE_BASEMapper" >
  <resultMap id="BaseResultMap" type="com.sunyo.wlpt.base.model.STATIC_CUSTOM_RESPONSE_BASE" >
    <result column="RESPONSECODE" property="responsecode" jdbcType="VARCHAR" />
    <result column="RESPONSETEXT" property="responsetext" jdbcType="VARCHAR" />
    <result column="TYPEREMARK" property="typeremark" jdbcType="VARCHAR" />
    <result column="TYPE" property="type" jdbcType="VARCHAR" />
    <result column="SORTNUM" property="sortnum" jdbcType="DECIMAL" />
    <result column="OPERATIONTIME" property="operationtime" jdbcType="TIMESTAMP" />
  </resultMap>
  <insert id="insert" parameterType="com.sunyo.wlpt.base.model.STATIC_CUSTOM_RESPONSE_BASE" >
    insert into STATIC_CUSTOM_RESPONSE_BASE (RESPONSECODE, RESPONSETEXT, TYPEREMARK, 
      TYPE, SORTNUM, OPERATIONTIME
      )
    values (#{responsecode,jdbcType=VARCHAR}, #{responsetext,jdbcType=VARCHAR}, #{typeremark,jdbcType=VARCHAR}, 
      #{type,jdbcType=VARCHAR}, #{sortnum,jdbcType=DECIMAL}, #{operationtime,jdbcType=TIMESTAMP}
      )
  </insert>
  <insert id="insertSelective" parameterType="com.sunyo.wlpt.base.model.STATIC_CUSTOM_RESPONSE_BASE" >
    insert into STATIC_CUSTOM_RESPONSE_BASE
    <trim prefix="(" suffix=")" suffixOverrides="," >
      <if test="responsecode != null" >
        RESPONSECODE,
      </if>
      <if test="responsetext != null" >
        RESPONSETEXT,
      </if>
      <if test="typeremark != null" >
        TYPEREMARK,
      </if>
      <if test="type != null" >
        TYPE,
      </if>
      <if test="sortnum != null" >
        SORTNUM,
      </if>
      <if test="operationtime != null" >
        OPERATIONTIME,
      </if>
    </trim>
    <trim prefix="values (" suffix=")" suffixOverrides="," >
      <if test="responsecode != null" >
        #{responsecode,jdbcType=VARCHAR},
      </if>
      <if test="responsetext != null" >
        #{responsetext,jdbcType=VARCHAR},
      </if>
      <if test="typeremark != null" >
        #{typeremark,jdbcType=VARCHAR},
      </if>
      <if test="type != null" >
        #{type,jdbcType=VARCHAR},
      </if>
      <if test="sortnum != null" >
        #{sortnum,jdbcType=DECIMAL},
      </if>
      <if test="operationtime != null" >
        #{operationtime,jdbcType=TIMESTAMP},
      </if>
    </trim>
  </insert>
</mapper>