PayMentMapper.xml 4.08 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="cn.runsa.portal.base.dao.PayMentMapper" >
  <resultMap id="BaseResultMap" type="cn.runsa.portal.base.entity.PayMent" >
    <!--
      WARNING - @mbggenerated
    -->
    <id column="PAY_ID" property="payId" jdbcType="VARCHAR" />
    <result column="PAY_NAME" property="payName" jdbcType="VARCHAR" />
    <result column="PAY_ICON" property="payIcon" jdbcType="VARCHAR" />
    <result column="REC_TIME" property="recTime" jdbcType="TIMESTAMP" />
    <result column="REC_USER" property="recUser" jdbcType="BIGINT" />
    <result column="REMARK" property="remark" jdbcType="VARCHAR" />
  </resultMap>
  <sql id="Base_Column_List" >
    <!--
      WARNING - @mbggenerated
    -->
    PAY_ID, PAY_NAME, PAY_ICON, REC_TIME, REC_USER, REMARK
  </sql>
  <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.String" >
    <!--
      WARNING - @mbggenerated
    -->
    select 
    <include refid="Base_Column_List" />
    from crm_payment
    where PAY_ID = #{payId,jdbcType=VARCHAR}
  </select>
  <delete id="deleteByPrimaryKey" parameterType="java.lang.String" >
    <!--
      WARNING - @mbggenerated
    -->
    delete from crm_payment
    where PAY_ID = #{payId,jdbcType=VARCHAR}
  </delete>
  <insert id="insert" parameterType="cn.runsa.portal.base.entity.PayMent" >
    <!--
      WARNING - @mbggenerated
    -->
    insert into crm_payment (PAY_ID, PAY_NAME, PAY_ICON, 
      REC_TIME, REC_USER, REMARK
      )
    values (#{payId,jdbcType=VARCHAR}, #{payName,jdbcType=VARCHAR}, #{payIcon,jdbcType=VARCHAR}, 
      #{recTime,jdbcType=TIMESTAMP}, #{recUser,jdbcType=BIGINT}, #{remark,jdbcType=VARCHAR}
      )
  </insert>
  <insert id="insertSelective" parameterType="cn.runsa.portal.base.entity.PayMent" >
    <!--
      WARNING - @mbggenerated
    -->
    insert into crm_payment
    <trim prefix="(" suffix=")" suffixOverrides="," >
      <if test="payId != null" >
        PAY_ID,
      </if>
      <if test="payName != null" >
        PAY_NAME,
      </if>
      <if test="payIcon != null" >
        PAY_ICON,
      </if>
      <if test="recTime != null" >
        REC_TIME,
      </if>
      <if test="recUser != null" >
        REC_USER,
      </if>
      <if test="remark != null" >
        REMARK,
      </if>
    </trim>
    <trim prefix="values (" suffix=")" suffixOverrides="," >
      <if test="payId != null" >
        #{payId,jdbcType=VARCHAR},
      </if>
      <if test="payName != null" >
        #{payName,jdbcType=VARCHAR},
      </if>
      <if test="payIcon != null" >
        #{payIcon,jdbcType=VARCHAR},
      </if>
      <if test="recTime != null" >
        #{recTime,jdbcType=TIMESTAMP},
      </if>
      <if test="recUser != null" >
        #{recUser,jdbcType=BIGINT},
      </if>
      <if test="remark != null" >
        #{remark,jdbcType=VARCHAR},
      </if>
    </trim>
  </insert>
  <update id="updateByPrimaryKeySelective" parameterType="cn.runsa.portal.base.entity.PayMent" >
    <!--
      WARNING - @mbggenerated
    -->
    update crm_payment
    <set >
      <if test="payName != null" >
        PAY_NAME = #{payName,jdbcType=VARCHAR},
      </if>
      <if test="payIcon != null" >
        PAY_ICON = #{payIcon,jdbcType=VARCHAR},
      </if>
      <if test="recTime != null" >
        REC_TIME = #{recTime,jdbcType=TIMESTAMP},
      </if>
      <if test="recUser != null" >
        REC_USER = #{recUser,jdbcType=BIGINT},
      </if>
      <if test="remark != null" >
        REMARK = #{remark,jdbcType=VARCHAR},
      </if>
    </set>
    where PAY_ID = #{payId,jdbcType=VARCHAR}
  </update>
  <update id="updateByPrimaryKey" parameterType="cn.runsa.portal.base.entity.PayMent" >
    <!--
      WARNING - @mbggenerated
    -->
    update crm_payment
    set PAY_NAME = #{payName,jdbcType=VARCHAR},
      PAY_ICON = #{payIcon,jdbcType=VARCHAR},
      REC_TIME = #{recTime,jdbcType=TIMESTAMP},
      REC_USER = #{recUser,jdbcType=BIGINT},
      REMARK = #{remark,jdbcType=VARCHAR}
    where PAY_ID = #{payId,jdbcType=VARCHAR}
  </update>
</mapper>