...
|
...
|
@@ -24,6 +24,9 @@ |
|
|
<result column="cusResStatus" property="cusresstatus" jdbcType="VARCHAR" />
|
|
|
<result column="operUserName" property="operusername" jdbcType="VARCHAR" />
|
|
|
<result column="operSystemName" property="opersystemname" jdbcType="VARCHAR" />
|
|
|
<result column="operReason" jdbcType="VARCHAR" property="operreason" />
|
|
|
<result column="operPerson" jdbcType="VARCHAR" property="operperson" />
|
|
|
<result column="operTel" jdbcType="VARCHAR" property="opertel" />
|
|
|
</resultMap>
|
|
|
<resultMap id="ResultMapWithBLOBs" type="com.sunyo.wlpt.base.model.NMMS_CUSTOM_RESPONSE" extends="BaseResultMap" >
|
|
|
<result column="cusResText" property="cusrestext" jdbcType="LONGVARCHAR" />
|
...
|
...
|
@@ -56,7 +59,7 @@ |
|
|
cusSenderId, cusReciverId, cusVersion,
|
|
|
cusFunctionCode, cusResRcvTime, cusResSendTime,
|
|
|
cusResCode, cusResStatus, operUserName,
|
|
|
operSystemName, cusResText)
|
|
|
operSystemName, cusResText,operReason,operPerson,operTel)
|
|
|
values (#{id,jdbcType=VARCHAR}, #{flightdate,jdbcType=DATE}, #{flightno,jdbcType=VARCHAR},
|
|
|
#{carrier,jdbcType=VARCHAR}, #{awbano,jdbcType=VARCHAR}, #{awbhno,jdbcType=VARCHAR},
|
|
|
#{bustype,jdbcType=VARCHAR}, #{busdate,jdbcType=TIMESTAMP}, #{busweight,jdbcType=DECIMAL},
|
...
|
...
|
@@ -64,7 +67,8 @@ |
|
|
#{cussenderid,jdbcType=VARCHAR}, #{cusreciverid,jdbcType=VARCHAR}, #{cusversion,jdbcType=VARCHAR},
|
|
|
#{cusfunctioncode,jdbcType=VARCHAR}, #{cusresrcvtime,jdbcType=TIMESTAMP}, #{cusressendtime,jdbcType=TIMESTAMP},
|
|
|
#{cusrescode,jdbcType=VARCHAR}, #{cusresstatus,jdbcType=VARCHAR}, #{operusername,jdbcType=VARCHAR},
|
|
|
#{opersystemname,jdbcType=VARCHAR}, #{cusrestext,jdbcType=LONGVARCHAR})
|
|
|
#{opersystemname,jdbcType=VARCHAR}, #{cusrestext,jdbcType=LONGVARCHAR}, #{operreason,jdbcType=VARCHAR},
|
|
|
#{operperson,jdbcType=VARCHAR}, #{opertel,jdbcType=VARCHAR})
|
|
|
</insert>
|
|
|
<insert id="insertSelective" parameterType="com.sunyo.wlpt.base.model.NMMS_CUSTOM_RESPONSE" >
|
|
|
insert into CUSTOM_RESPONSE
|
...
|
...
|
|