ApiAccountMapper.xml 5.21 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.crmapp.common.mapper.ApiAccountMapper" >
  <resultMap id="BaseResultMap" type="cn.runsa.crmapp.common.entity.ApiAccount" >
    <!--
      WARNING - @mbggenerated
      This element is automatically generated by MyBatis Generator, do not modify.
    -->
    <id column="API_ID" property="apiId" jdbcType="VARCHAR" />
    <result column="API_TYPE" property="apiType" jdbcType="VARCHAR" />
    <result column="API_SEC" property="apiSec" jdbcType="VARCHAR" />
    <result column="SEC_OLD" property="secOld" jdbcType="VARCHAR" />
    <result column="SEC_TIME" property="secTime" jdbcType="BIGINT" />
    <result column="ENABLE" property="enable" jdbcType="BIT" />
    <result column="REC_TIME" property="recTime" jdbcType="TIMESTAMP" />
  </resultMap>
  <sql id="Base_Column_List" >
    <!--
      WARNING - @mbggenerated
      This element is automatically generated by MyBatis Generator, do not modify.
    -->
    `API_ID`, `API_TYPE`, `API_SEC`, `SEC_OLD`, `SEC_TIME`, `ENABLE`, `REC_TIME`
  </sql>
  <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.String" >
    <!--
      WARNING - @mbggenerated
      This element is automatically generated by MyBatis Generator, do not modify.
    -->
    select 
    <include refid="Base_Column_List" />
    from crm_api_account
    where `API_ID` = #{apiId,jdbcType=VARCHAR}
  </select>
  <delete id="deleteByPrimaryKey" parameterType="java.lang.String" >
    <!--
      WARNING - @mbggenerated
      This element is automatically generated by MyBatis Generator, do not modify.
    -->
    delete from crm_api_account
    where `API_ID` = #{apiId,jdbcType=VARCHAR}
  </delete>
  <insert id="insert" parameterType="cn.runsa.crmapp.common.entity.ApiAccount" >
    <!--
      WARNING - @mbggenerated
      This element is automatically generated by MyBatis Generator, do not modify.
    -->
    insert into crm_api_account (`API_ID`, `API_TYPE`, `API_SEC`, 
      `SEC_OLD`, `SEC_TIME`, `ENABLE`, 
      `REC_TIME`)
    values (#{apiId,jdbcType=VARCHAR}, #{apiType,jdbcType=VARCHAR}, #{apiSec,jdbcType=VARCHAR}, 
      #{secOld,jdbcType=VARCHAR}, #{secTime,jdbcType=BIGINT}, #{enable,jdbcType=BIT}, 
      #{recTime,jdbcType=TIMESTAMP})
  </insert>
  <insert id="insertSelective" parameterType="cn.runsa.crmapp.common.entity.ApiAccount" >
    <!--
      WARNING - @mbggenerated
      This element is automatically generated by MyBatis Generator, do not modify.
    -->
    insert into crm_api_account
    <trim prefix="(" suffix=")" suffixOverrides="," >
      <if test="apiId != null" >
        `API_ID`,
      </if>
      <if test="apiType != null" >
        `API_TYPE`,
      </if>
      <if test="apiSec != null" >
        `API_SEC`,
      </if>
      <if test="secOld != null" >
        `SEC_OLD`,
      </if>
      <if test="secTime != null" >
        `SEC_TIME`,
      </if>
      <if test="enable != null" >
        `ENABLE`,
      </if>
      <if test="recTime != null" >
        `REC_TIME`,
      </if>
    </trim>
    <trim prefix="values (" suffix=")" suffixOverrides="," >
      <if test="apiId != null" >
        #{apiId,jdbcType=VARCHAR},
      </if>
      <if test="apiType != null" >
        #{apiType,jdbcType=VARCHAR},
      </if>
      <if test="apiSec != null" >
        #{apiSec,jdbcType=VARCHAR},
      </if>
      <if test="secOld != null" >
        #{secOld,jdbcType=VARCHAR},
      </if>
      <if test="secTime != null" >
        #{secTime,jdbcType=BIGINT},
      </if>
      <if test="enable != null" >
        #{enable,jdbcType=BIT},
      </if>
      <if test="recTime != null" >
        #{recTime,jdbcType=TIMESTAMP},
      </if>
    </trim>
  </insert>
  <update id="updateByPrimaryKeySelective" parameterType="cn.runsa.crmapp.common.entity.ApiAccount" >
    <!--
      WARNING - @mbggenerated
      This element is automatically generated by MyBatis Generator, do not modify.
    -->
    update crm_api_account
    <set >
      <if test="apiType != null" >
        `API_TYPE` = #{apiType,jdbcType=VARCHAR},
      </if>
      <if test="apiSec != null" >
        `API_SEC` = #{apiSec,jdbcType=VARCHAR},
      </if>
      <if test="secOld != null" >
        `SEC_OLD` = #{secOld,jdbcType=VARCHAR},
      </if>
      <if test="secTime != null" >
        `SEC_TIME` = #{secTime,jdbcType=BIGINT},
      </if>
      <if test="enable != null" >
        `ENABLE` = #{enable,jdbcType=BIT},
      </if>
      <if test="recTime != null" >
        `REC_TIME` = #{recTime,jdbcType=TIMESTAMP},
      </if>
    </set>
    where `API_ID` = #{apiId,jdbcType=VARCHAR}
  </update>
  <update id="updateByPrimaryKey" parameterType="cn.runsa.crmapp.common.entity.ApiAccount" >
    <!--
      WARNING - @mbggenerated
      This element is automatically generated by MyBatis Generator, do not modify.
    -->
    update crm_api_account
    set `API_TYPE` = #{apiType,jdbcType=VARCHAR},
      `API_SEC` = #{apiSec,jdbcType=VARCHAR},
      `SEC_OLD` = #{secOld,jdbcType=VARCHAR},
      `SEC_TIME` = #{secTime,jdbcType=BIGINT},
      `ENABLE` = #{enable,jdbcType=BIT},
      `REC_TIME` = #{recTime,jdbcType=TIMESTAMP}
    where `API_ID` = #{apiId,jdbcType=VARCHAR}
  </update>
</mapper>