FWBAssociatedPartyMapper.xml 5.9 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.example.demo.mapper.FWBAssociatedPartyMapper" >
  <resultMap id="BaseResultMap" type="com.example.demo.model.FWBAssociatedParty" >
    <id column="ID" property="id" jdbcType="INTEGER" />
    <result column="PrimaryID" property="primaryid" jdbcType="VARCHAR" />
    <result column="Name" property="name" jdbcType="VARCHAR" />
    <result column="AccountID" property="accountid" jdbcType="VARCHAR" />
    <result column="RoleCode" property="rolecode" jdbcType="VARCHAR" />
    <result column="Role" property="role" jdbcType="VARCHAR" />
    <result column="CityName" property="cityname" jdbcType="VARCHAR" />
    <result column="CountryID" property="countryid" jdbcType="VARCHAR" />
    <result column="AWBNumber" property="awbnumber" jdbcType="VARCHAR" />
    <result column="FlightDate" property="flightdate" jdbcType="TIMESTAMP" />
    <result column="FlightNumber" property="flightnumber" jdbcType="VARCHAR" />
  </resultMap>
  <sql id="Base_Column_List" >
    ID, PrimaryID, Name, AccountID, RoleCode, Role, CityName, CountryID, AWBNumber, FlightDate,
    FlightNumber
  </sql>
  <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
    select
    <include refid="Base_Column_List" />
    from AssociatedParty
    where ID = #{id,jdbcType=INTEGER}
  </select>
  <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
    delete from AssociatedParty
    where ID = #{id,jdbcType=INTEGER}
  </delete>
  <insert id="insert" parameterType="com.example.demo.model.FWBAssociatedParty" >
    insert into AssociatedParty (ID, PrimaryID, Name,
    AccountID, RoleCode, Role,
    CityName, CountryID, AWBNumber,
    FlightDate, FlightNumber)
    values (#{id,jdbcType=INTEGER}, #{primaryid,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR},
    #{accountid,jdbcType=VARCHAR}, #{rolecode,jdbcType=VARCHAR}, #{role,jdbcType=VARCHAR},
    #{cityname,jdbcType=VARCHAR}, #{countryid,jdbcType=VARCHAR}, #{awbnumber,jdbcType=VARCHAR},
    #{flightdate,jdbcType=TIMESTAMP}, #{flightnumber,jdbcType=VARCHAR})
  </insert>
  <insert id="insertSelective" parameterType="com.example.demo.model.FWBAssociatedParty" >
    insert into AssociatedParty
    <trim prefix="(" suffix=")" suffixOverrides="," >
      <if test="id != null" >
        ID,
      </if>
      <if test="primaryid != null" >
        PrimaryID,
      </if>
      <if test="name != null" >
        Name,
      </if>
      <if test="accountid != null" >
        AccountID,
      </if>
      <if test="rolecode != null" >
        RoleCode,
      </if>
      <if test="role != null" >
        Role,
      </if>
      <if test="cityname != null" >
        CityName,
      </if>
      <if test="countryid != null" >
        CountryID,
      </if>
      <if test="awbnumber != null" >
        AWBNumber,
      </if>
      <if test="flightdate != null" >
        FlightDate,
      </if>
      <if test="flightnumber != null" >
        FlightNumber,
      </if>
    </trim>
    <trim prefix="values (" suffix=")" suffixOverrides="," >
      <if test="id != null" >
        #{id,jdbcType=INTEGER},
      </if>
      <if test="primaryid != null" >
        #{primaryid,jdbcType=VARCHAR},
      </if>
      <if test="name != null" >
        #{name,jdbcType=VARCHAR},
      </if>
      <if test="accountid != null" >
        #{accountid,jdbcType=VARCHAR},
      </if>
      <if test="rolecode != null" >
        #{rolecode,jdbcType=VARCHAR},
      </if>
      <if test="role != null" >
        #{role,jdbcType=VARCHAR},
      </if>
      <if test="cityname != null" >
        #{cityname,jdbcType=VARCHAR},
      </if>
      <if test="countryid != null" >
        #{countryid,jdbcType=VARCHAR},
      </if>
      <if test="awbnumber != null" >
        #{awbnumber,jdbcType=VARCHAR},
      </if>
      <if test="flightdate != null" >
        #{flightdate,jdbcType=TIMESTAMP},
      </if>
      <if test="flightnumber != null" >
        #{flightnumber,jdbcType=VARCHAR},
      </if>
    </trim>
  </insert>
  <update id="updateByPrimaryKeySelective" parameterType="com.example.demo.model.FWBAssociatedParty" >
    update AssociatedParty
    <set >
      <if test="primaryid != null" >
        PrimaryID = #{primaryid,jdbcType=VARCHAR},
      </if>
      <if test="name != null" >
        Name = #{name,jdbcType=VARCHAR},
      </if>
      <if test="accountid != null" >
        AccountID = #{accountid,jdbcType=VARCHAR},
      </if>
      <if test="rolecode != null" >
        RoleCode = #{rolecode,jdbcType=VARCHAR},
      </if>
      <if test="role != null" >
        Role = #{role,jdbcType=VARCHAR},
      </if>
      <if test="cityname != null" >
        CityName = #{cityname,jdbcType=VARCHAR},
      </if>
      <if test="countryid != null" >
        CountryID = #{countryid,jdbcType=VARCHAR},
      </if>
      <if test="awbnumber != null" >
        AWBNumber = #{awbnumber,jdbcType=VARCHAR},
      </if>
      <if test="flightdate != null" >
        FlightDate = #{flightdate,jdbcType=TIMESTAMP},
      </if>
      <if test="flightnumber != null" >
        FlightNumber = #{flightnumber,jdbcType=VARCHAR},
      </if>
    </set>
    where ID = #{id,jdbcType=INTEGER}
  </update>
  <update id="updateByPrimaryKey" parameterType="com.example.demo.model.FWBAssociatedParty" >
    update AssociatedParty
    set PrimaryID = #{primaryid,jdbcType=VARCHAR},
      Name = #{name,jdbcType=VARCHAR},
      AccountID = #{accountid,jdbcType=VARCHAR},
      RoleCode = #{rolecode,jdbcType=VARCHAR},
      Role = #{role,jdbcType=VARCHAR},
      CityName = #{cityname,jdbcType=VARCHAR},
      CountryID = #{countryid,jdbcType=VARCHAR},
      AWBNumber = #{awbnumber,jdbcType=VARCHAR},
      FlightDate = #{flightdate,jdbcType=TIMESTAMP},
      FlightNumber = #{flightnumber,jdbcType=VARCHAR}
    where ID = #{id,jdbcType=INTEGER}
  </update>
</mapper>