|
|
<?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.tianbo.analysis.dao.DOMTRANSITMapper" >
|
|
|
<resultMap id="BaseResultMap" type="com.tianbo.analysis.model.DOMTRANSIT" >
|
|
|
<id column="ID" property="id" jdbcType="VARCHAR" />
|
|
|
<result column="TRANSIT_TYPE" property="transitType" jdbcType="VARCHAR" />
|
|
|
<result column="PIECE" property="piece" jdbcType="DECIMAL" />
|
|
|
<result column="WEIGHT" property="weight" jdbcType="DECIMAL" />
|
|
|
<result column="ORIGIN_STATION" property="originStation" jdbcType="VARCHAR" />
|
|
|
<result column="DESTINATION_STATION" property="destinationStation" jdbcType="VARCHAR" />
|
|
|
<result column="GOODSDESEN" property="goodsdesen" jdbcType="VARCHAR" />
|
|
|
<result column="GOODSDESCN" property="goodsdescn" jdbcType="VARCHAR" />
|
|
|
<result column="PACK" property="pack" jdbcType="VARCHAR" />
|
|
|
<result column="ORIGIN_MASTERWAYBILL" property="originMasterwaybill" jdbcType="VARCHAR" />
|
|
|
<result column="ORIGIN_HOUSEWAYBILL" property="originHousewaybill" jdbcType="VARCHAR" />
|
|
|
<result column="ORIGIN_FLIGHTNO" property="originFlightno" jdbcType="VARCHAR" />
|
|
|
<result column="ORIGIN_FLIGHTDATE" property="originFlightdate" jdbcType="TIMESTAMP" />
|
|
|
<result column="TRANS_MASTERWAYBILL" property="transMasterwaybill" jdbcType="VARCHAR" />
|
|
|
<result column="TRANS_HOUSEWAYBILL" property="transHousewaybill" jdbcType="VARCHAR" />
|
|
|
<result column="TRANS_FLIGHTNO" property="transFlightno" jdbcType="VARCHAR" />
|
|
|
<result column="TRANS_FLIGHTDATE" property="transFlightdate" jdbcType="TIMESTAMP" />
|
|
|
<result column="CREATE_DATE" property="createDate" jdbcType="TIMESTAMP" />
|
|
|
<result column="MODIFY_TIME" property="modifyTime" jdbcType="TIMESTAMP" />
|
|
|
<result column="MODIFY_NAME" property="modifyName" jdbcType="VARCHAR" />
|
|
|
<result column="AGENT_NAME" property="agentName" jdbcType="VARCHAR" />
|
|
|
<result column="AGENT_CODE" property="agentCode" jdbcType="VARCHAR" />
|
|
|
<result column="USER_NAME" property="userName" jdbcType="VARCHAR" />
|
|
|
<result column="USER_REAL_NAME" property="userRealName" jdbcType="VARCHAR" />
|
|
|
<result column="USER_TEL" property="userTel" jdbcType="VARCHAR" />
|
|
|
<result column="STATUS" property="status" jdbcType="DECIMAL" />
|
|
|
<result column="APPROVER_ACCOUNT" property="approverAccount" jdbcType="VARCHAR" />
|
|
|
<result column="APPROVER_DATE" property="approverDate" jdbcType="VARCHAR" />
|
|
|
<result column="APPROVER_RESOULT" property="approverResoult" jdbcType="VARCHAR" />
|
|
|
</resultMap>
|
|
|
<sql id="Base_Column_List" >
|
|
|
ID, TRANSIT_TYPE, PIECE, WEIGHT, ORIGIN_STATION, DESTINATION_STATION, GOODSDESEN,
|
|
|
GOODSDESCN, PACK, ORIGIN_MASTERWAYBILL, ORIGIN_HOUSEWAYBILL, ORIGIN_FLIGHTNO, ORIGIN_FLIGHTDATE,
|
|
|
TRANS_MASTERWAYBILL, TRANS_HOUSEWAYBILL, TRANS_FLIGHTNO, TRANS_FLIGHTDATE, CREATE_DATE,
|
|
|
MODIFY_TIME, MODIFY_NAME, AGENT_NAME, AGENT_CODE, USER_NAME, USER_REAL_NAME, USER_TEL,
|
|
|
STATUS, APPROVER_ACCOUNT, APPROVER_DATE, APPROVER_RESOULT
|
|
|
</sql>
|
|
|
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.String" >
|
|
|
select
|
|
|
<include refid="Base_Column_List" />
|
|
|
from DOMTRANSIT
|
|
|
where ID = #{id,jdbcType=VARCHAR}
|
|
|
</select>
|
|
|
<select id="selectList" resultMap="BaseResultMap" parameterType="com.tianbo.analysis.model.DOMTRANSIT" >
|
|
|
select
|
|
|
<include refid="Base_Column_List" />
|
|
|
from DOMTRANSIT
|
|
|
<where>
|
|
|
<if test="transitType != null">
|
|
|
TRANSIT_TYPE = #{transitType,jdbcType=VARCHAR}
|
|
|
</if>
|
|
|
<if test="originMasterwaybill !=null and originMasterwaybill != ''">
|
|
|
AND ORIGIN_MASTERWAYBILL = #{originMasterwaybill,jdbcType=VARCHAR}
|
|
|
</if>
|
|
|
<if test="originHousewaybill !=null and originHousewaybill !=''">
|
|
|
AND ORIGIN_HOUSEWAYBILL = #{originHousewaybill,jdbcType=VARCHAR}
|
|
|
</if>
|
|
|
<if test="originFlightno !=null and originFlightno !=''">
|
|
|
AND ORIGIN_FLIGHTNO = #{originFlightno,jdbcType=VARCHAR}
|
|
|
</if>
|
|
|
<if test="originFlightdate != null and originFlightdate !=''">
|
|
|
AND ORIGIN_FLIGHTDATE = to_date(#{originFlightdate}, 'YYYY-MM-DD')
|
|
|
</if>
|
|
|
<if test="transMasterwaybill != null and transMasterwaybill !='' ">
|
|
|
AND TRANS_MASTERWAYBILL = #{transMasterwaybill,jdbcType=VARCHAR}
|
|
|
</if>
|
|
|
<if test="transHousewaybill != null and transHousewaybill !='' ">
|
|
|
AND TRANS_FLIGHTNO = #{transHousewaybill,jdbcType=VARCHAR}
|
|
|
</if>
|
|
|
<if test="transFlightno !=null and originFltransFlightnoightno !=''">
|
|
|
AND ORIGIN_FLIGHTNO = #{transFlightno,jdbcType=VARCHAR}
|
|
|
</if>
|
|
|
<if test="transFlightdate !=null and transFlightdate !=''">
|
|
|
AND TRANS_FLIGHTDATE = to_date(#{transFlightdate}, 'YYYY-MM-DD')
|
|
|
</if>
|
|
|
<if test="userName !=null and userName !=''">
|
|
|
AND USER_NAME = #{userName,jdbcType=VARCHAR}
|
|
|
</if>
|
|
|
<if test="agentCode !=null and agentCode !=''">
|
|
|
AND AGENT_CODE = #{agentCode,jdbcType=VARCHAR}
|
|
|
</if>
|
|
|
<if test="agentName !=null and agentName !=''">
|
|
|
AND AGENT_NAME like CONCAT('%',#{agentName,jdbcType=VARCHAR},'%')
|
|
|
</if>
|
|
|
</where>
|
|
|
</select>
|
|
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.String" >
|
|
|
delete from DOMTRANSIT
|
|
|
where ID = #{id,jdbcType=VARCHAR}
|
|
|
</delete>
|
|
|
<insert id="insert" parameterType="com.tianbo.analysis.model.DOMTRANSIT" >
|
|
|
insert into DOMTRANSIT (ID, TRANSIT_TYPE, PIECE,
|
|
|
WEIGHT, ORIGIN_STATION, DESTINATION_STATION,
|
|
|
GOODSDESEN, GOODSDESCN, PACK,
|
|
|
ORIGIN_MASTERWAYBILL, ORIGIN_HOUSEWAYBILL,
|
|
|
ORIGIN_FLIGHTNO, ORIGIN_FLIGHTDATE, TRANS_MASTERWAYBILL,
|
|
|
TRANS_HOUSEWAYBILL, TRANS_FLIGHTNO, TRANS_FLIGHTDATE,
|
|
|
CREATE_DATE, MODIFY_TIME, MODIFY_NAME,
|
|
|
AGENT_NAME, AGENT_CODE, USER_NAME,
|
|
|
USER_REAL_NAME, USER_TEL, STATUS,
|
|
|
APPROVER_ACCOUNT, APPROVER_DATE, APPROVER_RESOULT
|
|
|
)
|
|
|
values (#{id,jdbcType=VARCHAR}, #{transitType,jdbcType=VARCHAR}, #{piece,jdbcType=DECIMAL},
|
|
|
#{weight,jdbcType=DECIMAL}, #{originStation,jdbcType=VARCHAR}, #{destinationStation,jdbcType=VARCHAR},
|
|
|
#{goodsdesen,jdbcType=VARCHAR}, #{goodsdescn,jdbcType=VARCHAR}, #{pack,jdbcType=VARCHAR},
|
|
|
#{originMasterwaybill,jdbcType=VARCHAR}, #{originHousewaybill,jdbcType=VARCHAR},
|
|
|
#{originFlightno,jdbcType=VARCHAR}, #{originFlightdate,jdbcType=TIMESTAMP}, #{transMasterwaybill,jdbcType=VARCHAR},
|
|
|
#{transHousewaybill,jdbcType=VARCHAR}, #{transFlightno,jdbcType=VARCHAR}, #{transFlightdate,jdbcType=TIMESTAMP},
|
|
|
#{createDate,jdbcType=TIMESTAMP}, #{modifyTime,jdbcType=TIMESTAMP}, #{modifyName,jdbcType=VARCHAR},
|
|
|
#{agentName,jdbcType=VARCHAR}, #{agentCode,jdbcType=VARCHAR}, #{userName,jdbcType=VARCHAR},
|
|
|
#{userRealName,jdbcType=VARCHAR}, #{userTel,jdbcType=VARCHAR}, #{status,jdbcType=DECIMAL},
|
|
|
#{approverAccount,jdbcType=VARCHAR}, #{approverDate,jdbcType=VARCHAR}, #{approverResoult,jdbcType=VARCHAR}
|
|
|
)
|
|
|
</insert>
|
|
|
<insert id="insertSelective" parameterType="com.tianbo.analysis.model.DOMTRANSIT" >
|
|
|
insert into DOMTRANSIT
|
|
|
<trim prefix="(" suffix=")" suffixOverrides="," >
|
|
|
<if test="id != null" >
|
|
|
ID,
|
|
|
</if>
|
|
|
<if test="transitType != null" >
|
|
|
TRANSIT_TYPE,
|
|
|
</if>
|
|
|
<if test="piece != null" >
|
|
|
PIECE,
|
|
|
</if>
|
|
|
<if test="weight != null" >
|
|
|
WEIGHT,
|
|
|
</if>
|
|
|
<if test="originStation != null" >
|
|
|
ORIGIN_STATION,
|
|
|
</if>
|
|
|
<if test="destinationStation != null" >
|
|
|
DESTINATION_STATION,
|
|
|
</if>
|
|
|
<if test="goodsdesen != null" >
|
|
|
GOODSDESEN,
|
|
|
</if>
|
|
|
<if test="goodsdescn != null" >
|
|
|
GOODSDESCN,
|
|
|
</if>
|
|
|
<if test="pack != null" >
|
|
|
PACK,
|
|
|
</if>
|
|
|
<if test="originMasterwaybill != null" >
|
|
|
ORIGIN_MASTERWAYBILL,
|
|
|
</if>
|
|
|
<if test="originHousewaybill != null" >
|
|
|
ORIGIN_HOUSEWAYBILL,
|
|
|
</if>
|
|
|
<if test="originFlightno != null" >
|
|
|
ORIGIN_FLIGHTNO,
|
|
|
</if>
|
|
|
<if test="originFlightdate != null" >
|
|
|
ORIGIN_FLIGHTDATE,
|
|
|
</if>
|
|
|
<if test="transMasterwaybill != null" >
|
|
|
TRANS_MASTERWAYBILL,
|
|
|
</if>
|
|
|
<if test="transHousewaybill != null" >
|
|
|
TRANS_HOUSEWAYBILL,
|
|
|
</if>
|
|
|
<if test="transFlightno != null" >
|
|
|
TRANS_FLIGHTNO,
|
|
|
</if>
|
|
|
<if test="transFlightdate != null" >
|
|
|
TRANS_FLIGHTDATE,
|
|
|
</if>
|
|
|
<if test="createDate != null" >
|
|
|
CREATE_DATE,
|
|
|
</if>
|
|
|
<if test="modifyTime != null" >
|
|
|
MODIFY_TIME,
|
|
|
</if>
|
|
|
<if test="modifyName != null" >
|
|
|
MODIFY_NAME,
|
|
|
</if>
|
|
|
<if test="agentName != null" >
|
|
|
AGENT_NAME,
|
|
|
</if>
|
|
|
<if test="agentCode != null" >
|
|
|
AGENT_CODE,
|
|
|
</if>
|
|
|
<if test="userName != null" >
|
|
|
USER_NAME,
|
|
|
</if>
|
|
|
<if test="userRealName != null" >
|
|
|
USER_REAL_NAME,
|
|
|
</if>
|
|
|
<if test="userTel != null" >
|
|
|
USER_TEL,
|
|
|
</if>
|
|
|
<if test="status != null" >
|
|
|
STATUS,
|
|
|
</if>
|
|
|
<if test="approverAccount != null" >
|
|
|
APPROVER_ACCOUNT,
|
|
|
</if>
|
|
|
<if test="approverDate != null" >
|
|
|
APPROVER_DATE,
|
|
|
</if>
|
|
|
<if test="approverResoult != null" >
|
|
|
APPROVER_RESOULT,
|
|
|
</if>
|
|
|
</trim>
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides="," >
|
|
|
<if test="id != null" >
|
|
|
#{id,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="transitType != null" >
|
|
|
#{transitType,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="piece != null" >
|
|
|
#{piece,jdbcType=DECIMAL},
|
|
|
</if>
|
|
|
<if test="weight != null" >
|
|
|
#{weight,jdbcType=DECIMAL},
|
|
|
</if>
|
|
|
<if test="originStation != null" >
|
|
|
#{originStation,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="destinationStation != null" >
|
|
|
#{destinationStation,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="goodsdesen != null" >
|
|
|
#{goodsdesen,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="goodsdescn != null" >
|
|
|
#{goodsdescn,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="pack != null" >
|
|
|
#{pack,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="originMasterwaybill != null" >
|
|
|
#{originMasterwaybill,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="originHousewaybill != null" >
|
|
|
#{originHousewaybill,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="originFlightno != null" >
|
|
|
#{originFlightno,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="originFlightdate != null" >
|
|
|
#{originFlightdate,jdbcType=TIMESTAMP},
|
|
|
</if>
|
|
|
<if test="transMasterwaybill != null" >
|
|
|
#{transMasterwaybill,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="transHousewaybill != null" >
|
|
|
#{transHousewaybill,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="transFlightno != null" >
|
|
|
#{transFlightno,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="transFlightdate != null" >
|
|
|
#{transFlightdate,jdbcType=TIMESTAMP},
|
|
|
</if>
|
|
|
<if test="createDate != null" >
|
|
|
#{createDate,jdbcType=TIMESTAMP},
|
|
|
</if>
|
|
|
<if test="modifyTime != null" >
|
|
|
#{modifyTime,jdbcType=TIMESTAMP},
|
|
|
</if>
|
|
|
<if test="modifyName != null" >
|
|
|
#{modifyName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="agentName != null" >
|
|
|
#{agentName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="agentCode != null" >
|
|
|
#{agentCode,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="userName != null" >
|
|
|
#{userName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="userRealName != null" >
|
|
|
#{userRealName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="userTel != null" >
|
|
|
#{userTel,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="status != null" >
|
|
|
#{status,jdbcType=DECIMAL},
|
|
|
</if>
|
|
|
<if test="approverAccount != null" >
|
|
|
#{approverAccount,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="approverDate != null" >
|
|
|
#{approverDate,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="approverResoult != null" >
|
|
|
#{approverResoult,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
</trim>
|
|
|
</insert>
|
|
|
<update id="updateByPrimaryKeySelective" parameterType="com.tianbo.analysis.model.DOMTRANSIT" >
|
|
|
update DOMTRANSIT
|
|
|
<set >
|
|
|
<if test="transitType != null" >
|
|
|
TRANSIT_TYPE = #{transitType,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="piece != null" >
|
|
|
PIECE = #{piece,jdbcType=DECIMAL},
|
|
|
</if>
|
|
|
<if test="weight != null" >
|
|
|
WEIGHT = #{weight,jdbcType=DECIMAL},
|
|
|
</if>
|
|
|
<if test="originStation != null" >
|
|
|
ORIGIN_STATION = #{originStation,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="destinationStation != null" >
|
|
|
DESTINATION_STATION = #{destinationStation,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="goodsdesen != null" >
|
|
|
GOODSDESEN = #{goodsdesen,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="goodsdescn != null" >
|
|
|
GOODSDESCN = #{goodsdescn,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="pack != null" >
|
|
|
PACK = #{pack,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="originMasterwaybill != null" >
|
|
|
ORIGIN_MASTERWAYBILL = #{originMasterwaybill,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="originHousewaybill != null" >
|
|
|
ORIGIN_HOUSEWAYBILL = #{originHousewaybill,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="originFlightno != null" >
|
|
|
ORIGIN_FLIGHTNO = #{originFlightno,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="originFlightdate != null" >
|
|
|
ORIGIN_FLIGHTDATE = #{originFlightdate,jdbcType=TIMESTAMP},
|
|
|
</if>
|
|
|
<if test="transMasterwaybill != null" >
|
|
|
TRANS_MASTERWAYBILL = #{transMasterwaybill,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="transHousewaybill != null" >
|
|
|
TRANS_HOUSEWAYBILL = #{transHousewaybill,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="transFlightno != null" >
|
|
|
TRANS_FLIGHTNO = #{transFlightno,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="transFlightdate != null" >
|
|
|
TRANS_FLIGHTDATE = #{transFlightdate,jdbcType=TIMESTAMP},
|
|
|
</if>
|
|
|
<if test="createDate != null" >
|
|
|
CREATE_DATE = #{createDate,jdbcType=TIMESTAMP},
|
|
|
</if>
|
|
|
<if test="modifyTime != null" >
|
|
|
MODIFY_TIME = #{modifyTime,jdbcType=TIMESTAMP},
|
|
|
</if>
|
|
|
<if test="modifyName != null" >
|
|
|
MODIFY_NAME = #{modifyName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="agentName != null" >
|
|
|
AGENT_NAME = #{agentName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="agentCode != null" >
|
|
|
AGENT_CODE = #{agentCode,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="userName != null" >
|
|
|
USER_NAME = #{userName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="userRealName != null" >
|
|
|
USER_REAL_NAME = #{userRealName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="userTel != null" >
|
|
|
USER_TEL = #{userTel,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="status != null" >
|
|
|
STATUS = #{status,jdbcType=DECIMAL},
|
|
|
</if>
|
|
|
<if test="approverAccount != null" >
|
|
|
APPROVER_ACCOUNT = #{approverAccount,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="approverDate != null" >
|
|
|
APPROVER_DATE = #{approverDate,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="approverResoult != null" >
|
|
|
APPROVER_RESOULT = #{approverResoult,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
</set>
|
|
|
where ID = #{id,jdbcType=VARCHAR}
|
|
|
</update>
|
|
|
<update id="updateByPrimaryKey" parameterType="com.tianbo.analysis.model.DOMTRANSIT" >
|
|
|
update DOMTRANSIT
|
|
|
set TRANSIT_TYPE = #{transitType,jdbcType=VARCHAR},
|
|
|
PIECE = #{piece,jdbcType=DECIMAL},
|
|
|
WEIGHT = #{weight,jdbcType=DECIMAL},
|
|
|
ORIGIN_STATION = #{originStation,jdbcType=VARCHAR},
|
|
|
DESTINATION_STATION = #{destinationStation,jdbcType=VARCHAR},
|
|
|
GOODSDESEN = #{goodsdesen,jdbcType=VARCHAR},
|
|
|
GOODSDESCN = #{goodsdescn,jdbcType=VARCHAR},
|
|
|
PACK = #{pack,jdbcType=VARCHAR},
|
|
|
ORIGIN_MASTERWAYBILL = #{originMasterwaybill,jdbcType=VARCHAR},
|
|
|
ORIGIN_HOUSEWAYBILL = #{originHousewaybill,jdbcType=VARCHAR},
|
|
|
ORIGIN_FLIGHTNO = #{originFlightno,jdbcType=VARCHAR},
|
|
|
ORIGIN_FLIGHTDATE = #{originFlightdate,jdbcType=TIMESTAMP},
|
|
|
TRANS_MASTERWAYBILL = #{transMasterwaybill,jdbcType=VARCHAR},
|
|
|
TRANS_HOUSEWAYBILL = #{transHousewaybill,jdbcType=VARCHAR},
|
|
|
TRANS_FLIGHTNO = #{transFlightno,jdbcType=VARCHAR},
|
|
|
TRANS_FLIGHTDATE = #{transFlightdate,jdbcType=TIMESTAMP},
|
|
|
CREATE_DATE = #{createDate,jdbcType=TIMESTAMP},
|
|
|
MODIFY_TIME = #{modifyTime,jdbcType=TIMESTAMP},
|
|
|
MODIFY_NAME = #{modifyName,jdbcType=VARCHAR},
|
|
|
AGENT_NAME = #{agentName,jdbcType=VARCHAR},
|
|
|
AGENT_CODE = #{agentCode,jdbcType=VARCHAR},
|
|
|
USER_NAME = #{userName,jdbcType=VARCHAR},
|
|
|
USER_REAL_NAME = #{userRealName,jdbcType=VARCHAR},
|
|
|
USER_TEL = #{userTel,jdbcType=VARCHAR},
|
|
|
STATUS = #{status,jdbcType=DECIMAL},
|
|
|
APPROVER_ACCOUNT = #{approverAccount,jdbcType=VARCHAR},
|
|
|
APPROVER_DATE = #{approverDate,jdbcType=VARCHAR},
|
|
|
APPROVER_RESOULT = #{approverResoult,jdbcType=VARCHAR}
|
|
|
where ID = #{id,jdbcType=VARCHAR}
|
|
|
</update>
|
|
|
</mapper> |
...
|
...
|
|