作者 朱兆平

init

包含了舱单与运单实体
正在显示 48 个修改的文件 包含 7594 行增加0 行删除
  1 +# 物流平台实体公用包
  2 +
  3 +* WLPT_NMMS新舱单实体
  4 +* WLPT_AWB实体
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<project xmlns="http://maven.apache.org/POM/4.0.0"
  3 + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4 + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5 + <modelVersion>4.0.0</modelVersion>
  6 +
  7 + <groupId>com.sunyo.wlpt</groupId>
  8 + <artifactId>base</artifactId>
  9 + <version>1.0-SNAPSHOT</version>
  10 +
  11 +
  12 + <build>
  13 + <plugins>
  14 + <plugin>
  15 + <groupId>org.springframework.boot</groupId>
  16 + <artifactId>spring-boot-maven-plugin</artifactId>
  17 + <configuration>
  18 + <includeSystemScope>true</includeSystemScope>
  19 + </configuration>
  20 + </plugin>
  21 + <!-- mybatis generator 自动生成代码插件 -->
  22 + <plugin>
  23 + <groupId>org.mybatis.generator</groupId>
  24 + <artifactId>mybatis-generator-maven-plugin</artifactId>
  25 + <version>1.3.2</version>
  26 + <configuration>
  27 + <configurationFile>${basedir}/src/main/resources/generator/generatorConfig.xml</configurationFile>
  28 + <overwrite>true</overwrite>
  29 + <verbose>true</verbose>
  30 + </configuration>
  31 + </plugin>
  32 + </plugins>
  33 + </build>
  34 +</project>
  1 +package com.sunyo.wlpt.base.dao;
  2 +
  3 +import com.sunyo.wlpt.base.model.AWB_AWBINFO;
  4 +
  5 +public interface AWB_AWBINFOMapper {
  6 + int deleteByPrimaryKey(String billid);
  7 +
  8 + int insert(AWB_AWBINFO record);
  9 +
  10 + int insertSelective(AWB_AWBINFO record);
  11 +
  12 + AWB_AWBINFO selectByPrimaryKey(String billid);
  13 +
  14 + int updateByPrimaryKeySelective(AWB_AWBINFO record);
  15 +
  16 + int updateByPrimaryKey(AWB_AWBINFO record);
  17 +}
  1 +package com.sunyo.wlpt.base.dao;
  2 +
  3 +import com.sunyo.wlpt.base.model.CONFIG_AIRSTATION_CUSTOMCODE;
  4 +
  5 +public interface CONFIG_AIRSTATION_CUSTOMCODEMapper {
  6 + int insert(CONFIG_AIRSTATION_CUSTOMCODE record);
  7 +
  8 + int insertSelective(CONFIG_AIRSTATION_CUSTOMCODE record);
  9 +}
  1 +package com.sunyo.wlpt.base.dao;
  2 +
  3 +import com.sunyo.wlpt.base.model.CONFIG_USER_CARRIER;
  4 +
  5 +public interface CONFIG_USER_CARRIERMapper {
  6 + int insert(CONFIG_USER_CARRIER record);
  7 +
  8 + int insertSelective(CONFIG_USER_CARRIER record);
  9 +}
  1 +package com.sunyo.wlpt.base.dao;
  2 +
  3 +import com.sunyo.wlpt.base.model.CONFIG_USER_CUSTOMCODE;
  4 +
  5 +public interface CONFIG_USER_CUSTOMCODEMapper {
  6 + int insert(CONFIG_USER_CUSTOMCODE record);
  7 +
  8 + int insertSelective(CONFIG_USER_CUSTOMCODE record);
  9 +}
  1 +package com.sunyo.wlpt.base.dao;
  2 +
  3 +import com.sunyo.wlpt.base.model.CONFIG_USER_EnterpriseCode;
  4 +
  5 +public interface CONFIG_USER_EnterpriseCodeMapper {
  6 + int insert(CONFIG_USER_EnterpriseCode record);
  7 +
  8 + int insertSelective(CONFIG_USER_EnterpriseCode record);
  9 +}
  1 +package com.sunyo.wlpt.base.dao;
  2 +
  3 +import com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT1201;
  4 +
  5 +public interface NMMS_CUSTOM_MT1201Mapper {
  6 + int deleteByPrimaryKey(String uuid);
  7 +
  8 + int insert(NMMS_CUSTOM_MT1201 record);
  9 +
  10 + int insertSelective(NMMS_CUSTOM_MT1201 record);
  11 +
  12 + NMMS_CUSTOM_MT1201 selectByPrimaryKey(String uuid);
  13 +
  14 + int updateByPrimaryKeySelective(NMMS_CUSTOM_MT1201 record);
  15 +
  16 + int updateByPrimaryKey(NMMS_CUSTOM_MT1201 record);
  17 +}
  1 +package com.sunyo.wlpt.base.dao;
  2 +
  3 +import com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT2201;
  4 +
  5 +public interface NMMS_CUSTOM_MT2201Mapper {
  6 + int deleteByPrimaryKey(String uuid);
  7 +
  8 + int insert(NMMS_CUSTOM_MT2201 record);
  9 +
  10 + int insertSelective(NMMS_CUSTOM_MT2201 record);
  11 +
  12 + NMMS_CUSTOM_MT2201 selectByPrimaryKey(String uuid);
  13 +
  14 + int updateByPrimaryKeySelective(NMMS_CUSTOM_MT2201 record);
  15 +
  16 + int updateByPrimaryKey(NMMS_CUSTOM_MT2201 record);
  17 +}
  1 +package com.sunyo.wlpt.base.dao;
  2 +
  3 +import com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT3201;
  4 +
  5 +public interface NMMS_CUSTOM_MT3201Mapper {
  6 + int deleteByPrimaryKey(String uuid);
  7 +
  8 + int insert(NMMS_CUSTOM_MT3201 record);
  9 +
  10 + int insertSelective(NMMS_CUSTOM_MT3201 record);
  11 +
  12 + NMMS_CUSTOM_MT3201 selectByPrimaryKey(String uuid);
  13 +
  14 + int updateByPrimaryKeySelective(NMMS_CUSTOM_MT3201 record);
  15 +
  16 + int updateByPrimaryKey(NMMS_CUSTOM_MT3201 record);
  17 +}
  1 +package com.sunyo.wlpt.base.dao;
  2 +
  3 +import com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT4201;
  4 +
  5 +public interface NMMS_CUSTOM_MT4201Mapper {
  6 + int deleteByPrimaryKey(String uuid);
  7 +
  8 + int insert(NMMS_CUSTOM_MT4201 record);
  9 +
  10 + int insertSelective(NMMS_CUSTOM_MT4201 record);
  11 +
  12 + NMMS_CUSTOM_MT4201 selectByPrimaryKey(String uuid);
  13 +
  14 + int updateByPrimaryKeySelective(NMMS_CUSTOM_MT4201 record);
  15 +
  16 + int updateByPrimaryKey(NMMS_CUSTOM_MT4201 record);
  17 +}
  1 +package com.sunyo.wlpt.base.dao;
  2 +
  3 +import com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT520X;
  4 +
  5 +public interface NMMS_CUSTOM_MT520XMapper {
  6 + int deleteByPrimaryKey(String uuid);
  7 +
  8 + int insert(NMMS_CUSTOM_MT520X record);
  9 +
  10 + int insertSelective(NMMS_CUSTOM_MT520X record);
  11 +
  12 + NMMS_CUSTOM_MT520X selectByPrimaryKey(String uuid);
  13 +
  14 + int updateByPrimaryKeySelective(NMMS_CUSTOM_MT520X record);
  15 +
  16 + int updateByPrimaryKey(NMMS_CUSTOM_MT520X record);
  17 +}
  1 +package com.sunyo.wlpt.base.dao;
  2 +
  3 +import com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT8205;
  4 +
  5 +public interface NMMS_CUSTOM_MT8205Mapper {
  6 + int deleteByPrimaryKey(String uuid);
  7 +
  8 + int insert(NMMS_CUSTOM_MT8205 record);
  9 +
  10 + int insertSelective(NMMS_CUSTOM_MT8205 record);
  11 +
  12 + NMMS_CUSTOM_MT8205 selectByPrimaryKey(String uuid);
  13 +
  14 + int updateByPrimaryKeySelective(NMMS_CUSTOM_MT8205 record);
  15 +
  16 + int updateByPrimaryKey(NMMS_CUSTOM_MT8205 record);
  17 +}
  1 +package com.sunyo.wlpt.base.dao;
  2 +
  3 +import com.sunyo.wlpt.base.model.NMMS_CUSTOM_RESPONSE;
  4 +
  5 +public interface NMMS_CUSTOM_RESPONSEMapper {
  6 + int deleteByPrimaryKey(String id);
  7 +
  8 + int insert(NMMS_CUSTOM_RESPONSE record);
  9 +
  10 + int insertSelective(NMMS_CUSTOM_RESPONSE record);
  11 +
  12 + NMMS_CUSTOM_RESPONSE selectByPrimaryKey(String id);
  13 +
  14 + int updateByPrimaryKeySelective(NMMS_CUSTOM_RESPONSE record);
  15 +
  16 + int updateByPrimaryKeyWithBLOBs(NMMS_CUSTOM_RESPONSE record);
  17 +
  18 + int updateByPrimaryKey(NMMS_CUSTOM_RESPONSE record);
  19 +}
  1 +package com.sunyo.wlpt.base.dao;
  2 +
  3 +import com.sunyo.wlpt.base.model.NMMS_FFM_INFO;
  4 +
  5 +public interface NMMS_FFM_INFOMapper {
  6 + int deleteByPrimaryKey(String autoid);
  7 +
  8 + int insert(NMMS_FFM_INFO record);
  9 +
  10 + int insertSelective(NMMS_FFM_INFO record);
  11 +
  12 + NMMS_FFM_INFO selectByPrimaryKey(String autoid);
  13 +
  14 + int updateByPrimaryKeySelective(NMMS_FFM_INFO record);
  15 +
  16 + int updateByPrimaryKey(NMMS_FFM_INFO record);
  17 +}
  1 +package com.sunyo.wlpt.base.dao;
  2 +
  3 +import com.sunyo.wlpt.base.model.STATIC_CUSTOMCODE_CUSTOMNAME;
  4 +
  5 +public interface STATIC_CUSTOMCODE_CUSTOMNAMEMapper {
  6 + int insert(STATIC_CUSTOMCODE_CUSTOMNAME record);
  7 +
  8 + int insertSelective(STATIC_CUSTOMCODE_CUSTOMNAME record);
  9 +}
  1 +package com.sunyo.wlpt.base.dao;
  2 +
  3 +import com.sunyo.wlpt.base.model.STATIC_CUSTOM_RESPONSE_BASE;
  4 +
  5 +public interface STATIC_CUSTOM_RESPONSE_BASEMapper {
  6 + int insert(STATIC_CUSTOM_RESPONSE_BASE record);
  7 +
  8 + int insertSelective(STATIC_CUSTOM_RESPONSE_BASE record);
  9 +}
  1 +package com.sunyo.wlpt.base.model;
  2 +
  3 +import java.math.BigDecimal;
  4 +import java.util.Date;
  5 +
  6 +public class AWB_AWBINFO {
  7 + private String billid;
  8 +
  9 + private String stocktypeid;
  10 +
  11 + private String stockpre;
  12 +
  13 + private String stockno;
  14 +
  15 + private String productid;
  16 +
  17 + private String carrierproductid;
  18 +
  19 + private String delflag;
  20 +
  21 + private String previousbillid;
  22 +
  23 + private String domint;
  24 +
  25 + private String customctl;
  26 +
  27 + private String specopeid;
  28 +
  29 + private String specopeidext;
  30 +
  31 + private String sairportid;
  32 +
  33 + private String scityid;
  34 +
  35 + private String eairportid;
  36 +
  37 + private String ecityid;
  38 +
  39 + private String by1;
  40 +
  41 + private String dest1;
  42 +
  43 + private String dest1city;
  44 +
  45 + private String by2;
  46 +
  47 + private String dest2;
  48 +
  49 + private String dest2city;
  50 +
  51 + private String by3;
  52 +
  53 + private String dest3;
  54 +
  55 + private String dest3city;
  56 +
  57 + private String by4;
  58 +
  59 + private String dest4;
  60 +
  61 + private String dest4city;
  62 +
  63 + private String cargono;
  64 +
  65 + private String cargonm;
  66 +
  67 + private String pack;
  68 +
  69 + private String meas;
  70 +
  71 + private BigDecimal pcs;
  72 +
  73 + private BigDecimal weight;
  74 +
  75 + private BigDecimal feewt;
  76 +
  77 + private BigDecimal vol;
  78 +
  79 + private String ctrlopedepartment;
  80 +
  81 + private String shprname;
  82 +
  83 + private String shprmobiletype;
  84 +
  85 + private String shprtel;
  86 +
  87 + private String shpraddress;
  88 +
  89 + private String shprcountyr;
  90 +
  91 + private String shpcomid;
  92 +
  93 + private String shpaeocode;
  94 +
  95 + private String shpcustomerid;
  96 +
  97 + private String cnsnname;
  98 +
  99 + private String cnsrmobiletype;
  100 +
  101 + private String cnsntel;
  102 +
  103 + private String cnsnaddress;
  104 +
  105 + private String cnscountyr;
  106 +
  107 + private String cnscomid;
  108 +
  109 + private String cnsaeocode;
  110 +
  111 + private String cnsrctcname;
  112 +
  113 + private String cnsrctctel;
  114 +
  115 + private String csgcustomerid;
  116 +
  117 + private String collected;
  118 +
  119 + private BigDecimal exchagerate;
  120 +
  121 + private String comat;
  122 +
  123 + private String refrigerated;
  124 +
  125 + private BigDecimal forknum;
  126 +
  127 + private String whshold;
  128 +
  129 + private String expcusttransit;
  130 +
  131 + private String impcusttransit;
  132 +
  133 + private String shorttrans;
  134 +
  135 + private String shorttransbup;
  136 +
  137 + private String cargoowner;
  138 +
  139 + private Date chargetime;
  140 +
  141 + private String isinstruction;
  142 +
  143 + private String notify;
  144 +
  145 + private BigDecimal shippervalue;
  146 +
  147 + private BigDecimal trafficvalue;
  148 +
  149 + private BigDecimal customvalue;
  150 +
  151 + private BigDecimal insurevalue;
  152 +
  153 + private String fileattached;
  154 +
  155 + private String ratetype;
  156 +
  157 + private String processingmethod;
  158 +
  159 + private String handlingcircs;
  160 +
  161 + private String reservedtonnage;
  162 +
  163 + private BigDecimal carriage;
  164 +
  165 + private BigDecimal rate;
  166 +
  167 + private String crtoper;
  168 +
  169 + private String wtunit;
  170 +
  171 + private BigDecimal originalwt;
  172 +
  173 + private BigDecimal originalfeewt;
  174 +
  175 + private String volunit;
  176 +
  177 + private String currencyid;
  178 +
  179 + private BigDecimal originalvol;
  180 +
  181 + private Date crtopetime;
  182 +
  183 + private String dlvpriority;
  184 +
  185 + private String chked;
  186 +
  187 + private Short labelnum;
  188 +
  189 + private String shpcustomer;
  190 +
  191 + private String crtagent;
  192 +
  193 + private Date crtdate;
  194 +
  195 + private BigDecimal extraweight;
  196 +
  197 + private String storeremark;
  198 +
  199 + private String balanceremark;
  200 +
  201 + private String filechked;
  202 +
  203 + private String iscarbalance;
  204 +
  205 + private String cnsnidcard;
  206 +
  207 + private String ciqcheck;
  208 +
  209 + private String tmpbillno;
  210 +
  211 + private String subbillid;
  212 +
  213 + private String istrans;
  214 +
  215 + private String splittag;
  216 +
  217 + private String customstrans;
  218 +
  219 + private String endoper;
  220 +
  221 + private Date endopetime;
  222 +
  223 + private String confirmoper;
  224 +
  225 + private Date confirmopetime;
  226 +
  227 + private String csgcustomer;
  228 +
  229 + private String relationbillid;
  230 +
  231 + private String customsCountry;
  232 +
  233 + private String customsCity;
  234 +
  235 + private String customsRemark;
  236 +
  237 + private String cargosource;
  238 +
  239 + private String cargonmch;
  240 +
  241 + private String isdgr;
  242 +
  243 + private BigDecimal percent;
  244 +
  245 + private String awbtype;
  246 +
  247 + private String status;
  248 +
  249 + private String paymodel;
  250 +
  251 + private Boolean isdelete;
  252 +
  253 + private Date optime;
  254 +
  255 + public String getBillid() {
  256 + return billid;
  257 + }
  258 +
  259 + public void setBillid(String billid) {
  260 + this.billid = billid == null ? null : billid.trim();
  261 + }
  262 +
  263 + public String getStocktypeid() {
  264 + return stocktypeid;
  265 + }
  266 +
  267 + public void setStocktypeid(String stocktypeid) {
  268 + this.stocktypeid = stocktypeid == null ? null : stocktypeid.trim();
  269 + }
  270 +
  271 + public String getStockpre() {
  272 + return stockpre;
  273 + }
  274 +
  275 + public void setStockpre(String stockpre) {
  276 + this.stockpre = stockpre == null ? null : stockpre.trim();
  277 + }
  278 +
  279 + public String getStockno() {
  280 + return stockno;
  281 + }
  282 +
  283 + public void setStockno(String stockno) {
  284 + this.stockno = stockno == null ? null : stockno.trim();
  285 + }
  286 +
  287 + public String getProductid() {
  288 + return productid;
  289 + }
  290 +
  291 + public void setProductid(String productid) {
  292 + this.productid = productid == null ? null : productid.trim();
  293 + }
  294 +
  295 + public String getCarrierproductid() {
  296 + return carrierproductid;
  297 + }
  298 +
  299 + public void setCarrierproductid(String carrierproductid) {
  300 + this.carrierproductid = carrierproductid == null ? null : carrierproductid.trim();
  301 + }
  302 +
  303 + public String getDelflag() {
  304 + return delflag;
  305 + }
  306 +
  307 + public void setDelflag(String delflag) {
  308 + this.delflag = delflag == null ? null : delflag.trim();
  309 + }
  310 +
  311 + public String getPreviousbillid() {
  312 + return previousbillid;
  313 + }
  314 +
  315 + public void setPreviousbillid(String previousbillid) {
  316 + this.previousbillid = previousbillid == null ? null : previousbillid.trim();
  317 + }
  318 +
  319 + public String getDomint() {
  320 + return domint;
  321 + }
  322 +
  323 + public void setDomint(String domint) {
  324 + this.domint = domint == null ? null : domint.trim();
  325 + }
  326 +
  327 + public String getCustomctl() {
  328 + return customctl;
  329 + }
  330 +
  331 + public void setCustomctl(String customctl) {
  332 + this.customctl = customctl == null ? null : customctl.trim();
  333 + }
  334 +
  335 + public String getSpecopeid() {
  336 + return specopeid;
  337 + }
  338 +
  339 + public void setSpecopeid(String specopeid) {
  340 + this.specopeid = specopeid == null ? null : specopeid.trim();
  341 + }
  342 +
  343 + public String getSpecopeidext() {
  344 + return specopeidext;
  345 + }
  346 +
  347 + public void setSpecopeidext(String specopeidext) {
  348 + this.specopeidext = specopeidext == null ? null : specopeidext.trim();
  349 + }
  350 +
  351 + public String getSairportid() {
  352 + return sairportid;
  353 + }
  354 +
  355 + public void setSairportid(String sairportid) {
  356 + this.sairportid = sairportid == null ? null : sairportid.trim();
  357 + }
  358 +
  359 + public String getScityid() {
  360 + return scityid;
  361 + }
  362 +
  363 + public void setScityid(String scityid) {
  364 + this.scityid = scityid == null ? null : scityid.trim();
  365 + }
  366 +
  367 + public String getEairportid() {
  368 + return eairportid;
  369 + }
  370 +
  371 + public void setEairportid(String eairportid) {
  372 + this.eairportid = eairportid == null ? null : eairportid.trim();
  373 + }
  374 +
  375 + public String getEcityid() {
  376 + return ecityid;
  377 + }
  378 +
  379 + public void setEcityid(String ecityid) {
  380 + this.ecityid = ecityid == null ? null : ecityid.trim();
  381 + }
  382 +
  383 + public String getBy1() {
  384 + return by1;
  385 + }
  386 +
  387 + public void setBy1(String by1) {
  388 + this.by1 = by1 == null ? null : by1.trim();
  389 + }
  390 +
  391 + public String getDest1() {
  392 + return dest1;
  393 + }
  394 +
  395 + public void setDest1(String dest1) {
  396 + this.dest1 = dest1 == null ? null : dest1.trim();
  397 + }
  398 +
  399 + public String getDest1city() {
  400 + return dest1city;
  401 + }
  402 +
  403 + public void setDest1city(String dest1city) {
  404 + this.dest1city = dest1city == null ? null : dest1city.trim();
  405 + }
  406 +
  407 + public String getBy2() {
  408 + return by2;
  409 + }
  410 +
  411 + public void setBy2(String by2) {
  412 + this.by2 = by2 == null ? null : by2.trim();
  413 + }
  414 +
  415 + public String getDest2() {
  416 + return dest2;
  417 + }
  418 +
  419 + public void setDest2(String dest2) {
  420 + this.dest2 = dest2 == null ? null : dest2.trim();
  421 + }
  422 +
  423 + public String getDest2city() {
  424 + return dest2city;
  425 + }
  426 +
  427 + public void setDest2city(String dest2city) {
  428 + this.dest2city = dest2city == null ? null : dest2city.trim();
  429 + }
  430 +
  431 + public String getBy3() {
  432 + return by3;
  433 + }
  434 +
  435 + public void setBy3(String by3) {
  436 + this.by3 = by3 == null ? null : by3.trim();
  437 + }
  438 +
  439 + public String getDest3() {
  440 + return dest3;
  441 + }
  442 +
  443 + public void setDest3(String dest3) {
  444 + this.dest3 = dest3 == null ? null : dest3.trim();
  445 + }
  446 +
  447 + public String getDest3city() {
  448 + return dest3city;
  449 + }
  450 +
  451 + public void setDest3city(String dest3city) {
  452 + this.dest3city = dest3city == null ? null : dest3city.trim();
  453 + }
  454 +
  455 + public String getBy4() {
  456 + return by4;
  457 + }
  458 +
  459 + public void setBy4(String by4) {
  460 + this.by4 = by4 == null ? null : by4.trim();
  461 + }
  462 +
  463 + public String getDest4() {
  464 + return dest4;
  465 + }
  466 +
  467 + public void setDest4(String dest4) {
  468 + this.dest4 = dest4 == null ? null : dest4.trim();
  469 + }
  470 +
  471 + public String getDest4city() {
  472 + return dest4city;
  473 + }
  474 +
  475 + public void setDest4city(String dest4city) {
  476 + this.dest4city = dest4city == null ? null : dest4city.trim();
  477 + }
  478 +
  479 + public String getCargono() {
  480 + return cargono;
  481 + }
  482 +
  483 + public void setCargono(String cargono) {
  484 + this.cargono = cargono == null ? null : cargono.trim();
  485 + }
  486 +
  487 + public String getCargonm() {
  488 + return cargonm;
  489 + }
  490 +
  491 + public void setCargonm(String cargonm) {
  492 + this.cargonm = cargonm == null ? null : cargonm.trim();
  493 + }
  494 +
  495 + public String getPack() {
  496 + return pack;
  497 + }
  498 +
  499 + public void setPack(String pack) {
  500 + this.pack = pack == null ? null : pack.trim();
  501 + }
  502 +
  503 + public String getMeas() {
  504 + return meas;
  505 + }
  506 +
  507 + public void setMeas(String meas) {
  508 + this.meas = meas == null ? null : meas.trim();
  509 + }
  510 +
  511 + public BigDecimal getPcs() {
  512 + return pcs;
  513 + }
  514 +
  515 + public void setPcs(BigDecimal pcs) {
  516 + this.pcs = pcs;
  517 + }
  518 +
  519 + public BigDecimal getWeight() {
  520 + return weight;
  521 + }
  522 +
  523 + public void setWeight(BigDecimal weight) {
  524 + this.weight = weight;
  525 + }
  526 +
  527 + public BigDecimal getFeewt() {
  528 + return feewt;
  529 + }
  530 +
  531 + public void setFeewt(BigDecimal feewt) {
  532 + this.feewt = feewt;
  533 + }
  534 +
  535 + public BigDecimal getVol() {
  536 + return vol;
  537 + }
  538 +
  539 + public void setVol(BigDecimal vol) {
  540 + this.vol = vol;
  541 + }
  542 +
  543 + public String getCtrlopedepartment() {
  544 + return ctrlopedepartment;
  545 + }
  546 +
  547 + public void setCtrlopedepartment(String ctrlopedepartment) {
  548 + this.ctrlopedepartment = ctrlopedepartment == null ? null : ctrlopedepartment.trim();
  549 + }
  550 +
  551 + public String getShprname() {
  552 + return shprname;
  553 + }
  554 +
  555 + public void setShprname(String shprname) {
  556 + this.shprname = shprname == null ? null : shprname.trim();
  557 + }
  558 +
  559 + public String getShprmobiletype() {
  560 + return shprmobiletype;
  561 + }
  562 +
  563 + public void setShprmobiletype(String shprmobiletype) {
  564 + this.shprmobiletype = shprmobiletype == null ? null : shprmobiletype.trim();
  565 + }
  566 +
  567 + public String getShprtel() {
  568 + return shprtel;
  569 + }
  570 +
  571 + public void setShprtel(String shprtel) {
  572 + this.shprtel = shprtel == null ? null : shprtel.trim();
  573 + }
  574 +
  575 + public String getShpraddress() {
  576 + return shpraddress;
  577 + }
  578 +
  579 + public void setShpraddress(String shpraddress) {
  580 + this.shpraddress = shpraddress == null ? null : shpraddress.trim();
  581 + }
  582 +
  583 + public String getShprcountyr() {
  584 + return shprcountyr;
  585 + }
  586 +
  587 + public void setShprcountyr(String shprcountyr) {
  588 + this.shprcountyr = shprcountyr == null ? null : shprcountyr.trim();
  589 + }
  590 +
  591 + public String getShpcomid() {
  592 + return shpcomid;
  593 + }
  594 +
  595 + public void setShpcomid(String shpcomid) {
  596 + this.shpcomid = shpcomid == null ? null : shpcomid.trim();
  597 + }
  598 +
  599 + public String getShpaeocode() {
  600 + return shpaeocode;
  601 + }
  602 +
  603 + public void setShpaeocode(String shpaeocode) {
  604 + this.shpaeocode = shpaeocode == null ? null : shpaeocode.trim();
  605 + }
  606 +
  607 + public String getShpcustomerid() {
  608 + return shpcustomerid;
  609 + }
  610 +
  611 + public void setShpcustomerid(String shpcustomerid) {
  612 + this.shpcustomerid = shpcustomerid == null ? null : shpcustomerid.trim();
  613 + }
  614 +
  615 + public String getCnsnname() {
  616 + return cnsnname;
  617 + }
  618 +
  619 + public void setCnsnname(String cnsnname) {
  620 + this.cnsnname = cnsnname == null ? null : cnsnname.trim();
  621 + }
  622 +
  623 + public String getCnsrmobiletype() {
  624 + return cnsrmobiletype;
  625 + }
  626 +
  627 + public void setCnsrmobiletype(String cnsrmobiletype) {
  628 + this.cnsrmobiletype = cnsrmobiletype == null ? null : cnsrmobiletype.trim();
  629 + }
  630 +
  631 + public String getCnsntel() {
  632 + return cnsntel;
  633 + }
  634 +
  635 + public void setCnsntel(String cnsntel) {
  636 + this.cnsntel = cnsntel == null ? null : cnsntel.trim();
  637 + }
  638 +
  639 + public String getCnsnaddress() {
  640 + return cnsnaddress;
  641 + }
  642 +
  643 + public void setCnsnaddress(String cnsnaddress) {
  644 + this.cnsnaddress = cnsnaddress == null ? null : cnsnaddress.trim();
  645 + }
  646 +
  647 + public String getCnscountyr() {
  648 + return cnscountyr;
  649 + }
  650 +
  651 + public void setCnscountyr(String cnscountyr) {
  652 + this.cnscountyr = cnscountyr == null ? null : cnscountyr.trim();
  653 + }
  654 +
  655 + public String getCnscomid() {
  656 + return cnscomid;
  657 + }
  658 +
  659 + public void setCnscomid(String cnscomid) {
  660 + this.cnscomid = cnscomid == null ? null : cnscomid.trim();
  661 + }
  662 +
  663 + public String getCnsaeocode() {
  664 + return cnsaeocode;
  665 + }
  666 +
  667 + public void setCnsaeocode(String cnsaeocode) {
  668 + this.cnsaeocode = cnsaeocode == null ? null : cnsaeocode.trim();
  669 + }
  670 +
  671 + public String getCnsrctcname() {
  672 + return cnsrctcname;
  673 + }
  674 +
  675 + public void setCnsrctcname(String cnsrctcname) {
  676 + this.cnsrctcname = cnsrctcname == null ? null : cnsrctcname.trim();
  677 + }
  678 +
  679 + public String getCnsrctctel() {
  680 + return cnsrctctel;
  681 + }
  682 +
  683 + public void setCnsrctctel(String cnsrctctel) {
  684 + this.cnsrctctel = cnsrctctel == null ? null : cnsrctctel.trim();
  685 + }
  686 +
  687 + public String getCsgcustomerid() {
  688 + return csgcustomerid;
  689 + }
  690 +
  691 + public void setCsgcustomerid(String csgcustomerid) {
  692 + this.csgcustomerid = csgcustomerid == null ? null : csgcustomerid.trim();
  693 + }
  694 +
  695 + public String getCollected() {
  696 + return collected;
  697 + }
  698 +
  699 + public void setCollected(String collected) {
  700 + this.collected = collected == null ? null : collected.trim();
  701 + }
  702 +
  703 + public BigDecimal getExchagerate() {
  704 + return exchagerate;
  705 + }
  706 +
  707 + public void setExchagerate(BigDecimal exchagerate) {
  708 + this.exchagerate = exchagerate;
  709 + }
  710 +
  711 + public String getComat() {
  712 + return comat;
  713 + }
  714 +
  715 + public void setComat(String comat) {
  716 + this.comat = comat == null ? null : comat.trim();
  717 + }
  718 +
  719 + public String getRefrigerated() {
  720 + return refrigerated;
  721 + }
  722 +
  723 + public void setRefrigerated(String refrigerated) {
  724 + this.refrigerated = refrigerated == null ? null : refrigerated.trim();
  725 + }
  726 +
  727 + public BigDecimal getForknum() {
  728 + return forknum;
  729 + }
  730 +
  731 + public void setForknum(BigDecimal forknum) {
  732 + this.forknum = forknum;
  733 + }
  734 +
  735 + public String getWhshold() {
  736 + return whshold;
  737 + }
  738 +
  739 + public void setWhshold(String whshold) {
  740 + this.whshold = whshold == null ? null : whshold.trim();
  741 + }
  742 +
  743 + public String getExpcusttransit() {
  744 + return expcusttransit;
  745 + }
  746 +
  747 + public void setExpcusttransit(String expcusttransit) {
  748 + this.expcusttransit = expcusttransit == null ? null : expcusttransit.trim();
  749 + }
  750 +
  751 + public String getImpcusttransit() {
  752 + return impcusttransit;
  753 + }
  754 +
  755 + public void setImpcusttransit(String impcusttransit) {
  756 + this.impcusttransit = impcusttransit == null ? null : impcusttransit.trim();
  757 + }
  758 +
  759 + public String getShorttrans() {
  760 + return shorttrans;
  761 + }
  762 +
  763 + public void setShorttrans(String shorttrans) {
  764 + this.shorttrans = shorttrans == null ? null : shorttrans.trim();
  765 + }
  766 +
  767 + public String getShorttransbup() {
  768 + return shorttransbup;
  769 + }
  770 +
  771 + public void setShorttransbup(String shorttransbup) {
  772 + this.shorttransbup = shorttransbup == null ? null : shorttransbup.trim();
  773 + }
  774 +
  775 + public String getCargoowner() {
  776 + return cargoowner;
  777 + }
  778 +
  779 + public void setCargoowner(String cargoowner) {
  780 + this.cargoowner = cargoowner == null ? null : cargoowner.trim();
  781 + }
  782 +
  783 + public Date getChargetime() {
  784 + return chargetime;
  785 + }
  786 +
  787 + public void setChargetime(Date chargetime) {
  788 + this.chargetime = chargetime;
  789 + }
  790 +
  791 + public String getIsinstruction() {
  792 + return isinstruction;
  793 + }
  794 +
  795 + public void setIsinstruction(String isinstruction) {
  796 + this.isinstruction = isinstruction == null ? null : isinstruction.trim();
  797 + }
  798 +
  799 + public String getNotify() {
  800 + return notify;
  801 + }
  802 +
  803 + public void setNotify(String notify) {
  804 + this.notify = notify == null ? null : notify.trim();
  805 + }
  806 +
  807 + public BigDecimal getShippervalue() {
  808 + return shippervalue;
  809 + }
  810 +
  811 + public void setShippervalue(BigDecimal shippervalue) {
  812 + this.shippervalue = shippervalue;
  813 + }
  814 +
  815 + public BigDecimal getTrafficvalue() {
  816 + return trafficvalue;
  817 + }
  818 +
  819 + public void setTrafficvalue(BigDecimal trafficvalue) {
  820 + this.trafficvalue = trafficvalue;
  821 + }
  822 +
  823 + public BigDecimal getCustomvalue() {
  824 + return customvalue;
  825 + }
  826 +
  827 + public void setCustomvalue(BigDecimal customvalue) {
  828 + this.customvalue = customvalue;
  829 + }
  830 +
  831 + public BigDecimal getInsurevalue() {
  832 + return insurevalue;
  833 + }
  834 +
  835 + public void setInsurevalue(BigDecimal insurevalue) {
  836 + this.insurevalue = insurevalue;
  837 + }
  838 +
  839 + public String getFileattached() {
  840 + return fileattached;
  841 + }
  842 +
  843 + public void setFileattached(String fileattached) {
  844 + this.fileattached = fileattached == null ? null : fileattached.trim();
  845 + }
  846 +
  847 + public String getRatetype() {
  848 + return ratetype;
  849 + }
  850 +
  851 + public void setRatetype(String ratetype) {
  852 + this.ratetype = ratetype == null ? null : ratetype.trim();
  853 + }
  854 +
  855 + public String getProcessingmethod() {
  856 + return processingmethod;
  857 + }
  858 +
  859 + public void setProcessingmethod(String processingmethod) {
  860 + this.processingmethod = processingmethod == null ? null : processingmethod.trim();
  861 + }
  862 +
  863 + public String getHandlingcircs() {
  864 + return handlingcircs;
  865 + }
  866 +
  867 + public void setHandlingcircs(String handlingcircs) {
  868 + this.handlingcircs = handlingcircs == null ? null : handlingcircs.trim();
  869 + }
  870 +
  871 + public String getReservedtonnage() {
  872 + return reservedtonnage;
  873 + }
  874 +
  875 + public void setReservedtonnage(String reservedtonnage) {
  876 + this.reservedtonnage = reservedtonnage == null ? null : reservedtonnage.trim();
  877 + }
  878 +
  879 + public BigDecimal getCarriage() {
  880 + return carriage;
  881 + }
  882 +
  883 + public void setCarriage(BigDecimal carriage) {
  884 + this.carriage = carriage;
  885 + }
  886 +
  887 + public BigDecimal getRate() {
  888 + return rate;
  889 + }
  890 +
  891 + public void setRate(BigDecimal rate) {
  892 + this.rate = rate;
  893 + }
  894 +
  895 + public String getCrtoper() {
  896 + return crtoper;
  897 + }
  898 +
  899 + public void setCrtoper(String crtoper) {
  900 + this.crtoper = crtoper == null ? null : crtoper.trim();
  901 + }
  902 +
  903 + public String getWtunit() {
  904 + return wtunit;
  905 + }
  906 +
  907 + public void setWtunit(String wtunit) {
  908 + this.wtunit = wtunit == null ? null : wtunit.trim();
  909 + }
  910 +
  911 + public BigDecimal getOriginalwt() {
  912 + return originalwt;
  913 + }
  914 +
  915 + public void setOriginalwt(BigDecimal originalwt) {
  916 + this.originalwt = originalwt;
  917 + }
  918 +
  919 + public BigDecimal getOriginalfeewt() {
  920 + return originalfeewt;
  921 + }
  922 +
  923 + public void setOriginalfeewt(BigDecimal originalfeewt) {
  924 + this.originalfeewt = originalfeewt;
  925 + }
  926 +
  927 + public String getVolunit() {
  928 + return volunit;
  929 + }
  930 +
  931 + public void setVolunit(String volunit) {
  932 + this.volunit = volunit == null ? null : volunit.trim();
  933 + }
  934 +
  935 + public String getCurrencyid() {
  936 + return currencyid;
  937 + }
  938 +
  939 + public void setCurrencyid(String currencyid) {
  940 + this.currencyid = currencyid == null ? null : currencyid.trim();
  941 + }
  942 +
  943 + public BigDecimal getOriginalvol() {
  944 + return originalvol;
  945 + }
  946 +
  947 + public void setOriginalvol(BigDecimal originalvol) {
  948 + this.originalvol = originalvol;
  949 + }
  950 +
  951 + public Date getCrtopetime() {
  952 + return crtopetime;
  953 + }
  954 +
  955 + public void setCrtopetime(Date crtopetime) {
  956 + this.crtopetime = crtopetime;
  957 + }
  958 +
  959 + public String getDlvpriority() {
  960 + return dlvpriority;
  961 + }
  962 +
  963 + public void setDlvpriority(String dlvpriority) {
  964 + this.dlvpriority = dlvpriority == null ? null : dlvpriority.trim();
  965 + }
  966 +
  967 + public String getChked() {
  968 + return chked;
  969 + }
  970 +
  971 + public void setChked(String chked) {
  972 + this.chked = chked == null ? null : chked.trim();
  973 + }
  974 +
  975 + public Short getLabelnum() {
  976 + return labelnum;
  977 + }
  978 +
  979 + public void setLabelnum(Short labelnum) {
  980 + this.labelnum = labelnum;
  981 + }
  982 +
  983 + public String getShpcustomer() {
  984 + return shpcustomer;
  985 + }
  986 +
  987 + public void setShpcustomer(String shpcustomer) {
  988 + this.shpcustomer = shpcustomer == null ? null : shpcustomer.trim();
  989 + }
  990 +
  991 + public String getCrtagent() {
  992 + return crtagent;
  993 + }
  994 +
  995 + public void setCrtagent(String crtagent) {
  996 + this.crtagent = crtagent == null ? null : crtagent.trim();
  997 + }
  998 +
  999 + public Date getCrtdate() {
  1000 + return crtdate;
  1001 + }
  1002 +
  1003 + public void setCrtdate(Date crtdate) {
  1004 + this.crtdate = crtdate;
  1005 + }
  1006 +
  1007 + public BigDecimal getExtraweight() {
  1008 + return extraweight;
  1009 + }
  1010 +
  1011 + public void setExtraweight(BigDecimal extraweight) {
  1012 + this.extraweight = extraweight;
  1013 + }
  1014 +
  1015 + public String getStoreremark() {
  1016 + return storeremark;
  1017 + }
  1018 +
  1019 + public void setStoreremark(String storeremark) {
  1020 + this.storeremark = storeremark == null ? null : storeremark.trim();
  1021 + }
  1022 +
  1023 + public String getBalanceremark() {
  1024 + return balanceremark;
  1025 + }
  1026 +
  1027 + public void setBalanceremark(String balanceremark) {
  1028 + this.balanceremark = balanceremark == null ? null : balanceremark.trim();
  1029 + }
  1030 +
  1031 + public String getFilechked() {
  1032 + return filechked;
  1033 + }
  1034 +
  1035 + public void setFilechked(String filechked) {
  1036 + this.filechked = filechked == null ? null : filechked.trim();
  1037 + }
  1038 +
  1039 + public String getIscarbalance() {
  1040 + return iscarbalance;
  1041 + }
  1042 +
  1043 + public void setIscarbalance(String iscarbalance) {
  1044 + this.iscarbalance = iscarbalance == null ? null : iscarbalance.trim();
  1045 + }
  1046 +
  1047 + public String getCnsnidcard() {
  1048 + return cnsnidcard;
  1049 + }
  1050 +
  1051 + public void setCnsnidcard(String cnsnidcard) {
  1052 + this.cnsnidcard = cnsnidcard == null ? null : cnsnidcard.trim();
  1053 + }
  1054 +
  1055 + public String getCiqcheck() {
  1056 + return ciqcheck;
  1057 + }
  1058 +
  1059 + public void setCiqcheck(String ciqcheck) {
  1060 + this.ciqcheck = ciqcheck == null ? null : ciqcheck.trim();
  1061 + }
  1062 +
  1063 + public String getTmpbillno() {
  1064 + return tmpbillno;
  1065 + }
  1066 +
  1067 + public void setTmpbillno(String tmpbillno) {
  1068 + this.tmpbillno = tmpbillno == null ? null : tmpbillno.trim();
  1069 + }
  1070 +
  1071 + public String getSubbillid() {
  1072 + return subbillid;
  1073 + }
  1074 +
  1075 + public void setSubbillid(String subbillid) {
  1076 + this.subbillid = subbillid == null ? null : subbillid.trim();
  1077 + }
  1078 +
  1079 + public String getIstrans() {
  1080 + return istrans;
  1081 + }
  1082 +
  1083 + public void setIstrans(String istrans) {
  1084 + this.istrans = istrans == null ? null : istrans.trim();
  1085 + }
  1086 +
  1087 + public String getSplittag() {
  1088 + return splittag;
  1089 + }
  1090 +
  1091 + public void setSplittag(String splittag) {
  1092 + this.splittag = splittag == null ? null : splittag.trim();
  1093 + }
  1094 +
  1095 + public String getCustomstrans() {
  1096 + return customstrans;
  1097 + }
  1098 +
  1099 + public void setCustomstrans(String customstrans) {
  1100 + this.customstrans = customstrans == null ? null : customstrans.trim();
  1101 + }
  1102 +
  1103 + public String getEndoper() {
  1104 + return endoper;
  1105 + }
  1106 +
  1107 + public void setEndoper(String endoper) {
  1108 + this.endoper = endoper == null ? null : endoper.trim();
  1109 + }
  1110 +
  1111 + public Date getEndopetime() {
  1112 + return endopetime;
  1113 + }
  1114 +
  1115 + public void setEndopetime(Date endopetime) {
  1116 + this.endopetime = endopetime;
  1117 + }
  1118 +
  1119 + public String getConfirmoper() {
  1120 + return confirmoper;
  1121 + }
  1122 +
  1123 + public void setConfirmoper(String confirmoper) {
  1124 + this.confirmoper = confirmoper == null ? null : confirmoper.trim();
  1125 + }
  1126 +
  1127 + public Date getConfirmopetime() {
  1128 + return confirmopetime;
  1129 + }
  1130 +
  1131 + public void setConfirmopetime(Date confirmopetime) {
  1132 + this.confirmopetime = confirmopetime;
  1133 + }
  1134 +
  1135 + public String getCsgcustomer() {
  1136 + return csgcustomer;
  1137 + }
  1138 +
  1139 + public void setCsgcustomer(String csgcustomer) {
  1140 + this.csgcustomer = csgcustomer == null ? null : csgcustomer.trim();
  1141 + }
  1142 +
  1143 + public String getRelationbillid() {
  1144 + return relationbillid;
  1145 + }
  1146 +
  1147 + public void setRelationbillid(String relationbillid) {
  1148 + this.relationbillid = relationbillid == null ? null : relationbillid.trim();
  1149 + }
  1150 +
  1151 + public String getCustomsCountry() {
  1152 + return customsCountry;
  1153 + }
  1154 +
  1155 + public void setCustomsCountry(String customsCountry) {
  1156 + this.customsCountry = customsCountry == null ? null : customsCountry.trim();
  1157 + }
  1158 +
  1159 + public String getCustomsCity() {
  1160 + return customsCity;
  1161 + }
  1162 +
  1163 + public void setCustomsCity(String customsCity) {
  1164 + this.customsCity = customsCity == null ? null : customsCity.trim();
  1165 + }
  1166 +
  1167 + public String getCustomsRemark() {
  1168 + return customsRemark;
  1169 + }
  1170 +
  1171 + public void setCustomsRemark(String customsRemark) {
  1172 + this.customsRemark = customsRemark == null ? null : customsRemark.trim();
  1173 + }
  1174 +
  1175 + public String getCargosource() {
  1176 + return cargosource;
  1177 + }
  1178 +
  1179 + public void setCargosource(String cargosource) {
  1180 + this.cargosource = cargosource == null ? null : cargosource.trim();
  1181 + }
  1182 +
  1183 + public String getCargonmch() {
  1184 + return cargonmch;
  1185 + }
  1186 +
  1187 + public void setCargonmch(String cargonmch) {
  1188 + this.cargonmch = cargonmch == null ? null : cargonmch.trim();
  1189 + }
  1190 +
  1191 + public String getIsdgr() {
  1192 + return isdgr;
  1193 + }
  1194 +
  1195 + public void setIsdgr(String isdgr) {
  1196 + this.isdgr = isdgr == null ? null : isdgr.trim();
  1197 + }
  1198 +
  1199 + public BigDecimal getPercent() {
  1200 + return percent;
  1201 + }
  1202 +
  1203 + public void setPercent(BigDecimal percent) {
  1204 + this.percent = percent;
  1205 + }
  1206 +
  1207 + public String getAwbtype() {
  1208 + return awbtype;
  1209 + }
  1210 +
  1211 + public void setAwbtype(String awbtype) {
  1212 + this.awbtype = awbtype == null ? null : awbtype.trim();
  1213 + }
  1214 +
  1215 + public String getStatus() {
  1216 + return status;
  1217 + }
  1218 +
  1219 + public void setStatus(String status) {
  1220 + this.status = status == null ? null : status.trim();
  1221 + }
  1222 +
  1223 + public String getPaymodel() {
  1224 + return paymodel;
  1225 + }
  1226 +
  1227 + public void setPaymodel(String paymodel) {
  1228 + this.paymodel = paymodel == null ? null : paymodel.trim();
  1229 + }
  1230 +
  1231 + public Boolean getIsdelete() {
  1232 + return isdelete;
  1233 + }
  1234 +
  1235 + public void setIsdelete(Boolean isdelete) {
  1236 + this.isdelete = isdelete;
  1237 + }
  1238 +
  1239 + public Date getOptime() {
  1240 + return optime;
  1241 + }
  1242 +
  1243 + public void setOptime(Date optime) {
  1244 + this.optime = optime;
  1245 + }
  1246 +}
  1 +package com.sunyo.wlpt.base.model;
  2 +
  3 +public class CONFIG_AIRSTATION_CUSTOMCODE {
  4 + private String airstationname;
  5 +
  6 + private String customcode;
  7 +
  8 + public String getAirstationname() {
  9 + return airstationname;
  10 + }
  11 +
  12 + public void setAirstationname(String airstationname) {
  13 + this.airstationname = airstationname == null ? null : airstationname.trim();
  14 + }
  15 +
  16 + public String getCustomcode() {
  17 + return customcode;
  18 + }
  19 +
  20 + public void setCustomcode(String customcode) {
  21 + this.customcode = customcode == null ? null : customcode.trim();
  22 + }
  23 +}
  1 +package com.sunyo.wlpt.base.model;
  2 +
  3 +public class CONFIG_USER_CARRIER {
  4 + private Integer userid;
  5 +
  6 + private String carriercode;
  7 +
  8 + public Integer getUserid() {
  9 + return userid;
  10 + }
  11 +
  12 + public void setUserid(Integer userid) {
  13 + this.userid = userid;
  14 + }
  15 +
  16 + public String getCarriercode() {
  17 + return carriercode;
  18 + }
  19 +
  20 + public void setCarriercode(String carriercode) {
  21 + this.carriercode = carriercode == null ? null : carriercode.trim();
  22 + }
  23 +}
  1 +package com.sunyo.wlpt.base.model;
  2 +
  3 +public class CONFIG_USER_CUSTOMCODE {
  4 + private Integer userid;
  5 +
  6 + private String customcode;
  7 +
  8 + public Integer getUserid() {
  9 + return userid;
  10 + }
  11 +
  12 + public void setUserid(Integer userid) {
  13 + this.userid = userid;
  14 + }
  15 +
  16 + public String getCustomcode() {
  17 + return customcode;
  18 + }
  19 +
  20 + public void setCustomcode(String customcode) {
  21 + this.customcode = customcode == null ? null : customcode.trim();
  22 + }
  23 +}
  1 +package com.sunyo.wlpt.base.model;
  2 +
  3 +public class CONFIG_USER_EnterpriseCode {
  4 + private Integer userid;
  5 +
  6 + private String enterprisecode;
  7 +
  8 + public Integer getUserid() {
  9 + return userid;
  10 + }
  11 +
  12 + public void setUserid(Integer userid) {
  13 + this.userid = userid;
  14 + }
  15 +
  16 + public String getEnterprisecode() {
  17 + return enterprisecode;
  18 + }
  19 +
  20 + public void setEnterprisecode(String enterprisecode) {
  21 + this.enterprisecode = enterprisecode == null ? null : enterprisecode.trim();
  22 + }
  23 +}
  1 +package com.sunyo.wlpt.base.model;
  2 +
  3 +import java.util.Date;
  4 +
  5 +public class NMMS_CUSTOM_MT1201 {
  6 + private String uuid;
  7 +
  8 + private String awba;
  9 +
  10 + private String awbh;
  11 +
  12 + private String customcode;
  13 +
  14 + private String goodsname;
  15 +
  16 + private Date actime;
  17 +
  18 + private String carrier;
  19 +
  20 + private String flightno;
  21 +
  22 + private Date flightdate;
  23 +
  24 + private String originstation;
  25 +
  26 + private String destinationstation;
  27 +
  28 + private Integer piece;
  29 +
  30 + private Long weight;
  31 +
  32 + private String splitcode;
  33 +
  34 + private String status;
  35 +
  36 + private Boolean isdelete;
  37 +
  38 + private String uldtype;
  39 +
  40 + private String uldno;
  41 +
  42 + private String planeno;
  43 +
  44 + private String opeuserid;
  45 +
  46 + private String ext5;
  47 +
  48 + public String getUuid() {
  49 + return uuid;
  50 + }
  51 +
  52 + public void setUuid(String uuid) {
  53 + this.uuid = uuid == null ? null : uuid.trim();
  54 + }
  55 +
  56 + public String getAwba() {
  57 + return awba;
  58 + }
  59 +
  60 + public void setAwba(String awba) {
  61 + this.awba = awba == null ? null : awba.trim();
  62 + }
  63 +
  64 + public String getAwbh() {
  65 + return awbh;
  66 + }
  67 +
  68 + public void setAwbh(String awbh) {
  69 + this.awbh = awbh == null ? null : awbh.trim();
  70 + }
  71 +
  72 + public String getCustomcode() {
  73 + return customcode;
  74 + }
  75 +
  76 + public void setCustomcode(String customcode) {
  77 + this.customcode = customcode == null ? null : customcode.trim();
  78 + }
  79 +
  80 + public String getGoodsname() {
  81 + return goodsname;
  82 + }
  83 +
  84 + public void setGoodsname(String goodsname) {
  85 + this.goodsname = goodsname == null ? null : goodsname.trim();
  86 + }
  87 +
  88 + public Date getActime() {
  89 + return actime;
  90 + }
  91 +
  92 + public void setActime(Date actime) {
  93 + this.actime = actime;
  94 + }
  95 +
  96 + public String getCarrier() {
  97 + return carrier;
  98 + }
  99 +
  100 + public void setCarrier(String carrier) {
  101 + this.carrier = carrier == null ? null : carrier.trim();
  102 + }
  103 +
  104 + public String getFlightno() {
  105 + return flightno;
  106 + }
  107 +
  108 + public void setFlightno(String flightno) {
  109 + this.flightno = flightno == null ? null : flightno.trim();
  110 + }
  111 +
  112 + public Date getFlightdate() {
  113 + return flightdate;
  114 + }
  115 +
  116 + public void setFlightdate(Date flightdate) {
  117 + this.flightdate = flightdate;
  118 + }
  119 +
  120 + public String getOriginstation() {
  121 + return originstation;
  122 + }
  123 +
  124 + public void setOriginstation(String originstation) {
  125 + this.originstation = originstation == null ? null : originstation.trim();
  126 + }
  127 +
  128 + public String getDestinationstation() {
  129 + return destinationstation;
  130 + }
  131 +
  132 + public void setDestinationstation(String destinationstation) {
  133 + this.destinationstation = destinationstation == null ? null : destinationstation.trim();
  134 + }
  135 +
  136 + public Integer getPiece() {
  137 + return piece;
  138 + }
  139 +
  140 + public void setPiece(Integer piece) {
  141 + this.piece = piece;
  142 + }
  143 +
  144 + public Long getWeight() {
  145 + return weight;
  146 + }
  147 +
  148 + public void setWeight(Long weight) {
  149 + this.weight = weight;
  150 + }
  151 +
  152 + public String getSplitcode() {
  153 + return splitcode;
  154 + }
  155 +
  156 + public void setSplitcode(String splitcode) {
  157 + this.splitcode = splitcode == null ? null : splitcode.trim();
  158 + }
  159 +
  160 + public String getStatus() {
  161 + return status;
  162 + }
  163 +
  164 + public void setStatus(String status) {
  165 + this.status = status == null ? null : status.trim();
  166 + }
  167 +
  168 + public Boolean getIsdelete() {
  169 + return isdelete;
  170 + }
  171 +
  172 + public void setIsdelete(Boolean isdelete) {
  173 + this.isdelete = isdelete;
  174 + }
  175 +
  176 + public String getUldtype() {
  177 + return uldtype;
  178 + }
  179 +
  180 + public void setUldtype(String uldtype) {
  181 + this.uldtype = uldtype == null ? null : uldtype.trim();
  182 + }
  183 +
  184 + public String getUldno() {
  185 + return uldno;
  186 + }
  187 +
  188 + public void setUldno(String uldno) {
  189 + this.uldno = uldno == null ? null : uldno.trim();
  190 + }
  191 +
  192 + public String getPlaneno() {
  193 + return planeno;
  194 + }
  195 +
  196 + public void setPlaneno(String planeno) {
  197 + this.planeno = planeno == null ? null : planeno.trim();
  198 + }
  199 +
  200 + public String getOpeuserid() {
  201 + return opeuserid;
  202 + }
  203 +
  204 + public void setOpeuserid(String opeuserid) {
  205 + this.opeuserid = opeuserid == null ? null : opeuserid.trim();
  206 + }
  207 +
  208 + public String getExt5() {
  209 + return ext5;
  210 + }
  211 +
  212 + public void setExt5(String ext5) {
  213 + this.ext5 = ext5 == null ? null : ext5.trim();
  214 + }
  215 +}
  1 +package com.sunyo.wlpt.base.model;
  2 +
  3 +import java.util.Date;
  4 +
  5 +public class NMMS_CUSTOM_MT2201 {
  6 + private String uuid;
  7 +
  8 + private String awba;
  9 +
  10 + private String awbh;
  11 +
  12 + private String customcode;
  13 +
  14 + private String goodsname;
  15 +
  16 + private Date actime;
  17 +
  18 + private String carrier;
  19 +
  20 + private String flightno;
  21 +
  22 + private Date flightdate;
  23 +
  24 + private String originstation;
  25 +
  26 + private String destinationstation;
  27 +
  28 + private Integer piece;
  29 +
  30 + private Long weight;
  31 +
  32 + private String splitcode;
  33 +
  34 + private String status;
  35 +
  36 + private String offload;
  37 +
  38 + private String offloaduuid;
  39 +
  40 + private Boolean isdelete;
  41 +
  42 + private String customtype;
  43 +
  44 + private String ext2;
  45 +
  46 + private String ext3;
  47 +
  48 + private String ext4;
  49 +
  50 + private String ext5;
  51 +
  52 + public String getUuid() {
  53 + return uuid;
  54 + }
  55 +
  56 + public void setUuid(String uuid) {
  57 + this.uuid = uuid == null ? null : uuid.trim();
  58 + }
  59 +
  60 + public String getAwba() {
  61 + return awba;
  62 + }
  63 +
  64 + public void setAwba(String awba) {
  65 + this.awba = awba == null ? null : awba.trim();
  66 + }
  67 +
  68 + public String getAwbh() {
  69 + return awbh;
  70 + }
  71 +
  72 + public void setAwbh(String awbh) {
  73 + this.awbh = awbh == null ? null : awbh.trim();
  74 + }
  75 +
  76 + public String getCustomcode() {
  77 + return customcode;
  78 + }
  79 +
  80 + public void setCustomcode(String customcode) {
  81 + this.customcode = customcode == null ? null : customcode.trim();
  82 + }
  83 +
  84 + public String getGoodsname() {
  85 + return goodsname;
  86 + }
  87 +
  88 + public void setGoodsname(String goodsname) {
  89 + this.goodsname = goodsname == null ? null : goodsname.trim();
  90 + }
  91 +
  92 + public Date getActime() {
  93 + return actime;
  94 + }
  95 +
  96 + public void setActime(Date actime) {
  97 + this.actime = actime;
  98 + }
  99 +
  100 + public String getCarrier() {
  101 + return carrier;
  102 + }
  103 +
  104 + public void setCarrier(String carrier) {
  105 + this.carrier = carrier == null ? null : carrier.trim();
  106 + }
  107 +
  108 + public String getFlightno() {
  109 + return flightno;
  110 + }
  111 +
  112 + public void setFlightno(String flightno) {
  113 + this.flightno = flightno == null ? null : flightno.trim();
  114 + }
  115 +
  116 + public Date getFlightdate() {
  117 + return flightdate;
  118 + }
  119 +
  120 + public void setFlightdate(Date flightdate) {
  121 + this.flightdate = flightdate;
  122 + }
  123 +
  124 + public String getOriginstation() {
  125 + return originstation;
  126 + }
  127 +
  128 + public void setOriginstation(String originstation) {
  129 + this.originstation = originstation == null ? null : originstation.trim();
  130 + }
  131 +
  132 + public String getDestinationstation() {
  133 + return destinationstation;
  134 + }
  135 +
  136 + public void setDestinationstation(String destinationstation) {
  137 + this.destinationstation = destinationstation == null ? null : destinationstation.trim();
  138 + }
  139 +
  140 + public Integer getPiece() {
  141 + return piece;
  142 + }
  143 +
  144 + public void setPiece(Integer piece) {
  145 + this.piece = piece;
  146 + }
  147 +
  148 + public Long getWeight() {
  149 + return weight;
  150 + }
  151 +
  152 + public void setWeight(Long weight) {
  153 + this.weight = weight;
  154 + }
  155 +
  156 + public String getSplitcode() {
  157 + return splitcode;
  158 + }
  159 +
  160 + public void setSplitcode(String splitcode) {
  161 + this.splitcode = splitcode == null ? null : splitcode.trim();
  162 + }
  163 +
  164 + public String getStatus() {
  165 + return status;
  166 + }
  167 +
  168 + public void setStatus(String status) {
  169 + this.status = status == null ? null : status.trim();
  170 + }
  171 +
  172 + public String getOffload() {
  173 + return offload;
  174 + }
  175 +
  176 + public void setOffload(String offload) {
  177 + this.offload = offload == null ? null : offload.trim();
  178 + }
  179 +
  180 + public String getOffloaduuid() {
  181 + return offloaduuid;
  182 + }
  183 +
  184 + public void setOffloaduuid(String offloaduuid) {
  185 + this.offloaduuid = offloaduuid == null ? null : offloaduuid.trim();
  186 + }
  187 +
  188 + public Boolean getIsdelete() {
  189 + return isdelete;
  190 + }
  191 +
  192 + public void setIsdelete(Boolean isdelete) {
  193 + this.isdelete = isdelete;
  194 + }
  195 +
  196 + public String getCustomtype() {
  197 + return customtype;
  198 + }
  199 +
  200 + public void setCustomtype(String customtype) {
  201 + this.customtype = customtype == null ? null : customtype.trim();
  202 + }
  203 +
  204 + public String getExt2() {
  205 + return ext2;
  206 + }
  207 +
  208 + public void setExt2(String ext2) {
  209 + this.ext2 = ext2 == null ? null : ext2.trim();
  210 + }
  211 +
  212 + public String getExt3() {
  213 + return ext3;
  214 + }
  215 +
  216 + public void setExt3(String ext3) {
  217 + this.ext3 = ext3 == null ? null : ext3.trim();
  218 + }
  219 +
  220 + public String getExt4() {
  221 + return ext4;
  222 + }
  223 +
  224 + public void setExt4(String ext4) {
  225 + this.ext4 = ext4 == null ? null : ext4.trim();
  226 + }
  227 +
  228 + public String getExt5() {
  229 + return ext5;
  230 + }
  231 +
  232 + public void setExt5(String ext5) {
  233 + this.ext5 = ext5 == null ? null : ext5.trim();
  234 + }
  235 +}
  1 +package com.sunyo.wlpt.base.model;
  2 +
  3 +import java.util.Date;
  4 +
  5 +public class NMMS_CUSTOM_MT3201 {
  6 + private String uuid;
  7 +
  8 + private String awba;
  9 +
  10 + private String awbh;
  11 +
  12 + private String carrier;
  13 +
  14 + private String flightno;
  15 +
  16 + private Date flightdate;
  17 +
  18 + private String originstation;
  19 +
  20 + private String destinationstation;
  21 +
  22 + private Integer piece;
  23 +
  24 + private Long weight;
  25 +
  26 + private Date arrivetime;
  27 +
  28 + private String customcode;
  29 +
  30 + private String goodsname;
  31 +
  32 + private Date actime;
  33 +
  34 + private String status;
  35 +
  36 + private Boolean isdelete;
  37 +
  38 + private String ext1;
  39 +
  40 + private String ext2;
  41 +
  42 + private String ext3;
  43 +
  44 + private String ext4;
  45 +
  46 + private String ext5;
  47 +
  48 + public String getUuid() {
  49 + return uuid;
  50 + }
  51 +
  52 + public void setUuid(String uuid) {
  53 + this.uuid = uuid == null ? null : uuid.trim();
  54 + }
  55 +
  56 + public String getAwba() {
  57 + return awba;
  58 + }
  59 +
  60 + public void setAwba(String awba) {
  61 + this.awba = awba == null ? null : awba.trim();
  62 + }
  63 +
  64 + public String getAwbh() {
  65 + return awbh;
  66 + }
  67 +
  68 + public void setAwbh(String awbh) {
  69 + this.awbh = awbh == null ? null : awbh.trim();
  70 + }
  71 +
  72 + public String getCarrier() {
  73 + return carrier;
  74 + }
  75 +
  76 + public void setCarrier(String carrier) {
  77 + this.carrier = carrier == null ? null : carrier.trim();
  78 + }
  79 +
  80 + public String getFlightno() {
  81 + return flightno;
  82 + }
  83 +
  84 + public void setFlightno(String flightno) {
  85 + this.flightno = flightno == null ? null : flightno.trim();
  86 + }
  87 +
  88 + public Date getFlightdate() {
  89 + return flightdate;
  90 + }
  91 +
  92 + public void setFlightdate(Date flightdate) {
  93 + this.flightdate = flightdate;
  94 + }
  95 +
  96 + public String getOriginstation() {
  97 + return originstation;
  98 + }
  99 +
  100 + public void setOriginstation(String originstation) {
  101 + this.originstation = originstation == null ? null : originstation.trim();
  102 + }
  103 +
  104 + public String getDestinationstation() {
  105 + return destinationstation;
  106 + }
  107 +
  108 + public void setDestinationstation(String destinationstation) {
  109 + this.destinationstation = destinationstation == null ? null : destinationstation.trim();
  110 + }
  111 +
  112 + public Integer getPiece() {
  113 + return piece;
  114 + }
  115 +
  116 + public void setPiece(Integer piece) {
  117 + this.piece = piece;
  118 + }
  119 +
  120 + public Long getWeight() {
  121 + return weight;
  122 + }
  123 +
  124 + public void setWeight(Long weight) {
  125 + this.weight = weight;
  126 + }
  127 +
  128 + public Date getArrivetime() {
  129 + return arrivetime;
  130 + }
  131 +
  132 + public void setArrivetime(Date arrivetime) {
  133 + this.arrivetime = arrivetime;
  134 + }
  135 +
  136 + public String getCustomcode() {
  137 + return customcode;
  138 + }
  139 +
  140 + public void setCustomcode(String customcode) {
  141 + this.customcode = customcode == null ? null : customcode.trim();
  142 + }
  143 +
  144 + public String getGoodsname() {
  145 + return goodsname;
  146 + }
  147 +
  148 + public void setGoodsname(String goodsname) {
  149 + this.goodsname = goodsname == null ? null : goodsname.trim();
  150 + }
  151 +
  152 + public Date getActime() {
  153 + return actime;
  154 + }
  155 +
  156 + public void setActime(Date actime) {
  157 + this.actime = actime;
  158 + }
  159 +
  160 + public String getStatus() {
  161 + return status;
  162 + }
  163 +
  164 + public void setStatus(String status) {
  165 + this.status = status == null ? null : status.trim();
  166 + }
  167 +
  168 + public Boolean getIsdelete() {
  169 + return isdelete;
  170 + }
  171 +
  172 + public void setIsdelete(Boolean isdelete) {
  173 + this.isdelete = isdelete;
  174 + }
  175 +
  176 + public String getExt1() {
  177 + return ext1;
  178 + }
  179 +
  180 + public void setExt1(String ext1) {
  181 + this.ext1 = ext1 == null ? null : ext1.trim();
  182 + }
  183 +
  184 + public String getExt2() {
  185 + return ext2;
  186 + }
  187 +
  188 + public void setExt2(String ext2) {
  189 + this.ext2 = ext2 == null ? null : ext2.trim();
  190 + }
  191 +
  192 + public String getExt3() {
  193 + return ext3;
  194 + }
  195 +
  196 + public void setExt3(String ext3) {
  197 + this.ext3 = ext3 == null ? null : ext3.trim();
  198 + }
  199 +
  200 + public String getExt4() {
  201 + return ext4;
  202 + }
  203 +
  204 + public void setExt4(String ext4) {
  205 + this.ext4 = ext4 == null ? null : ext4.trim();
  206 + }
  207 +
  208 + public String getExt5() {
  209 + return ext5;
  210 + }
  211 +
  212 + public void setExt5(String ext5) {
  213 + this.ext5 = ext5 == null ? null : ext5.trim();
  214 + }
  215 +}
  1 +package com.sunyo.wlpt.base.model;
  2 +
  3 +import java.util.Date;
  4 +
  5 +public class NMMS_CUSTOM_MT4201 {
  6 + private String uuid;
  7 +
  8 + private String carrier;
  9 +
  10 + private String flightno;
  11 +
  12 + private Date flightdate;
  13 +
  14 + private String originstation;
  15 +
  16 + private String destinationstation;
  17 +
  18 + private String awba;
  19 +
  20 + private String awbh;
  21 +
  22 + private Integer lodingpiece;
  23 +
  24 + private Long lodingweight;
  25 +
  26 + private String customcode;
  27 +
  28 + private String goodsname;
  29 +
  30 + private Date actime;
  31 +
  32 + private Date loadingtime;
  33 +
  34 + private String specialgoods;
  35 +
  36 + private String status;
  37 +
  38 + private Boolean isdelete;
  39 +
  40 + private String ext1;
  41 +
  42 + private String ext2;
  43 +
  44 + private String ext3;
  45 +
  46 + private String ext4;
  47 +
  48 + private String ext5;
  49 +
  50 + public String getUuid() {
  51 + return uuid;
  52 + }
  53 +
  54 + public void setUuid(String uuid) {
  55 + this.uuid = uuid == null ? null : uuid.trim();
  56 + }
  57 +
  58 + public String getCarrier() {
  59 + return carrier;
  60 + }
  61 +
  62 + public void setCarrier(String carrier) {
  63 + this.carrier = carrier == null ? null : carrier.trim();
  64 + }
  65 +
  66 + public String getFlightno() {
  67 + return flightno;
  68 + }
  69 +
  70 + public void setFlightno(String flightno) {
  71 + this.flightno = flightno == null ? null : flightno.trim();
  72 + }
  73 +
  74 + public Date getFlightdate() {
  75 + return flightdate;
  76 + }
  77 +
  78 + public void setFlightdate(Date flightdate) {
  79 + this.flightdate = flightdate;
  80 + }
  81 +
  82 + public String getOriginstation() {
  83 + return originstation;
  84 + }
  85 +
  86 + public void setOriginstation(String originstation) {
  87 + this.originstation = originstation == null ? null : originstation.trim();
  88 + }
  89 +
  90 + public String getDestinationstation() {
  91 + return destinationstation;
  92 + }
  93 +
  94 + public void setDestinationstation(String destinationstation) {
  95 + this.destinationstation = destinationstation == null ? null : destinationstation.trim();
  96 + }
  97 +
  98 + public String getAwba() {
  99 + return awba;
  100 + }
  101 +
  102 + public void setAwba(String awba) {
  103 + this.awba = awba == null ? null : awba.trim();
  104 + }
  105 +
  106 + public String getAwbh() {
  107 + return awbh;
  108 + }
  109 +
  110 + public void setAwbh(String awbh) {
  111 + this.awbh = awbh == null ? null : awbh.trim();
  112 + }
  113 +
  114 + public Integer getLodingpiece() {
  115 + return lodingpiece;
  116 + }
  117 +
  118 + public void setLodingpiece(Integer lodingpiece) {
  119 + this.lodingpiece = lodingpiece;
  120 + }
  121 +
  122 + public Long getLodingweight() {
  123 + return lodingweight;
  124 + }
  125 +
  126 + public void setLodingweight(Long lodingweight) {
  127 + this.lodingweight = lodingweight;
  128 + }
  129 +
  130 + public String getCustomcode() {
  131 + return customcode;
  132 + }
  133 +
  134 + public void setCustomcode(String customcode) {
  135 + this.customcode = customcode == null ? null : customcode.trim();
  136 + }
  137 +
  138 + public String getGoodsname() {
  139 + return goodsname;
  140 + }
  141 +
  142 + public void setGoodsname(String goodsname) {
  143 + this.goodsname = goodsname == null ? null : goodsname.trim();
  144 + }
  145 +
  146 + public Date getActime() {
  147 + return actime;
  148 + }
  149 +
  150 + public void setActime(Date actime) {
  151 + this.actime = actime;
  152 + }
  153 +
  154 + public Date getLoadingtime() {
  155 + return loadingtime;
  156 + }
  157 +
  158 + public void setLoadingtime(Date loadingtime) {
  159 + this.loadingtime = loadingtime;
  160 + }
  161 +
  162 + public String getSpecialgoods() {
  163 + return specialgoods;
  164 + }
  165 +
  166 + public void setSpecialgoods(String specialgoods) {
  167 + this.specialgoods = specialgoods == null ? null : specialgoods.trim();
  168 + }
  169 +
  170 + public String getStatus() {
  171 + return status;
  172 + }
  173 +
  174 + public void setStatus(String status) {
  175 + this.status = status == null ? null : status.trim();
  176 + }
  177 +
  178 + public Boolean getIsdelete() {
  179 + return isdelete;
  180 + }
  181 +
  182 + public void setIsdelete(Boolean isdelete) {
  183 + this.isdelete = isdelete;
  184 + }
  185 +
  186 + public String getExt1() {
  187 + return ext1;
  188 + }
  189 +
  190 + public void setExt1(String ext1) {
  191 + this.ext1 = ext1 == null ? null : ext1.trim();
  192 + }
  193 +
  194 + public String getExt2() {
  195 + return ext2;
  196 + }
  197 +
  198 + public void setExt2(String ext2) {
  199 + this.ext2 = ext2 == null ? null : ext2.trim();
  200 + }
  201 +
  202 + public String getExt3() {
  203 + return ext3;
  204 + }
  205 +
  206 + public void setExt3(String ext3) {
  207 + this.ext3 = ext3 == null ? null : ext3.trim();
  208 + }
  209 +
  210 + public String getExt4() {
  211 + return ext4;
  212 + }
  213 +
  214 + public void setExt4(String ext4) {
  215 + this.ext4 = ext4 == null ? null : ext4.trim();
  216 + }
  217 +
  218 + public String getExt5() {
  219 + return ext5;
  220 + }
  221 +
  222 + public void setExt5(String ext5) {
  223 + this.ext5 = ext5 == null ? null : ext5.trim();
  224 + }
  225 +}
  1 +package com.sunyo.wlpt.base.model;
  2 +
  3 +import java.util.Date;
  4 +
  5 +public class NMMS_CUSTOM_MT520X {
  6 + private String uuid;
  7 +
  8 + private String awba;
  9 +
  10 + private String awbh;
  11 +
  12 + private String carrier;
  13 +
  14 + private String flightno;
  15 +
  16 + private Date flightdate;
  17 +
  18 + private String originstation;
  19 +
  20 + private String destinationstation;
  21 +
  22 + private Integer piece;
  23 +
  24 + private Long weight;
  25 +
  26 + private Date starttime;
  27 +
  28 + private Date endtime;
  29 +
  30 + private String customcode;
  31 +
  32 + private String goodsname;
  33 +
  34 + private Date actime;
  35 +
  36 + private String rcfdep;
  37 +
  38 + private String status;
  39 +
  40 + private Boolean isdelete;
  41 +
  42 + private String ext1;
  43 +
  44 + private String ext2;
  45 +
  46 + private String ext3;
  47 +
  48 + private String ext4;
  49 +
  50 + private String ext5;
  51 +
  52 + public String getUuid() {
  53 + return uuid;
  54 + }
  55 +
  56 + public void setUuid(String uuid) {
  57 + this.uuid = uuid == null ? null : uuid.trim();
  58 + }
  59 +
  60 + public String getAwba() {
  61 + return awba;
  62 + }
  63 +
  64 + public void setAwba(String awba) {
  65 + this.awba = awba == null ? null : awba.trim();
  66 + }
  67 +
  68 + public String getAwbh() {
  69 + return awbh;
  70 + }
  71 +
  72 + public void setAwbh(String awbh) {
  73 + this.awbh = awbh == null ? null : awbh.trim();
  74 + }
  75 +
  76 + public String getCarrier() {
  77 + return carrier;
  78 + }
  79 +
  80 + public void setCarrier(String carrier) {
  81 + this.carrier = carrier == null ? null : carrier.trim();
  82 + }
  83 +
  84 + public String getFlightno() {
  85 + return flightno;
  86 + }
  87 +
  88 + public void setFlightno(String flightno) {
  89 + this.flightno = flightno == null ? null : flightno.trim();
  90 + }
  91 +
  92 + public Date getFlightdate() {
  93 + return flightdate;
  94 + }
  95 +
  96 + public void setFlightdate(Date flightdate) {
  97 + this.flightdate = flightdate;
  98 + }
  99 +
  100 + public String getOriginstation() {
  101 + return originstation;
  102 + }
  103 +
  104 + public void setOriginstation(String originstation) {
  105 + this.originstation = originstation == null ? null : originstation.trim();
  106 + }
  107 +
  108 + public String getDestinationstation() {
  109 + return destinationstation;
  110 + }
  111 +
  112 + public void setDestinationstation(String destinationstation) {
  113 + this.destinationstation = destinationstation == null ? null : destinationstation.trim();
  114 + }
  115 +
  116 + public Integer getPiece() {
  117 + return piece;
  118 + }
  119 +
  120 + public void setPiece(Integer piece) {
  121 + this.piece = piece;
  122 + }
  123 +
  124 + public Long getWeight() {
  125 + return weight;
  126 + }
  127 +
  128 + public void setWeight(Long weight) {
  129 + this.weight = weight;
  130 + }
  131 +
  132 + public Date getStarttime() {
  133 + return starttime;
  134 + }
  135 +
  136 + public void setStarttime(Date starttime) {
  137 + this.starttime = starttime;
  138 + }
  139 +
  140 + public Date getEndtime() {
  141 + return endtime;
  142 + }
  143 +
  144 + public void setEndtime(Date endtime) {
  145 + this.endtime = endtime;
  146 + }
  147 +
  148 + public String getCustomcode() {
  149 + return customcode;
  150 + }
  151 +
  152 + public void setCustomcode(String customcode) {
  153 + this.customcode = customcode == null ? null : customcode.trim();
  154 + }
  155 +
  156 + public String getGoodsname() {
  157 + return goodsname;
  158 + }
  159 +
  160 + public void setGoodsname(String goodsname) {
  161 + this.goodsname = goodsname == null ? null : goodsname.trim();
  162 + }
  163 +
  164 + public Date getActime() {
  165 + return actime;
  166 + }
  167 +
  168 + public void setActime(Date actime) {
  169 + this.actime = actime;
  170 + }
  171 +
  172 + public String getRcfdep() {
  173 + return rcfdep;
  174 + }
  175 +
  176 + public void setRcfdep(String rcfdep) {
  177 + this.rcfdep = rcfdep == null ? null : rcfdep.trim();
  178 + }
  179 +
  180 + public String getStatus() {
  181 + return status;
  182 + }
  183 +
  184 + public void setStatus(String status) {
  185 + this.status = status == null ? null : status.trim();
  186 + }
  187 +
  188 + public Boolean getIsdelete() {
  189 + return isdelete;
  190 + }
  191 +
  192 + public void setIsdelete(Boolean isdelete) {
  193 + this.isdelete = isdelete;
  194 + }
  195 +
  196 + public String getExt1() {
  197 + return ext1;
  198 + }
  199 +
  200 + public void setExt1(String ext1) {
  201 + this.ext1 = ext1 == null ? null : ext1.trim();
  202 + }
  203 +
  204 + public String getExt2() {
  205 + return ext2;
  206 + }
  207 +
  208 + public void setExt2(String ext2) {
  209 + this.ext2 = ext2 == null ? null : ext2.trim();
  210 + }
  211 +
  212 + public String getExt3() {
  213 + return ext3;
  214 + }
  215 +
  216 + public void setExt3(String ext3) {
  217 + this.ext3 = ext3 == null ? null : ext3.trim();
  218 + }
  219 +
  220 + public String getExt4() {
  221 + return ext4;
  222 + }
  223 +
  224 + public void setExt4(String ext4) {
  225 + this.ext4 = ext4 == null ? null : ext4.trim();
  226 + }
  227 +
  228 + public String getExt5() {
  229 + return ext5;
  230 + }
  231 +
  232 + public void setExt5(String ext5) {
  233 + this.ext5 = ext5 == null ? null : ext5.trim();
  234 + }
  235 +}
  1 +package com.sunyo.wlpt.base.model;
  2 +
  3 +public class NMMS_CUSTOM_MT8205 {
  4 + private String uuid;
  5 +
  6 + private String uuid1201;
  7 +
  8 + private String uuid2201;
  9 +
  10 + private Integer transpiece;
  11 +
  12 + private Long transweight;
  13 +
  14 + private String goodsname;
  15 +
  16 + private String goodspackage;
  17 +
  18 + private String status;
  19 +
  20 + private String awboriginstation;
  21 +
  22 + private String awbdesstation;
  23 +
  24 + private String customcode;
  25 +
  26 + private Boolean isdelete;
  27 +
  28 + private String ext1;
  29 +
  30 + private String ext2;
  31 +
  32 + private String ext3;
  33 +
  34 + private String ext4;
  35 +
  36 + private String ext5;
  37 +
  38 + public String getUuid() {
  39 + return uuid;
  40 + }
  41 +
  42 + public void setUuid(String uuid) {
  43 + this.uuid = uuid == null ? null : uuid.trim();
  44 + }
  45 +
  46 + public String getUuid1201() {
  47 + return uuid1201;
  48 + }
  49 +
  50 + public void setUuid1201(String uuid1201) {
  51 + this.uuid1201 = uuid1201 == null ? null : uuid1201.trim();
  52 + }
  53 +
  54 + public String getUuid2201() {
  55 + return uuid2201;
  56 + }
  57 +
  58 + public void setUuid2201(String uuid2201) {
  59 + this.uuid2201 = uuid2201 == null ? null : uuid2201.trim();
  60 + }
  61 +
  62 + public Integer getTranspiece() {
  63 + return transpiece;
  64 + }
  65 +
  66 + public void setTranspiece(Integer transpiece) {
  67 + this.transpiece = transpiece;
  68 + }
  69 +
  70 + public Long getTransweight() {
  71 + return transweight;
  72 + }
  73 +
  74 + public void setTransweight(Long transweight) {
  75 + this.transweight = transweight;
  76 + }
  77 +
  78 + public String getGoodsname() {
  79 + return goodsname;
  80 + }
  81 +
  82 + public void setGoodsname(String goodsname) {
  83 + this.goodsname = goodsname == null ? null : goodsname.trim();
  84 + }
  85 +
  86 + public String getGoodspackage() {
  87 + return goodspackage;
  88 + }
  89 +
  90 + public void setGoodspackage(String goodspackage) {
  91 + this.goodspackage = goodspackage == null ? null : goodspackage.trim();
  92 + }
  93 +
  94 + public String getStatus() {
  95 + return status;
  96 + }
  97 +
  98 + public void setStatus(String status) {
  99 + this.status = status == null ? null : status.trim();
  100 + }
  101 +
  102 + public String getAwboriginstation() {
  103 + return awboriginstation;
  104 + }
  105 +
  106 + public void setAwboriginstation(String awboriginstation) {
  107 + this.awboriginstation = awboriginstation == null ? null : awboriginstation.trim();
  108 + }
  109 +
  110 + public String getAwbdesstation() {
  111 + return awbdesstation;
  112 + }
  113 +
  114 + public void setAwbdesstation(String awbdesstation) {
  115 + this.awbdesstation = awbdesstation == null ? null : awbdesstation.trim();
  116 + }
  117 +
  118 + public String getCustomcode() {
  119 + return customcode;
  120 + }
  121 +
  122 + public void setCustomcode(String customcode) {
  123 + this.customcode = customcode == null ? null : customcode.trim();
  124 + }
  125 +
  126 + public Boolean getIsdelete() {
  127 + return isdelete;
  128 + }
  129 +
  130 + public void setIsdelete(Boolean isdelete) {
  131 + this.isdelete = isdelete;
  132 + }
  133 +
  134 + public String getExt1() {
  135 + return ext1;
  136 + }
  137 +
  138 + public void setExt1(String ext1) {
  139 + this.ext1 = ext1 == null ? null : ext1.trim();
  140 + }
  141 +
  142 + public String getExt2() {
  143 + return ext2;
  144 + }
  145 +
  146 + public void setExt2(String ext2) {
  147 + this.ext2 = ext2 == null ? null : ext2.trim();
  148 + }
  149 +
  150 + public String getExt3() {
  151 + return ext3;
  152 + }
  153 +
  154 + public void setExt3(String ext3) {
  155 + this.ext3 = ext3 == null ? null : ext3.trim();
  156 + }
  157 +
  158 + public String getExt4() {
  159 + return ext4;
  160 + }
  161 +
  162 + public void setExt4(String ext4) {
  163 + this.ext4 = ext4 == null ? null : ext4.trim();
  164 + }
  165 +
  166 + public String getExt5() {
  167 + return ext5;
  168 + }
  169 +
  170 + public void setExt5(String ext5) {
  171 + this.ext5 = ext5 == null ? null : ext5.trim();
  172 + }
  173 +}
  1 +package com.sunyo.wlpt.base.model;
  2 +
  3 +import java.util.Date;
  4 +
  5 +public class NMMS_CUSTOM_RESPONSE {
  6 + private String id;
  7 +
  8 + private Date flightdate;
  9 +
  10 + private String flightno;
  11 +
  12 + private String carrier;
  13 +
  14 + private String awbano;
  15 +
  16 + private String awbhno;
  17 +
  18 + private String bustype;
  19 +
  20 + private Date busdate;
  21 +
  22 + private Long busweight;
  23 +
  24 + private Integer buspiece;
  25 +
  26 + private String opertype;
  27 +
  28 + private String cusmsgid;
  29 +
  30 + private String cussenderid;
  31 +
  32 + private String cusreciverid;
  33 +
  34 + private String cusversion;
  35 +
  36 + private String cusfunctioncode;
  37 +
  38 + private Date cusresrcvtime;
  39 +
  40 + private Date cusressendtime;
  41 +
  42 + private String cusrescode;
  43 +
  44 + private String cusresstatus;
  45 +
  46 + private String operusername;
  47 +
  48 + private String opersystemname;
  49 +
  50 + private String cusrestext;
  51 +
  52 + public String getId() {
  53 + return id;
  54 + }
  55 +
  56 + public void setId(String id) {
  57 + this.id = id == null ? null : id.trim();
  58 + }
  59 +
  60 + public Date getFlightdate() {
  61 + return flightdate;
  62 + }
  63 +
  64 + public void setFlightdate(Date flightdate) {
  65 + this.flightdate = flightdate;
  66 + }
  67 +
  68 + public String getFlightno() {
  69 + return flightno;
  70 + }
  71 +
  72 + public void setFlightno(String flightno) {
  73 + this.flightno = flightno == null ? null : flightno.trim();
  74 + }
  75 +
  76 + public String getCarrier() {
  77 + return carrier;
  78 + }
  79 +
  80 + public void setCarrier(String carrier) {
  81 + this.carrier = carrier == null ? null : carrier.trim();
  82 + }
  83 +
  84 + public String getAwbano() {
  85 + return awbano;
  86 + }
  87 +
  88 + public void setAwbano(String awbano) {
  89 + this.awbano = awbano == null ? null : awbano.trim();
  90 + }
  91 +
  92 + public String getAwbhno() {
  93 + return awbhno;
  94 + }
  95 +
  96 + public void setAwbhno(String awbhno) {
  97 + this.awbhno = awbhno == null ? null : awbhno.trim();
  98 + }
  99 +
  100 + public String getBustype() {
  101 + return bustype;
  102 + }
  103 +
  104 + public void setBustype(String bustype) {
  105 + this.bustype = bustype == null ? null : bustype.trim();
  106 + }
  107 +
  108 + public Date getBusdate() {
  109 + return busdate;
  110 + }
  111 +
  112 + public void setBusdate(Date busdate) {
  113 + this.busdate = busdate;
  114 + }
  115 +
  116 + public Long getBusweight() {
  117 + return busweight;
  118 + }
  119 +
  120 + public void setBusweight(Long busweight) {
  121 + this.busweight = busweight;
  122 + }
  123 +
  124 + public Integer getBuspiece() {
  125 + return buspiece;
  126 + }
  127 +
  128 + public void setBuspiece(Integer buspiece) {
  129 + this.buspiece = buspiece;
  130 + }
  131 +
  132 + public String getOpertype() {
  133 + return opertype;
  134 + }
  135 +
  136 + public void setOpertype(String opertype) {
  137 + this.opertype = opertype == null ? null : opertype.trim();
  138 + }
  139 +
  140 + public String getCusmsgid() {
  141 + return cusmsgid;
  142 + }
  143 +
  144 + public void setCusmsgid(String cusmsgid) {
  145 + this.cusmsgid = cusmsgid == null ? null : cusmsgid.trim();
  146 + }
  147 +
  148 + public String getCussenderid() {
  149 + return cussenderid;
  150 + }
  151 +
  152 + public void setCussenderid(String cussenderid) {
  153 + this.cussenderid = cussenderid == null ? null : cussenderid.trim();
  154 + }
  155 +
  156 + public String getCusreciverid() {
  157 + return cusreciverid;
  158 + }
  159 +
  160 + public void setCusreciverid(String cusreciverid) {
  161 + this.cusreciverid = cusreciverid == null ? null : cusreciverid.trim();
  162 + }
  163 +
  164 + public String getCusversion() {
  165 + return cusversion;
  166 + }
  167 +
  168 + public void setCusversion(String cusversion) {
  169 + this.cusversion = cusversion == null ? null : cusversion.trim();
  170 + }
  171 +
  172 + public String getCusfunctioncode() {
  173 + return cusfunctioncode;
  174 + }
  175 +
  176 + public void setCusfunctioncode(String cusfunctioncode) {
  177 + this.cusfunctioncode = cusfunctioncode == null ? null : cusfunctioncode.trim();
  178 + }
  179 +
  180 + public Date getCusresrcvtime() {
  181 + return cusresrcvtime;
  182 + }
  183 +
  184 + public void setCusresrcvtime(Date cusresrcvtime) {
  185 + this.cusresrcvtime = cusresrcvtime;
  186 + }
  187 +
  188 + public Date getCusressendtime() {
  189 + return cusressendtime;
  190 + }
  191 +
  192 + public void setCusressendtime(Date cusressendtime) {
  193 + this.cusressendtime = cusressendtime;
  194 + }
  195 +
  196 + public String getCusrescode() {
  197 + return cusrescode;
  198 + }
  199 +
  200 + public void setCusrescode(String cusrescode) {
  201 + this.cusrescode = cusrescode == null ? null : cusrescode.trim();
  202 + }
  203 +
  204 + public String getCusresstatus() {
  205 + return cusresstatus;
  206 + }
  207 +
  208 + public void setCusresstatus(String cusresstatus) {
  209 + this.cusresstatus = cusresstatus == null ? null : cusresstatus.trim();
  210 + }
  211 +
  212 + public String getOperusername() {
  213 + return operusername;
  214 + }
  215 +
  216 + public void setOperusername(String operusername) {
  217 + this.operusername = operusername == null ? null : operusername.trim();
  218 + }
  219 +
  220 + public String getOpersystemname() {
  221 + return opersystemname;
  222 + }
  223 +
  224 + public void setOpersystemname(String opersystemname) {
  225 + this.opersystemname = opersystemname == null ? null : opersystemname.trim();
  226 + }
  227 +
  228 + public String getCusrestext() {
  229 + return cusrestext;
  230 + }
  231 +
  232 + public void setCusrestext(String cusrestext) {
  233 + this.cusrestext = cusrestext == null ? null : cusrestext.trim();
  234 + }
  235 +}
  1 +package com.sunyo.wlpt.base.model;
  2 +
  3 +import java.util.Date;
  4 +
  5 +public class NMMS_FFM_INFO {
  6 + private String autoid;
  7 +
  8 + private Date createdate;
  9 +
  10 + private String flightno;
  11 +
  12 + private Date flightdate;
  13 +
  14 + private String waybillnomaster;
  15 +
  16 + private String originatingstation;
  17 +
  18 + private String destinationstation;
  19 +
  20 + private String manifesttotalpiece;
  21 +
  22 + private String manifesttotalweight;
  23 +
  24 + private String productname;
  25 +
  26 + private String specialgoodscode;
  27 +
  28 + private String customscode;
  29 +
  30 + private String customsstatus;
  31 +
  32 + private String isbatch;
  33 +
  34 + private String pallet;
  35 +
  36 + private String pallettype;
  37 +
  38 + private String palletno;
  39 +
  40 + private String reportorder;
  41 +
  42 + private String islast;
  43 +
  44 + private String originatingstationBill;
  45 +
  46 + private String destinationstationBill;
  47 +
  48 + private String totalpiece;
  49 +
  50 + private String dealstatus;
  51 +
  52 + public String getAutoid() {
  53 + return autoid;
  54 + }
  55 +
  56 + public void setAutoid(String autoid) {
  57 + this.autoid = autoid == null ? null : autoid.trim();
  58 + }
  59 +
  60 + public Date getCreatedate() {
  61 + return createdate;
  62 + }
  63 +
  64 + public void setCreatedate(Date createdate) {
  65 + this.createdate = createdate;
  66 + }
  67 +
  68 + public String getFlightno() {
  69 + return flightno;
  70 + }
  71 +
  72 + public void setFlightno(String flightno) {
  73 + this.flightno = flightno == null ? null : flightno.trim();
  74 + }
  75 +
  76 + public Date getFlightdate() {
  77 + return flightdate;
  78 + }
  79 +
  80 + public void setFlightdate(Date flightdate) {
  81 + this.flightdate = flightdate;
  82 + }
  83 +
  84 + public String getWaybillnomaster() {
  85 + return waybillnomaster;
  86 + }
  87 +
  88 + public void setWaybillnomaster(String waybillnomaster) {
  89 + this.waybillnomaster = waybillnomaster == null ? null : waybillnomaster.trim();
  90 + }
  91 +
  92 + public String getOriginatingstation() {
  93 + return originatingstation;
  94 + }
  95 +
  96 + public void setOriginatingstation(String originatingstation) {
  97 + this.originatingstation = originatingstation == null ? null : originatingstation.trim();
  98 + }
  99 +
  100 + public String getDestinationstation() {
  101 + return destinationstation;
  102 + }
  103 +
  104 + public void setDestinationstation(String destinationstation) {
  105 + this.destinationstation = destinationstation == null ? null : destinationstation.trim();
  106 + }
  107 +
  108 + public String getManifesttotalpiece() {
  109 + return manifesttotalpiece;
  110 + }
  111 +
  112 + public void setManifesttotalpiece(String manifesttotalpiece) {
  113 + this.manifesttotalpiece = manifesttotalpiece == null ? null : manifesttotalpiece.trim();
  114 + }
  115 +
  116 + public String getManifesttotalweight() {
  117 + return manifesttotalweight;
  118 + }
  119 +
  120 + public void setManifesttotalweight(String manifesttotalweight) {
  121 + this.manifesttotalweight = manifesttotalweight == null ? null : manifesttotalweight.trim();
  122 + }
  123 +
  124 + public String getProductname() {
  125 + return productname;
  126 + }
  127 +
  128 + public void setProductname(String productname) {
  129 + this.productname = productname == null ? null : productname.trim();
  130 + }
  131 +
  132 + public String getSpecialgoodscode() {
  133 + return specialgoodscode;
  134 + }
  135 +
  136 + public void setSpecialgoodscode(String specialgoodscode) {
  137 + this.specialgoodscode = specialgoodscode == null ? null : specialgoodscode.trim();
  138 + }
  139 +
  140 + public String getCustomscode() {
  141 + return customscode;
  142 + }
  143 +
  144 + public void setCustomscode(String customscode) {
  145 + this.customscode = customscode == null ? null : customscode.trim();
  146 + }
  147 +
  148 + public String getCustomsstatus() {
  149 + return customsstatus;
  150 + }
  151 +
  152 + public void setCustomsstatus(String customsstatus) {
  153 + this.customsstatus = customsstatus == null ? null : customsstatus.trim();
  154 + }
  155 +
  156 + public String getIsbatch() {
  157 + return isbatch;
  158 + }
  159 +
  160 + public void setIsbatch(String isbatch) {
  161 + this.isbatch = isbatch == null ? null : isbatch.trim();
  162 + }
  163 +
  164 + public String getPallet() {
  165 + return pallet;
  166 + }
  167 +
  168 + public void setPallet(String pallet) {
  169 + this.pallet = pallet == null ? null : pallet.trim();
  170 + }
  171 +
  172 + public String getPallettype() {
  173 + return pallettype;
  174 + }
  175 +
  176 + public void setPallettype(String pallettype) {
  177 + this.pallettype = pallettype == null ? null : pallettype.trim();
  178 + }
  179 +
  180 + public String getPalletno() {
  181 + return palletno;
  182 + }
  183 +
  184 + public void setPalletno(String palletno) {
  185 + this.palletno = palletno == null ? null : palletno.trim();
  186 + }
  187 +
  188 + public String getReportorder() {
  189 + return reportorder;
  190 + }
  191 +
  192 + public void setReportorder(String reportorder) {
  193 + this.reportorder = reportorder == null ? null : reportorder.trim();
  194 + }
  195 +
  196 + public String getIslast() {
  197 + return islast;
  198 + }
  199 +
  200 + public void setIslast(String islast) {
  201 + this.islast = islast == null ? null : islast.trim();
  202 + }
  203 +
  204 + public String getOriginatingstationBill() {
  205 + return originatingstationBill;
  206 + }
  207 +
  208 + public void setOriginatingstationBill(String originatingstationBill) {
  209 + this.originatingstationBill = originatingstationBill == null ? null : originatingstationBill.trim();
  210 + }
  211 +
  212 + public String getDestinationstationBill() {
  213 + return destinationstationBill;
  214 + }
  215 +
  216 + public void setDestinationstationBill(String destinationstationBill) {
  217 + this.destinationstationBill = destinationstationBill == null ? null : destinationstationBill.trim();
  218 + }
  219 +
  220 + public String getTotalpiece() {
  221 + return totalpiece;
  222 + }
  223 +
  224 + public void setTotalpiece(String totalpiece) {
  225 + this.totalpiece = totalpiece == null ? null : totalpiece.trim();
  226 + }
  227 +
  228 + public String getDealstatus() {
  229 + return dealstatus;
  230 + }
  231 +
  232 + public void setDealstatus(String dealstatus) {
  233 + this.dealstatus = dealstatus == null ? null : dealstatus.trim();
  234 + }
  235 +}
  1 +package com.sunyo.wlpt.base.model;
  2 +
  3 +public class STATIC_CUSTOMCODE_CUSTOMNAME {
  4 + private String customcode;
  5 +
  6 + private String customname;
  7 +
  8 + public String getCustomcode() {
  9 + return customcode;
  10 + }
  11 +
  12 + public void setCustomcode(String customcode) {
  13 + this.customcode = customcode == null ? null : customcode.trim();
  14 + }
  15 +
  16 + public String getCustomname() {
  17 + return customname;
  18 + }
  19 +
  20 + public void setCustomname(String customname) {
  21 + this.customname = customname == null ? null : customname.trim();
  22 + }
  23 +}
  1 +package com.sunyo.wlpt.base.model;
  2 +
  3 +import java.math.BigDecimal;
  4 +import java.util.Date;
  5 +
  6 +public class STATIC_CUSTOM_RESPONSE_BASE {
  7 + private String responsecode;
  8 +
  9 + private String responsetext;
  10 +
  11 + private String typeremark;
  12 +
  13 + private String type;
  14 +
  15 + private BigDecimal sortnum;
  16 +
  17 + private Date operationtime;
  18 +
  19 + public String getResponsecode() {
  20 + return responsecode;
  21 + }
  22 +
  23 + public void setResponsecode(String responsecode) {
  24 + this.responsecode = responsecode == null ? null : responsecode.trim();
  25 + }
  26 +
  27 + public String getResponsetext() {
  28 + return responsetext;
  29 + }
  30 +
  31 + public void setResponsetext(String responsetext) {
  32 + this.responsetext = responsetext == null ? null : responsetext.trim();
  33 + }
  34 +
  35 + public String getTyperemark() {
  36 + return typeremark;
  37 + }
  38 +
  39 + public void setTyperemark(String typeremark) {
  40 + this.typeremark = typeremark == null ? null : typeremark.trim();
  41 + }
  42 +
  43 + public String getType() {
  44 + return type;
  45 + }
  46 +
  47 + public void setType(String type) {
  48 + this.type = type == null ? null : type.trim();
  49 + }
  50 +
  51 + public BigDecimal getSortnum() {
  52 + return sortnum;
  53 + }
  54 +
  55 + public void setSortnum(BigDecimal sortnum) {
  56 + this.sortnum = sortnum;
  57 + }
  58 +
  59 + public Date getOperationtime() {
  60 + return operationtime;
  61 + }
  62 +
  63 + public void setOperationtime(Date operationtime) {
  64 + this.operationtime = operationtime;
  65 + }
  66 +}
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<!DOCTYPE generatorConfiguration
  3 + PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
  4 + "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">
  5 +<generatorConfiguration>
  6 + <!-- 数据库驱动:选择你的本地硬盘上面的数据库驱动包-->
  7 + <classPathEntry location="/Users/mrz/Downloads/mybatis-generator-core-1.3.2/lib/mysql-connector-java-5.1.25-bin.jar"/>
  8 + <!--<classPathEntry location="/Users/mrz/Documents/maven/ojdbc6.jar"/>-->
  9 + <context id="DB2Tables" targetRuntime="MyBatis3">
  10 + <commentGenerator>
  11 + <property name="suppressDate" value="true"/>
  12 + <!-- 是否去除自动生成的注释 true:是 : false:否 -->
  13 + <property name="suppressAllComments" value="true"/>
  14 + </commentGenerator>
  15 + <!--数据库链接URL,用户名、密码 -->
  16 + <jdbcConnection driverClass="com.mysql.jdbc.Driver"
  17 + connectionURL="jdbc:mysql://118.31.66.166:3306/WLPT_NMMS"
  18 + userId="110"
  19 + password="QAHqCJf2kFYCLirM">
  20 + </jdbcConnection>
  21 + <!--<jdbcConnection driverClass="oracle.jdbc.driver.OracleDriver"-->
  22 + <!--connectionURL="jdbc:oracle:thin:@10.50.3.68:1521:CGODW"-->
  23 + <!--userId="CGOETL"-->
  24 + <!--password="1q2w3e4r">-->
  25 + <!--</jdbcConnection>-->
  26 + <!-- 默认false,把JDBC DECIMAL 和 NUMERIC 类型解析为 Integer,为 true时把JDBC DECIMAL 和
  27 + NUMERIC 类型解析为java.math.BigDecimal -->
  28 + <!--<javaTypeResolver>-->
  29 + <!--<property name="forceBigDecimals" value="true" />-->
  30 + <!--</javaTypeResolver>-->
  31 + <javaTypeResolver>
  32 + <property name="forceBigDecimals" value="false"/>
  33 + </javaTypeResolver>
  34 + <!-- 生成模型的包名和位置-->
  35 + <javaModelGenerator targetPackage="com.sunyo.wlpt.base.model" targetProject="src/main/java">
  36 + <property name="enableSubPackages" value="true"/>
  37 + <property name="trimStrings" value="true"/>
  38 + </javaModelGenerator>
  39 + <!-- 生成映射文件的包名和位置-->
  40 + <sqlMapGenerator targetPackage="mapping" targetProject="src/main/resources">
  41 + <property name="enableSubPackages" value="true"/>
  42 + </sqlMapGenerator>
  43 + <!-- 生成DAO的包名和位置-->
  44 + <javaClientGenerator type="XMLMAPPER" targetPackage="com.sunyo.wlpt.base.dao" targetProject="src/main/java">
  45 + <property name="enableSubPackages" value="true"/>
  46 + </javaClientGenerator>
  47 + <!-- 要生成的表 tableName是数据库中的表名或视图名 domainObjectName是实体类名-->
  48 + <table tableName="CUSTOM_MT1201" domainObjectName="NMMS_CUSTOM_MT1201" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
  49 + <table tableName="CUSTOM_MT2201" domainObjectName="NMMS_CUSTOM_MT2201" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
  50 + <table tableName="CUSTOM_MT3201" domainObjectName="NMMS_CUSTOM_MT3201" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
  51 + <table tableName="CUSTOM_MT4201" domainObjectName="NMMS_CUSTOM_MT4201" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
  52 + <table tableName="CUSTOM_MT520X" domainObjectName="NMMS_CUSTOM_MT520X" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
  53 + <table tableName="CUSTOM_MT8205" domainObjectName="NMMS_CUSTOM_MT8205" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
  54 + <table tableName="FFM_INFO" domainObjectName="NMMS_FFM_INFO" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
  55 + <table tableName="CONFIG_AIRSTATION_CUSTOMCODE" domainObjectName="CONFIG_AIRSTATION_CUSTOMCODE" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
  56 + <table tableName="CONFIG_USER_CARRIER" domainObjectName="CONFIG_USER_CARRIER" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
  57 + <table tableName="CONFIG_USER_CUSTOMCODE" domainObjectName="CONFIG_USER_CUSTOMCODE" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
  58 + <table tableName="CONFIG_USER_CUSTOMCODE" domainObjectName="CONFIG_USER_CUSTOMCODE" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
  59 + <table tableName="CONFIG_USER_EnterpriseCode" domainObjectName="CONFIG_USER_EnterpriseCode" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
  60 + <table tableName="STATIC_CUSTOM_RESPONSE_BASE" domainObjectName="STATIC_CUSTOM_RESPONSE_BASE" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
  61 + <table tableName="STATIC_CUSTOMCODE_CUSTOMNAME" domainObjectName="STATIC_CUSTOMCODE_CUSTOMNAME" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
  62 + </context>
  63 +</generatorConfiguration>
  1 +<?xml version="1.0" encoding="UTF-8" ?>
  2 +<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
  3 +<mapper namespace="com.sunyo.wlpt.base.dao.AWB_AWBINFOMapper" >
  4 + <resultMap id="BaseResultMap" type="com.sunyo.wlpt.base.model.AWB_AWBINFO" >
  5 + <id column="BILLID" property="billid" jdbcType="VARCHAR" />
  6 + <result column="STOCKTYPEID" property="stocktypeid" jdbcType="VARCHAR" />
  7 + <result column="STOCKPRE" property="stockpre" jdbcType="VARCHAR" />
  8 + <result column="STOCKNO" property="stockno" jdbcType="VARCHAR" />
  9 + <result column="PRODUCTID" property="productid" jdbcType="VARCHAR" />
  10 + <result column="CARRIERPRODUCTID" property="carrierproductid" jdbcType="VARCHAR" />
  11 + <result column="DELFLAG" property="delflag" jdbcType="VARCHAR" />
  12 + <result column="PREVIOUSBILLID" property="previousbillid" jdbcType="VARCHAR" />
  13 + <result column="DOMINT" property="domint" jdbcType="VARCHAR" />
  14 + <result column="CUSTOMCTL" property="customctl" jdbcType="VARCHAR" />
  15 + <result column="SPECOPEID" property="specopeid" jdbcType="VARCHAR" />
  16 + <result column="SPECOPEIDEXT" property="specopeidext" jdbcType="VARCHAR" />
  17 + <result column="SAIRPORTID" property="sairportid" jdbcType="VARCHAR" />
  18 + <result column="SCITYID" property="scityid" jdbcType="VARCHAR" />
  19 + <result column="EAIRPORTID" property="eairportid" jdbcType="VARCHAR" />
  20 + <result column="ECITYID" property="ecityid" jdbcType="VARCHAR" />
  21 + <result column="BY1" property="by1" jdbcType="VARCHAR" />
  22 + <result column="DEST1" property="dest1" jdbcType="VARCHAR" />
  23 + <result column="DEST1CITY" property="dest1city" jdbcType="VARCHAR" />
  24 + <result column="BY2" property="by2" jdbcType="VARCHAR" />
  25 + <result column="DEST2" property="dest2" jdbcType="VARCHAR" />
  26 + <result column="DEST2CITY" property="dest2city" jdbcType="VARCHAR" />
  27 + <result column="BY3" property="by3" jdbcType="VARCHAR" />
  28 + <result column="DEST3" property="dest3" jdbcType="VARCHAR" />
  29 + <result column="DEST3CITY" property="dest3city" jdbcType="VARCHAR" />
  30 + <result column="BY4" property="by4" jdbcType="VARCHAR" />
  31 + <result column="DEST4" property="dest4" jdbcType="VARCHAR" />
  32 + <result column="DEST4CITY" property="dest4city" jdbcType="VARCHAR" />
  33 + <result column="CARGONO" property="cargono" jdbcType="VARCHAR" />
  34 + <result column="CARGONM" property="cargonm" jdbcType="VARCHAR" />
  35 + <result column="PACK" property="pack" jdbcType="VARCHAR" />
  36 + <result column="MEAS" property="meas" jdbcType="VARCHAR" />
  37 + <result column="PCS" property="pcs" jdbcType="DECIMAL" />
  38 + <result column="WEIGHT" property="weight" jdbcType="DECIMAL" />
  39 + <result column="FEEWT" property="feewt" jdbcType="DECIMAL" />
  40 + <result column="VOL" property="vol" jdbcType="DECIMAL" />
  41 + <result column="CTRLOPEDEPARTMENT" property="ctrlopedepartment" jdbcType="VARCHAR" />
  42 + <result column="SHPRNAME" property="shprname" jdbcType="VARCHAR" />
  43 + <result column="SHPRMOBILETYPE" property="shprmobiletype" jdbcType="VARCHAR" />
  44 + <result column="SHPRTEL" property="shprtel" jdbcType="VARCHAR" />
  45 + <result column="SHPRADDRESS" property="shpraddress" jdbcType="VARCHAR" />
  46 + <result column="SHPRCOUNTYR" property="shprcountyr" jdbcType="VARCHAR" />
  47 + <result column="SHPCOMID" property="shpcomid" jdbcType="VARCHAR" />
  48 + <result column="SHPAEOCODE" property="shpaeocode" jdbcType="VARCHAR" />
  49 + <result column="SHPCUSTOMERID" property="shpcustomerid" jdbcType="VARCHAR" />
  50 + <result column="CNSNNAME" property="cnsnname" jdbcType="VARCHAR" />
  51 + <result column="CNSRMOBILETYPE" property="cnsrmobiletype" jdbcType="VARCHAR" />
  52 + <result column="CNSNTEL" property="cnsntel" jdbcType="VARCHAR" />
  53 + <result column="CNSNADDRESS" property="cnsnaddress" jdbcType="VARCHAR" />
  54 + <result column="CNSCOUNTYR" property="cnscountyr" jdbcType="VARCHAR" />
  55 + <result column="CNSCOMID" property="cnscomid" jdbcType="VARCHAR" />
  56 + <result column="CNSAEOCODE" property="cnsaeocode" jdbcType="VARCHAR" />
  57 + <result column="CNSRCTCNAME" property="cnsrctcname" jdbcType="VARCHAR" />
  58 + <result column="CNSRCTCTEL" property="cnsrctctel" jdbcType="VARCHAR" />
  59 + <result column="CSGCUSTOMERID" property="csgcustomerid" jdbcType="VARCHAR" />
  60 + <result column="COLLECTED" property="collected" jdbcType="VARCHAR" />
  61 + <result column="EXCHAGERATE" property="exchagerate" jdbcType="DECIMAL" />
  62 + <result column="COMAT" property="comat" jdbcType="VARCHAR" />
  63 + <result column="REFRIGERATED" property="refrigerated" jdbcType="VARCHAR" />
  64 + <result column="FORKNUM" property="forknum" jdbcType="DECIMAL" />
  65 + <result column="WHSHOLD" property="whshold" jdbcType="VARCHAR" />
  66 + <result column="EXPCUSTTRANSIT" property="expcusttransit" jdbcType="VARCHAR" />
  67 + <result column="IMPCUSTTRANSIT" property="impcusttransit" jdbcType="VARCHAR" />
  68 + <result column="SHORTTRANS" property="shorttrans" jdbcType="VARCHAR" />
  69 + <result column="SHORTTRANSBUP" property="shorttransbup" jdbcType="VARCHAR" />
  70 + <result column="CARGOOWNER" property="cargoowner" jdbcType="VARCHAR" />
  71 + <result column="CHARGETIME" property="chargetime" jdbcType="TIMESTAMP" />
  72 + <result column="ISINSTRUCTION" property="isinstruction" jdbcType="VARCHAR" />
  73 + <result column="NOTIFY" property="notify" jdbcType="VARCHAR" />
  74 + <result column="SHIPPERVALUE" property="shippervalue" jdbcType="DECIMAL" />
  75 + <result column="TRAFFICVALUE" property="trafficvalue" jdbcType="DECIMAL" />
  76 + <result column="CUSTOMVALUE" property="customvalue" jdbcType="DECIMAL" />
  77 + <result column="INSUREVALUE" property="insurevalue" jdbcType="DECIMAL" />
  78 + <result column="FILEATTACHED" property="fileattached" jdbcType="VARCHAR" />
  79 + <result column="RATETYPE" property="ratetype" jdbcType="VARCHAR" />
  80 + <result column="PROCESSINGMETHOD" property="processingmethod" jdbcType="VARCHAR" />
  81 + <result column="HANDLINGCIRCS" property="handlingcircs" jdbcType="VARCHAR" />
  82 + <result column="RESERVEDTONNAGE" property="reservedtonnage" jdbcType="VARCHAR" />
  83 + <result column="CARRIAGE" property="carriage" jdbcType="DECIMAL" />
  84 + <result column="RATE" property="rate" jdbcType="DECIMAL" />
  85 + <result column="CRTOPER" property="crtoper" jdbcType="VARCHAR" />
  86 + <result column="WTUNIT" property="wtunit" jdbcType="VARCHAR" />
  87 + <result column="ORIGINALWT" property="originalwt" jdbcType="DECIMAL" />
  88 + <result column="ORIGINALFEEWT" property="originalfeewt" jdbcType="DECIMAL" />
  89 + <result column="VOLUNIT" property="volunit" jdbcType="VARCHAR" />
  90 + <result column="CURRENCYID" property="currencyid" jdbcType="VARCHAR" />
  91 + <result column="ORIGINALVOL" property="originalvol" jdbcType="DECIMAL" />
  92 + <result column="CRTOPETIME" property="crtopetime" jdbcType="TIMESTAMP" />
  93 + <result column="DLVPRIORITY" property="dlvpriority" jdbcType="CHAR" />
  94 + <result column="CHKED" property="chked" jdbcType="VARCHAR" />
  95 + <result column="LABELNUM" property="labelnum" jdbcType="DECIMAL" />
  96 + <result column="SHPCUSTOMER" property="shpcustomer" jdbcType="VARCHAR" />
  97 + <result column="CRTAGENT" property="crtagent" jdbcType="VARCHAR" />
  98 + <result column="CRTDATE" property="crtdate" jdbcType="TIMESTAMP" />
  99 + <result column="EXTRAWEIGHT" property="extraweight" jdbcType="DECIMAL" />
  100 + <result column="STOREREMARK" property="storeremark" jdbcType="VARCHAR" />
  101 + <result column="BALANCEREMARK" property="balanceremark" jdbcType="VARCHAR" />
  102 + <result column="FILECHKED" property="filechked" jdbcType="VARCHAR" />
  103 + <result column="ISCARBALANCE" property="iscarbalance" jdbcType="VARCHAR" />
  104 + <result column="CNSNIDCARD" property="cnsnidcard" jdbcType="VARCHAR" />
  105 + <result column="CIQCHECK" property="ciqcheck" jdbcType="CHAR" />
  106 + <result column="TMPBILLNO" property="tmpbillno" jdbcType="VARCHAR" />
  107 + <result column="SUBBILLID" property="subbillid" jdbcType="VARCHAR" />
  108 + <result column="ISTRANS" property="istrans" jdbcType="VARCHAR" />
  109 + <result column="SPLITTAG" property="splittag" jdbcType="CHAR" />
  110 + <result column="CUSTOMSTRANS" property="customstrans" jdbcType="CHAR" />
  111 + <result column="ENDOPER" property="endoper" jdbcType="VARCHAR" />
  112 + <result column="ENDOPETIME" property="endopetime" jdbcType="TIMESTAMP" />
  113 + <result column="CONFIRMOPER" property="confirmoper" jdbcType="VARCHAR" />
  114 + <result column="CONFIRMOPETIME" property="confirmopetime" jdbcType="TIMESTAMP" />
  115 + <result column="CSGCUSTOMER" property="csgcustomer" jdbcType="VARCHAR" />
  116 + <result column="RELATIONBILLID" property="relationbillid" jdbcType="VARCHAR" />
  117 + <result column="CUSTOMS_COUNTRY" property="customsCountry" jdbcType="VARCHAR" />
  118 + <result column="CUSTOMS_CITY" property="customsCity" jdbcType="VARCHAR" />
  119 + <result column="CUSTOMS_REMARK" property="customsRemark" jdbcType="VARCHAR" />
  120 + <result column="CARGOSOURCE" property="cargosource" jdbcType="VARCHAR" />
  121 + <result column="CARGONMCH" property="cargonmch" jdbcType="VARCHAR" />
  122 + <result column="ISDGR" property="isdgr" jdbcType="VARCHAR" />
  123 + <result column="PERCENT" property="percent" jdbcType="DECIMAL" />
  124 + <result column="AWBTYPE" property="awbtype" jdbcType="VARCHAR" />
  125 + <result column="STATUS" property="status" jdbcType="VARCHAR" />
  126 + <result column="PAYMODEL" property="paymodel" jdbcType="VARCHAR" />
  127 + <result column="ISDELETE" property="isdelete" jdbcType="BIT" />
  128 + <result column="OPTIME" property="optime" jdbcType="TIMESTAMP" />
  129 + </resultMap>
  130 + <sql id="Base_Column_List" >
  131 + BILLID, STOCKTYPEID, STOCKPRE, STOCKNO, PRODUCTID, CARRIERPRODUCTID, DELFLAG, PREVIOUSBILLID,
  132 + DOMINT, CUSTOMCTL, SPECOPEID, SPECOPEIDEXT, SAIRPORTID, SCITYID, EAIRPORTID, ECITYID,
  133 + BY1, DEST1, DEST1CITY, BY2, DEST2, DEST2CITY, BY3, DEST3, DEST3CITY, BY4, DEST4,
  134 + DEST4CITY, CARGONO, CARGONM, PACK, MEAS, PCS, WEIGHT, FEEWT, VOL, CTRLOPEDEPARTMENT,
  135 + SHPRNAME, SHPRMOBILETYPE, SHPRTEL, SHPRADDRESS, SHPRCOUNTYR, SHPCOMID, SHPAEOCODE,
  136 + SHPCUSTOMERID, CNSNNAME, CNSRMOBILETYPE, CNSNTEL, CNSNADDRESS, CNSCOUNTYR, CNSCOMID,
  137 + CNSAEOCODE, CNSRCTCNAME, CNSRCTCTEL, CSGCUSTOMERID, COLLECTED, EXCHAGERATE, COMAT,
  138 + REFRIGERATED, FORKNUM, WHSHOLD, EXPCUSTTRANSIT, IMPCUSTTRANSIT, SHORTTRANS, SHORTTRANSBUP,
  139 + CARGOOWNER, CHARGETIME, ISINSTRUCTION, NOTIFY, SHIPPERVALUE, TRAFFICVALUE, CUSTOMVALUE,
  140 + INSUREVALUE, FILEATTACHED, RATETYPE, PROCESSINGMETHOD, HANDLINGCIRCS, RESERVEDTONNAGE,
  141 + CARRIAGE, RATE, CRTOPER, WTUNIT, ORIGINALWT, ORIGINALFEEWT, VOLUNIT, CURRENCYID,
  142 + ORIGINALVOL, CRTOPETIME, DLVPRIORITY, CHKED, LABELNUM, SHPCUSTOMER, CRTAGENT, CRTDATE,
  143 + EXTRAWEIGHT, STOREREMARK, BALANCEREMARK, FILECHKED, ISCARBALANCE, CNSNIDCARD, CIQCHECK,
  144 + TMPBILLNO, SUBBILLID, ISTRANS, SPLITTAG, CUSTOMSTRANS, ENDOPER, ENDOPETIME, CONFIRMOPER,
  145 + CONFIRMOPETIME, CSGCUSTOMER, RELATIONBILLID, CUSTOMS_COUNTRY, CUSTOMS_CITY, CUSTOMS_REMARK,
  146 + CARGOSOURCE, CARGONMCH, ISDGR, PERCENT, AWBTYPE, STATUS, PAYMODEL, ISDELETE, OPTIME
  147 + </sql>
  148 + <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.String" >
  149 + select
  150 + <include refid="Base_Column_List" />
  151 + from T_FIL_AWBINFO
  152 + where BILLID = #{billid,jdbcType=VARCHAR}
  153 + </select>
  154 + <delete id="deleteByPrimaryKey" parameterType="java.lang.String" >
  155 + delete from T_FIL_AWBINFO
  156 + where BILLID = #{billid,jdbcType=VARCHAR}
  157 + </delete>
  158 + <insert id="insert" parameterType="com.sunyo.wlpt.base.model.AWB_AWBINFO" >
  159 + insert into T_FIL_AWBINFO (BILLID, STOCKTYPEID, STOCKPRE,
  160 + STOCKNO, PRODUCTID, CARRIERPRODUCTID,
  161 + DELFLAG, PREVIOUSBILLID, DOMINT,
  162 + CUSTOMCTL, SPECOPEID, SPECOPEIDEXT,
  163 + SAIRPORTID, SCITYID, EAIRPORTID,
  164 + ECITYID, BY1, DEST1,
  165 + DEST1CITY, BY2, DEST2,
  166 + DEST2CITY, BY3, DEST3,
  167 + DEST3CITY, BY4, DEST4,
  168 + DEST4CITY, CARGONO, CARGONM,
  169 + PACK, MEAS, PCS, WEIGHT,
  170 + FEEWT, VOL, CTRLOPEDEPARTMENT,
  171 + SHPRNAME, SHPRMOBILETYPE, SHPRTEL,
  172 + SHPRADDRESS, SHPRCOUNTYR, SHPCOMID,
  173 + SHPAEOCODE, SHPCUSTOMERID, CNSNNAME,
  174 + CNSRMOBILETYPE, CNSNTEL, CNSNADDRESS,
  175 + CNSCOUNTYR, CNSCOMID, CNSAEOCODE,
  176 + CNSRCTCNAME, CNSRCTCTEL, CSGCUSTOMERID,
  177 + COLLECTED, EXCHAGERATE, COMAT,
  178 + REFRIGERATED, FORKNUM, WHSHOLD,
  179 + EXPCUSTTRANSIT, IMPCUSTTRANSIT, SHORTTRANS,
  180 + SHORTTRANSBUP, CARGOOWNER, CHARGETIME,
  181 + ISINSTRUCTION, NOTIFY, SHIPPERVALUE,
  182 + TRAFFICVALUE, CUSTOMVALUE, INSUREVALUE,
  183 + FILEATTACHED, RATETYPE, PROCESSINGMETHOD,
  184 + HANDLINGCIRCS, RESERVEDTONNAGE, CARRIAGE,
  185 + RATE, CRTOPER, WTUNIT,
  186 + ORIGINALWT, ORIGINALFEEWT, VOLUNIT,
  187 + CURRENCYID, ORIGINALVOL, CRTOPETIME,
  188 + DLVPRIORITY, CHKED, LABELNUM,
  189 + SHPCUSTOMER, CRTAGENT, CRTDATE,
  190 + EXTRAWEIGHT, STOREREMARK, BALANCEREMARK,
  191 + FILECHKED, ISCARBALANCE, CNSNIDCARD,
  192 + CIQCHECK, TMPBILLNO, SUBBILLID,
  193 + ISTRANS, SPLITTAG, CUSTOMSTRANS,
  194 + ENDOPER, ENDOPETIME, CONFIRMOPER,
  195 + CONFIRMOPETIME, CSGCUSTOMER, RELATIONBILLID,
  196 + CUSTOMS_COUNTRY, CUSTOMS_CITY, CUSTOMS_REMARK,
  197 + CARGOSOURCE, CARGONMCH, ISDGR,
  198 + PERCENT, AWBTYPE, STATUS,
  199 + PAYMODEL, ISDELETE, OPTIME
  200 + )
  201 + values (#{billid,jdbcType=VARCHAR}, #{stocktypeid,jdbcType=VARCHAR}, #{stockpre,jdbcType=VARCHAR},
  202 + #{stockno,jdbcType=VARCHAR}, #{productid,jdbcType=VARCHAR}, #{carrierproductid,jdbcType=VARCHAR},
  203 + #{delflag,jdbcType=VARCHAR}, #{previousbillid,jdbcType=VARCHAR}, #{domint,jdbcType=VARCHAR},
  204 + #{customctl,jdbcType=VARCHAR}, #{specopeid,jdbcType=VARCHAR}, #{specopeidext,jdbcType=VARCHAR},
  205 + #{sairportid,jdbcType=VARCHAR}, #{scityid,jdbcType=VARCHAR}, #{eairportid,jdbcType=VARCHAR},
  206 + #{ecityid,jdbcType=VARCHAR}, #{by1,jdbcType=VARCHAR}, #{dest1,jdbcType=VARCHAR},
  207 + #{dest1city,jdbcType=VARCHAR}, #{by2,jdbcType=VARCHAR}, #{dest2,jdbcType=VARCHAR},
  208 + #{dest2city,jdbcType=VARCHAR}, #{by3,jdbcType=VARCHAR}, #{dest3,jdbcType=VARCHAR},
  209 + #{dest3city,jdbcType=VARCHAR}, #{by4,jdbcType=VARCHAR}, #{dest4,jdbcType=VARCHAR},
  210 + #{dest4city,jdbcType=VARCHAR}, #{cargono,jdbcType=VARCHAR}, #{cargonm,jdbcType=VARCHAR},
  211 + #{pack,jdbcType=VARCHAR}, #{meas,jdbcType=VARCHAR}, #{pcs,jdbcType=DECIMAL}, #{weight,jdbcType=DECIMAL},
  212 + #{feewt,jdbcType=DECIMAL}, #{vol,jdbcType=DECIMAL}, #{ctrlopedepartment,jdbcType=VARCHAR},
  213 + #{shprname,jdbcType=VARCHAR}, #{shprmobiletype,jdbcType=VARCHAR}, #{shprtel,jdbcType=VARCHAR},
  214 + #{shpraddress,jdbcType=VARCHAR}, #{shprcountyr,jdbcType=VARCHAR}, #{shpcomid,jdbcType=VARCHAR},
  215 + #{shpaeocode,jdbcType=VARCHAR}, #{shpcustomerid,jdbcType=VARCHAR}, #{cnsnname,jdbcType=VARCHAR},
  216 + #{cnsrmobiletype,jdbcType=VARCHAR}, #{cnsntel,jdbcType=VARCHAR}, #{cnsnaddress,jdbcType=VARCHAR},
  217 + #{cnscountyr,jdbcType=VARCHAR}, #{cnscomid,jdbcType=VARCHAR}, #{cnsaeocode,jdbcType=VARCHAR},
  218 + #{cnsrctcname,jdbcType=VARCHAR}, #{cnsrctctel,jdbcType=VARCHAR}, #{csgcustomerid,jdbcType=VARCHAR},
  219 + #{collected,jdbcType=VARCHAR}, #{exchagerate,jdbcType=DECIMAL}, #{comat,jdbcType=VARCHAR},
  220 + #{refrigerated,jdbcType=VARCHAR}, #{forknum,jdbcType=DECIMAL}, #{whshold,jdbcType=VARCHAR},
  221 + #{expcusttransit,jdbcType=VARCHAR}, #{impcusttransit,jdbcType=VARCHAR}, #{shorttrans,jdbcType=VARCHAR},
  222 + #{shorttransbup,jdbcType=VARCHAR}, #{cargoowner,jdbcType=VARCHAR}, #{chargetime,jdbcType=TIMESTAMP},
  223 + #{isinstruction,jdbcType=VARCHAR}, #{notify,jdbcType=VARCHAR}, #{shippervalue,jdbcType=DECIMAL},
  224 + #{trafficvalue,jdbcType=DECIMAL}, #{customvalue,jdbcType=DECIMAL}, #{insurevalue,jdbcType=DECIMAL},
  225 + #{fileattached,jdbcType=VARCHAR}, #{ratetype,jdbcType=VARCHAR}, #{processingmethod,jdbcType=VARCHAR},
  226 + #{handlingcircs,jdbcType=VARCHAR}, #{reservedtonnage,jdbcType=VARCHAR}, #{carriage,jdbcType=DECIMAL},
  227 + #{rate,jdbcType=DECIMAL}, #{crtoper,jdbcType=VARCHAR}, #{wtunit,jdbcType=VARCHAR},
  228 + #{originalwt,jdbcType=DECIMAL}, #{originalfeewt,jdbcType=DECIMAL}, #{volunit,jdbcType=VARCHAR},
  229 + #{currencyid,jdbcType=VARCHAR}, #{originalvol,jdbcType=DECIMAL}, #{crtopetime,jdbcType=TIMESTAMP},
  230 + #{dlvpriority,jdbcType=CHAR}, #{chked,jdbcType=VARCHAR}, #{labelnum,jdbcType=DECIMAL},
  231 + #{shpcustomer,jdbcType=VARCHAR}, #{crtagent,jdbcType=VARCHAR}, #{crtdate,jdbcType=TIMESTAMP},
  232 + #{extraweight,jdbcType=DECIMAL}, #{storeremark,jdbcType=VARCHAR}, #{balanceremark,jdbcType=VARCHAR},
  233 + #{filechked,jdbcType=VARCHAR}, #{iscarbalance,jdbcType=VARCHAR}, #{cnsnidcard,jdbcType=VARCHAR},
  234 + #{ciqcheck,jdbcType=CHAR}, #{tmpbillno,jdbcType=VARCHAR}, #{subbillid,jdbcType=VARCHAR},
  235 + #{istrans,jdbcType=VARCHAR}, #{splittag,jdbcType=CHAR}, #{customstrans,jdbcType=CHAR},
  236 + #{endoper,jdbcType=VARCHAR}, #{endopetime,jdbcType=TIMESTAMP}, #{confirmoper,jdbcType=VARCHAR},
  237 + #{confirmopetime,jdbcType=TIMESTAMP}, #{csgcustomer,jdbcType=VARCHAR}, #{relationbillid,jdbcType=VARCHAR},
  238 + #{customsCountry,jdbcType=VARCHAR}, #{customsCity,jdbcType=VARCHAR}, #{customsRemark,jdbcType=VARCHAR},
  239 + #{cargosource,jdbcType=VARCHAR}, #{cargonmch,jdbcType=VARCHAR}, #{isdgr,jdbcType=VARCHAR},
  240 + #{percent,jdbcType=DECIMAL}, #{awbtype,jdbcType=VARCHAR}, #{status,jdbcType=VARCHAR},
  241 + #{paymodel,jdbcType=VARCHAR}, #{isdelete,jdbcType=BIT}, #{optime,jdbcType=TIMESTAMP}
  242 + )
  243 + </insert>
  244 + <insert id="insertSelective" parameterType="com.sunyo.wlpt.base.model.AWB_AWBINFO" >
  245 + insert into T_FIL_AWBINFO
  246 + <trim prefix="(" suffix=")" suffixOverrides="," >
  247 + <if test="billid != null" >
  248 + BILLID,
  249 + </if>
  250 + <if test="stocktypeid != null" >
  251 + STOCKTYPEID,
  252 + </if>
  253 + <if test="stockpre != null" >
  254 + STOCKPRE,
  255 + </if>
  256 + <if test="stockno != null" >
  257 + STOCKNO,
  258 + </if>
  259 + <if test="productid != null" >
  260 + PRODUCTID,
  261 + </if>
  262 + <if test="carrierproductid != null" >
  263 + CARRIERPRODUCTID,
  264 + </if>
  265 + <if test="delflag != null" >
  266 + DELFLAG,
  267 + </if>
  268 + <if test="previousbillid != null" >
  269 + PREVIOUSBILLID,
  270 + </if>
  271 + <if test="domint != null" >
  272 + DOMINT,
  273 + </if>
  274 + <if test="customctl != null" >
  275 + CUSTOMCTL,
  276 + </if>
  277 + <if test="specopeid != null" >
  278 + SPECOPEID,
  279 + </if>
  280 + <if test="specopeidext != null" >
  281 + SPECOPEIDEXT,
  282 + </if>
  283 + <if test="sairportid != null" >
  284 + SAIRPORTID,
  285 + </if>
  286 + <if test="scityid != null" >
  287 + SCITYID,
  288 + </if>
  289 + <if test="eairportid != null" >
  290 + EAIRPORTID,
  291 + </if>
  292 + <if test="ecityid != null" >
  293 + ECITYID,
  294 + </if>
  295 + <if test="by1 != null" >
  296 + BY1,
  297 + </if>
  298 + <if test="dest1 != null" >
  299 + DEST1,
  300 + </if>
  301 + <if test="dest1city != null" >
  302 + DEST1CITY,
  303 + </if>
  304 + <if test="by2 != null" >
  305 + BY2,
  306 + </if>
  307 + <if test="dest2 != null" >
  308 + DEST2,
  309 + </if>
  310 + <if test="dest2city != null" >
  311 + DEST2CITY,
  312 + </if>
  313 + <if test="by3 != null" >
  314 + BY3,
  315 + </if>
  316 + <if test="dest3 != null" >
  317 + DEST3,
  318 + </if>
  319 + <if test="dest3city != null" >
  320 + DEST3CITY,
  321 + </if>
  322 + <if test="by4 != null" >
  323 + BY4,
  324 + </if>
  325 + <if test="dest4 != null" >
  326 + DEST4,
  327 + </if>
  328 + <if test="dest4city != null" >
  329 + DEST4CITY,
  330 + </if>
  331 + <if test="cargono != null" >
  332 + CARGONO,
  333 + </if>
  334 + <if test="cargonm != null" >
  335 + CARGONM,
  336 + </if>
  337 + <if test="pack != null" >
  338 + PACK,
  339 + </if>
  340 + <if test="meas != null" >
  341 + MEAS,
  342 + </if>
  343 + <if test="pcs != null" >
  344 + PCS,
  345 + </if>
  346 + <if test="weight != null" >
  347 + WEIGHT,
  348 + </if>
  349 + <if test="feewt != null" >
  350 + FEEWT,
  351 + </if>
  352 + <if test="vol != null" >
  353 + VOL,
  354 + </if>
  355 + <if test="ctrlopedepartment != null" >
  356 + CTRLOPEDEPARTMENT,
  357 + </if>
  358 + <if test="shprname != null" >
  359 + SHPRNAME,
  360 + </if>
  361 + <if test="shprmobiletype != null" >
  362 + SHPRMOBILETYPE,
  363 + </if>
  364 + <if test="shprtel != null" >
  365 + SHPRTEL,
  366 + </if>
  367 + <if test="shpraddress != null" >
  368 + SHPRADDRESS,
  369 + </if>
  370 + <if test="shprcountyr != null" >
  371 + SHPRCOUNTYR,
  372 + </if>
  373 + <if test="shpcomid != null" >
  374 + SHPCOMID,
  375 + </if>
  376 + <if test="shpaeocode != null" >
  377 + SHPAEOCODE,
  378 + </if>
  379 + <if test="shpcustomerid != null" >
  380 + SHPCUSTOMERID,
  381 + </if>
  382 + <if test="cnsnname != null" >
  383 + CNSNNAME,
  384 + </if>
  385 + <if test="cnsrmobiletype != null" >
  386 + CNSRMOBILETYPE,
  387 + </if>
  388 + <if test="cnsntel != null" >
  389 + CNSNTEL,
  390 + </if>
  391 + <if test="cnsnaddress != null" >
  392 + CNSNADDRESS,
  393 + </if>
  394 + <if test="cnscountyr != null" >
  395 + CNSCOUNTYR,
  396 + </if>
  397 + <if test="cnscomid != null" >
  398 + CNSCOMID,
  399 + </if>
  400 + <if test="cnsaeocode != null" >
  401 + CNSAEOCODE,
  402 + </if>
  403 + <if test="cnsrctcname != null" >
  404 + CNSRCTCNAME,
  405 + </if>
  406 + <if test="cnsrctctel != null" >
  407 + CNSRCTCTEL,
  408 + </if>
  409 + <if test="csgcustomerid != null" >
  410 + CSGCUSTOMERID,
  411 + </if>
  412 + <if test="collected != null" >
  413 + COLLECTED,
  414 + </if>
  415 + <if test="exchagerate != null" >
  416 + EXCHAGERATE,
  417 + </if>
  418 + <if test="comat != null" >
  419 + COMAT,
  420 + </if>
  421 + <if test="refrigerated != null" >
  422 + REFRIGERATED,
  423 + </if>
  424 + <if test="forknum != null" >
  425 + FORKNUM,
  426 + </if>
  427 + <if test="whshold != null" >
  428 + WHSHOLD,
  429 + </if>
  430 + <if test="expcusttransit != null" >
  431 + EXPCUSTTRANSIT,
  432 + </if>
  433 + <if test="impcusttransit != null" >
  434 + IMPCUSTTRANSIT,
  435 + </if>
  436 + <if test="shorttrans != null" >
  437 + SHORTTRANS,
  438 + </if>
  439 + <if test="shorttransbup != null" >
  440 + SHORTTRANSBUP,
  441 + </if>
  442 + <if test="cargoowner != null" >
  443 + CARGOOWNER,
  444 + </if>
  445 + <if test="chargetime != null" >
  446 + CHARGETIME,
  447 + </if>
  448 + <if test="isinstruction != null" >
  449 + ISINSTRUCTION,
  450 + </if>
  451 + <if test="notify != null" >
  452 + NOTIFY,
  453 + </if>
  454 + <if test="shippervalue != null" >
  455 + SHIPPERVALUE,
  456 + </if>
  457 + <if test="trafficvalue != null" >
  458 + TRAFFICVALUE,
  459 + </if>
  460 + <if test="customvalue != null" >
  461 + CUSTOMVALUE,
  462 + </if>
  463 + <if test="insurevalue != null" >
  464 + INSUREVALUE,
  465 + </if>
  466 + <if test="fileattached != null" >
  467 + FILEATTACHED,
  468 + </if>
  469 + <if test="ratetype != null" >
  470 + RATETYPE,
  471 + </if>
  472 + <if test="processingmethod != null" >
  473 + PROCESSINGMETHOD,
  474 + </if>
  475 + <if test="handlingcircs != null" >
  476 + HANDLINGCIRCS,
  477 + </if>
  478 + <if test="reservedtonnage != null" >
  479 + RESERVEDTONNAGE,
  480 + </if>
  481 + <if test="carriage != null" >
  482 + CARRIAGE,
  483 + </if>
  484 + <if test="rate != null" >
  485 + RATE,
  486 + </if>
  487 + <if test="crtoper != null" >
  488 + CRTOPER,
  489 + </if>
  490 + <if test="wtunit != null" >
  491 + WTUNIT,
  492 + </if>
  493 + <if test="originalwt != null" >
  494 + ORIGINALWT,
  495 + </if>
  496 + <if test="originalfeewt != null" >
  497 + ORIGINALFEEWT,
  498 + </if>
  499 + <if test="volunit != null" >
  500 + VOLUNIT,
  501 + </if>
  502 + <if test="currencyid != null" >
  503 + CURRENCYID,
  504 + </if>
  505 + <if test="originalvol != null" >
  506 + ORIGINALVOL,
  507 + </if>
  508 + <if test="crtopetime != null" >
  509 + CRTOPETIME,
  510 + </if>
  511 + <if test="dlvpriority != null" >
  512 + DLVPRIORITY,
  513 + </if>
  514 + <if test="chked != null" >
  515 + CHKED,
  516 + </if>
  517 + <if test="labelnum != null" >
  518 + LABELNUM,
  519 + </if>
  520 + <if test="shpcustomer != null" >
  521 + SHPCUSTOMER,
  522 + </if>
  523 + <if test="crtagent != null" >
  524 + CRTAGENT,
  525 + </if>
  526 + <if test="crtdate != null" >
  527 + CRTDATE,
  528 + </if>
  529 + <if test="extraweight != null" >
  530 + EXTRAWEIGHT,
  531 + </if>
  532 + <if test="storeremark != null" >
  533 + STOREREMARK,
  534 + </if>
  535 + <if test="balanceremark != null" >
  536 + BALANCEREMARK,
  537 + </if>
  538 + <if test="filechked != null" >
  539 + FILECHKED,
  540 + </if>
  541 + <if test="iscarbalance != null" >
  542 + ISCARBALANCE,
  543 + </if>
  544 + <if test="cnsnidcard != null" >
  545 + CNSNIDCARD,
  546 + </if>
  547 + <if test="ciqcheck != null" >
  548 + CIQCHECK,
  549 + </if>
  550 + <if test="tmpbillno != null" >
  551 + TMPBILLNO,
  552 + </if>
  553 + <if test="subbillid != null" >
  554 + SUBBILLID,
  555 + </if>
  556 + <if test="istrans != null" >
  557 + ISTRANS,
  558 + </if>
  559 + <if test="splittag != null" >
  560 + SPLITTAG,
  561 + </if>
  562 + <if test="customstrans != null" >
  563 + CUSTOMSTRANS,
  564 + </if>
  565 + <if test="endoper != null" >
  566 + ENDOPER,
  567 + </if>
  568 + <if test="endopetime != null" >
  569 + ENDOPETIME,
  570 + </if>
  571 + <if test="confirmoper != null" >
  572 + CONFIRMOPER,
  573 + </if>
  574 + <if test="confirmopetime != null" >
  575 + CONFIRMOPETIME,
  576 + </if>
  577 + <if test="csgcustomer != null" >
  578 + CSGCUSTOMER,
  579 + </if>
  580 + <if test="relationbillid != null" >
  581 + RELATIONBILLID,
  582 + </if>
  583 + <if test="customsCountry != null" >
  584 + CUSTOMS_COUNTRY,
  585 + </if>
  586 + <if test="customsCity != null" >
  587 + CUSTOMS_CITY,
  588 + </if>
  589 + <if test="customsRemark != null" >
  590 + CUSTOMS_REMARK,
  591 + </if>
  592 + <if test="cargosource != null" >
  593 + CARGOSOURCE,
  594 + </if>
  595 + <if test="cargonmch != null" >
  596 + CARGONMCH,
  597 + </if>
  598 + <if test="isdgr != null" >
  599 + ISDGR,
  600 + </if>
  601 + <if test="percent != null" >
  602 + PERCENT,
  603 + </if>
  604 + <if test="awbtype != null" >
  605 + AWBTYPE,
  606 + </if>
  607 + <if test="status != null" >
  608 + STATUS,
  609 + </if>
  610 + <if test="paymodel != null" >
  611 + PAYMODEL,
  612 + </if>
  613 + <if test="isdelete != null" >
  614 + ISDELETE,
  615 + </if>
  616 + <if test="optime != null" >
  617 + OPTIME,
  618 + </if>
  619 + </trim>
  620 + <trim prefix="values (" suffix=")" suffixOverrides="," >
  621 + <if test="billid != null" >
  622 + #{billid,jdbcType=VARCHAR},
  623 + </if>
  624 + <if test="stocktypeid != null" >
  625 + #{stocktypeid,jdbcType=VARCHAR},
  626 + </if>
  627 + <if test="stockpre != null" >
  628 + #{stockpre,jdbcType=VARCHAR},
  629 + </if>
  630 + <if test="stockno != null" >
  631 + #{stockno,jdbcType=VARCHAR},
  632 + </if>
  633 + <if test="productid != null" >
  634 + #{productid,jdbcType=VARCHAR},
  635 + </if>
  636 + <if test="carrierproductid != null" >
  637 + #{carrierproductid,jdbcType=VARCHAR},
  638 + </if>
  639 + <if test="delflag != null" >
  640 + #{delflag,jdbcType=VARCHAR},
  641 + </if>
  642 + <if test="previousbillid != null" >
  643 + #{previousbillid,jdbcType=VARCHAR},
  644 + </if>
  645 + <if test="domint != null" >
  646 + #{domint,jdbcType=VARCHAR},
  647 + </if>
  648 + <if test="customctl != null" >
  649 + #{customctl,jdbcType=VARCHAR},
  650 + </if>
  651 + <if test="specopeid != null" >
  652 + #{specopeid,jdbcType=VARCHAR},
  653 + </if>
  654 + <if test="specopeidext != null" >
  655 + #{specopeidext,jdbcType=VARCHAR},
  656 + </if>
  657 + <if test="sairportid != null" >
  658 + #{sairportid,jdbcType=VARCHAR},
  659 + </if>
  660 + <if test="scityid != null" >
  661 + #{scityid,jdbcType=VARCHAR},
  662 + </if>
  663 + <if test="eairportid != null" >
  664 + #{eairportid,jdbcType=VARCHAR},
  665 + </if>
  666 + <if test="ecityid != null" >
  667 + #{ecityid,jdbcType=VARCHAR},
  668 + </if>
  669 + <if test="by1 != null" >
  670 + #{by1,jdbcType=VARCHAR},
  671 + </if>
  672 + <if test="dest1 != null" >
  673 + #{dest1,jdbcType=VARCHAR},
  674 + </if>
  675 + <if test="dest1city != null" >
  676 + #{dest1city,jdbcType=VARCHAR},
  677 + </if>
  678 + <if test="by2 != null" >
  679 + #{by2,jdbcType=VARCHAR},
  680 + </if>
  681 + <if test="dest2 != null" >
  682 + #{dest2,jdbcType=VARCHAR},
  683 + </if>
  684 + <if test="dest2city != null" >
  685 + #{dest2city,jdbcType=VARCHAR},
  686 + </if>
  687 + <if test="by3 != null" >
  688 + #{by3,jdbcType=VARCHAR},
  689 + </if>
  690 + <if test="dest3 != null" >
  691 + #{dest3,jdbcType=VARCHAR},
  692 + </if>
  693 + <if test="dest3city != null" >
  694 + #{dest3city,jdbcType=VARCHAR},
  695 + </if>
  696 + <if test="by4 != null" >
  697 + #{by4,jdbcType=VARCHAR},
  698 + </if>
  699 + <if test="dest4 != null" >
  700 + #{dest4,jdbcType=VARCHAR},
  701 + </if>
  702 + <if test="dest4city != null" >
  703 + #{dest4city,jdbcType=VARCHAR},
  704 + </if>
  705 + <if test="cargono != null" >
  706 + #{cargono,jdbcType=VARCHAR},
  707 + </if>
  708 + <if test="cargonm != null" >
  709 + #{cargonm,jdbcType=VARCHAR},
  710 + </if>
  711 + <if test="pack != null" >
  712 + #{pack,jdbcType=VARCHAR},
  713 + </if>
  714 + <if test="meas != null" >
  715 + #{meas,jdbcType=VARCHAR},
  716 + </if>
  717 + <if test="pcs != null" >
  718 + #{pcs,jdbcType=DECIMAL},
  719 + </if>
  720 + <if test="weight != null" >
  721 + #{weight,jdbcType=DECIMAL},
  722 + </if>
  723 + <if test="feewt != null" >
  724 + #{feewt,jdbcType=DECIMAL},
  725 + </if>
  726 + <if test="vol != null" >
  727 + #{vol,jdbcType=DECIMAL},
  728 + </if>
  729 + <if test="ctrlopedepartment != null" >
  730 + #{ctrlopedepartment,jdbcType=VARCHAR},
  731 + </if>
  732 + <if test="shprname != null" >
  733 + #{shprname,jdbcType=VARCHAR},
  734 + </if>
  735 + <if test="shprmobiletype != null" >
  736 + #{shprmobiletype,jdbcType=VARCHAR},
  737 + </if>
  738 + <if test="shprtel != null" >
  739 + #{shprtel,jdbcType=VARCHAR},
  740 + </if>
  741 + <if test="shpraddress != null" >
  742 + #{shpraddress,jdbcType=VARCHAR},
  743 + </if>
  744 + <if test="shprcountyr != null" >
  745 + #{shprcountyr,jdbcType=VARCHAR},
  746 + </if>
  747 + <if test="shpcomid != null" >
  748 + #{shpcomid,jdbcType=VARCHAR},
  749 + </if>
  750 + <if test="shpaeocode != null" >
  751 + #{shpaeocode,jdbcType=VARCHAR},
  752 + </if>
  753 + <if test="shpcustomerid != null" >
  754 + #{shpcustomerid,jdbcType=VARCHAR},
  755 + </if>
  756 + <if test="cnsnname != null" >
  757 + #{cnsnname,jdbcType=VARCHAR},
  758 + </if>
  759 + <if test="cnsrmobiletype != null" >
  760 + #{cnsrmobiletype,jdbcType=VARCHAR},
  761 + </if>
  762 + <if test="cnsntel != null" >
  763 + #{cnsntel,jdbcType=VARCHAR},
  764 + </if>
  765 + <if test="cnsnaddress != null" >
  766 + #{cnsnaddress,jdbcType=VARCHAR},
  767 + </if>
  768 + <if test="cnscountyr != null" >
  769 + #{cnscountyr,jdbcType=VARCHAR},
  770 + </if>
  771 + <if test="cnscomid != null" >
  772 + #{cnscomid,jdbcType=VARCHAR},
  773 + </if>
  774 + <if test="cnsaeocode != null" >
  775 + #{cnsaeocode,jdbcType=VARCHAR},
  776 + </if>
  777 + <if test="cnsrctcname != null" >
  778 + #{cnsrctcname,jdbcType=VARCHAR},
  779 + </if>
  780 + <if test="cnsrctctel != null" >
  781 + #{cnsrctctel,jdbcType=VARCHAR},
  782 + </if>
  783 + <if test="csgcustomerid != null" >
  784 + #{csgcustomerid,jdbcType=VARCHAR},
  785 + </if>
  786 + <if test="collected != null" >
  787 + #{collected,jdbcType=VARCHAR},
  788 + </if>
  789 + <if test="exchagerate != null" >
  790 + #{exchagerate,jdbcType=DECIMAL},
  791 + </if>
  792 + <if test="comat != null" >
  793 + #{comat,jdbcType=VARCHAR},
  794 + </if>
  795 + <if test="refrigerated != null" >
  796 + #{refrigerated,jdbcType=VARCHAR},
  797 + </if>
  798 + <if test="forknum != null" >
  799 + #{forknum,jdbcType=DECIMAL},
  800 + </if>
  801 + <if test="whshold != null" >
  802 + #{whshold,jdbcType=VARCHAR},
  803 + </if>
  804 + <if test="expcusttransit != null" >
  805 + #{expcusttransit,jdbcType=VARCHAR},
  806 + </if>
  807 + <if test="impcusttransit != null" >
  808 + #{impcusttransit,jdbcType=VARCHAR},
  809 + </if>
  810 + <if test="shorttrans != null" >
  811 + #{shorttrans,jdbcType=VARCHAR},
  812 + </if>
  813 + <if test="shorttransbup != null" >
  814 + #{shorttransbup,jdbcType=VARCHAR},
  815 + </if>
  816 + <if test="cargoowner != null" >
  817 + #{cargoowner,jdbcType=VARCHAR},
  818 + </if>
  819 + <if test="chargetime != null" >
  820 + #{chargetime,jdbcType=TIMESTAMP},
  821 + </if>
  822 + <if test="isinstruction != null" >
  823 + #{isinstruction,jdbcType=VARCHAR},
  824 + </if>
  825 + <if test="notify != null" >
  826 + #{notify,jdbcType=VARCHAR},
  827 + </if>
  828 + <if test="shippervalue != null" >
  829 + #{shippervalue,jdbcType=DECIMAL},
  830 + </if>
  831 + <if test="trafficvalue != null" >
  832 + #{trafficvalue,jdbcType=DECIMAL},
  833 + </if>
  834 + <if test="customvalue != null" >
  835 + #{customvalue,jdbcType=DECIMAL},
  836 + </if>
  837 + <if test="insurevalue != null" >
  838 + #{insurevalue,jdbcType=DECIMAL},
  839 + </if>
  840 + <if test="fileattached != null" >
  841 + #{fileattached,jdbcType=VARCHAR},
  842 + </if>
  843 + <if test="ratetype != null" >
  844 + #{ratetype,jdbcType=VARCHAR},
  845 + </if>
  846 + <if test="processingmethod != null" >
  847 + #{processingmethod,jdbcType=VARCHAR},
  848 + </if>
  849 + <if test="handlingcircs != null" >
  850 + #{handlingcircs,jdbcType=VARCHAR},
  851 + </if>
  852 + <if test="reservedtonnage != null" >
  853 + #{reservedtonnage,jdbcType=VARCHAR},
  854 + </if>
  855 + <if test="carriage != null" >
  856 + #{carriage,jdbcType=DECIMAL},
  857 + </if>
  858 + <if test="rate != null" >
  859 + #{rate,jdbcType=DECIMAL},
  860 + </if>
  861 + <if test="crtoper != null" >
  862 + #{crtoper,jdbcType=VARCHAR},
  863 + </if>
  864 + <if test="wtunit != null" >
  865 + #{wtunit,jdbcType=VARCHAR},
  866 + </if>
  867 + <if test="originalwt != null" >
  868 + #{originalwt,jdbcType=DECIMAL},
  869 + </if>
  870 + <if test="originalfeewt != null" >
  871 + #{originalfeewt,jdbcType=DECIMAL},
  872 + </if>
  873 + <if test="volunit != null" >
  874 + #{volunit,jdbcType=VARCHAR},
  875 + </if>
  876 + <if test="currencyid != null" >
  877 + #{currencyid,jdbcType=VARCHAR},
  878 + </if>
  879 + <if test="originalvol != null" >
  880 + #{originalvol,jdbcType=DECIMAL},
  881 + </if>
  882 + <if test="crtopetime != null" >
  883 + #{crtopetime,jdbcType=TIMESTAMP},
  884 + </if>
  885 + <if test="dlvpriority != null" >
  886 + #{dlvpriority,jdbcType=CHAR},
  887 + </if>
  888 + <if test="chked != null" >
  889 + #{chked,jdbcType=VARCHAR},
  890 + </if>
  891 + <if test="labelnum != null" >
  892 + #{labelnum,jdbcType=DECIMAL},
  893 + </if>
  894 + <if test="shpcustomer != null" >
  895 + #{shpcustomer,jdbcType=VARCHAR},
  896 + </if>
  897 + <if test="crtagent != null" >
  898 + #{crtagent,jdbcType=VARCHAR},
  899 + </if>
  900 + <if test="crtdate != null" >
  901 + #{crtdate,jdbcType=TIMESTAMP},
  902 + </if>
  903 + <if test="extraweight != null" >
  904 + #{extraweight,jdbcType=DECIMAL},
  905 + </if>
  906 + <if test="storeremark != null" >
  907 + #{storeremark,jdbcType=VARCHAR},
  908 + </if>
  909 + <if test="balanceremark != null" >
  910 + #{balanceremark,jdbcType=VARCHAR},
  911 + </if>
  912 + <if test="filechked != null" >
  913 + #{filechked,jdbcType=VARCHAR},
  914 + </if>
  915 + <if test="iscarbalance != null" >
  916 + #{iscarbalance,jdbcType=VARCHAR},
  917 + </if>
  918 + <if test="cnsnidcard != null" >
  919 + #{cnsnidcard,jdbcType=VARCHAR},
  920 + </if>
  921 + <if test="ciqcheck != null" >
  922 + #{ciqcheck,jdbcType=CHAR},
  923 + </if>
  924 + <if test="tmpbillno != null" >
  925 + #{tmpbillno,jdbcType=VARCHAR},
  926 + </if>
  927 + <if test="subbillid != null" >
  928 + #{subbillid,jdbcType=VARCHAR},
  929 + </if>
  930 + <if test="istrans != null" >
  931 + #{istrans,jdbcType=VARCHAR},
  932 + </if>
  933 + <if test="splittag != null" >
  934 + #{splittag,jdbcType=CHAR},
  935 + </if>
  936 + <if test="customstrans != null" >
  937 + #{customstrans,jdbcType=CHAR},
  938 + </if>
  939 + <if test="endoper != null" >
  940 + #{endoper,jdbcType=VARCHAR},
  941 + </if>
  942 + <if test="endopetime != null" >
  943 + #{endopetime,jdbcType=TIMESTAMP},
  944 + </if>
  945 + <if test="confirmoper != null" >
  946 + #{confirmoper,jdbcType=VARCHAR},
  947 + </if>
  948 + <if test="confirmopetime != null" >
  949 + #{confirmopetime,jdbcType=TIMESTAMP},
  950 + </if>
  951 + <if test="csgcustomer != null" >
  952 + #{csgcustomer,jdbcType=VARCHAR},
  953 + </if>
  954 + <if test="relationbillid != null" >
  955 + #{relationbillid,jdbcType=VARCHAR},
  956 + </if>
  957 + <if test="customsCountry != null" >
  958 + #{customsCountry,jdbcType=VARCHAR},
  959 + </if>
  960 + <if test="customsCity != null" >
  961 + #{customsCity,jdbcType=VARCHAR},
  962 + </if>
  963 + <if test="customsRemark != null" >
  964 + #{customsRemark,jdbcType=VARCHAR},
  965 + </if>
  966 + <if test="cargosource != null" >
  967 + #{cargosource,jdbcType=VARCHAR},
  968 + </if>
  969 + <if test="cargonmch != null" >
  970 + #{cargonmch,jdbcType=VARCHAR},
  971 + </if>
  972 + <if test="isdgr != null" >
  973 + #{isdgr,jdbcType=VARCHAR},
  974 + </if>
  975 + <if test="percent != null" >
  976 + #{percent,jdbcType=DECIMAL},
  977 + </if>
  978 + <if test="awbtype != null" >
  979 + #{awbtype,jdbcType=VARCHAR},
  980 + </if>
  981 + <if test="status != null" >
  982 + #{status,jdbcType=VARCHAR},
  983 + </if>
  984 + <if test="paymodel != null" >
  985 + #{paymodel,jdbcType=VARCHAR},
  986 + </if>
  987 + <if test="isdelete != null" >
  988 + #{isdelete,jdbcType=BIT},
  989 + </if>
  990 + <if test="optime != null" >
  991 + #{optime,jdbcType=TIMESTAMP},
  992 + </if>
  993 + </trim>
  994 + </insert>
  995 + <update id="updateByPrimaryKeySelective" parameterType="com.sunyo.wlpt.base.model.AWB_AWBINFO" >
  996 + update T_FIL_AWBINFO
  997 + <set >
  998 + <if test="stocktypeid != null" >
  999 + STOCKTYPEID = #{stocktypeid,jdbcType=VARCHAR},
  1000 + </if>
  1001 + <if test="stockpre != null" >
  1002 + STOCKPRE = #{stockpre,jdbcType=VARCHAR},
  1003 + </if>
  1004 + <if test="stockno != null" >
  1005 + STOCKNO = #{stockno,jdbcType=VARCHAR},
  1006 + </if>
  1007 + <if test="productid != null" >
  1008 + PRODUCTID = #{productid,jdbcType=VARCHAR},
  1009 + </if>
  1010 + <if test="carrierproductid != null" >
  1011 + CARRIERPRODUCTID = #{carrierproductid,jdbcType=VARCHAR},
  1012 + </if>
  1013 + <if test="delflag != null" >
  1014 + DELFLAG = #{delflag,jdbcType=VARCHAR},
  1015 + </if>
  1016 + <if test="previousbillid != null" >
  1017 + PREVIOUSBILLID = #{previousbillid,jdbcType=VARCHAR},
  1018 + </if>
  1019 + <if test="domint != null" >
  1020 + DOMINT = #{domint,jdbcType=VARCHAR},
  1021 + </if>
  1022 + <if test="customctl != null" >
  1023 + CUSTOMCTL = #{customctl,jdbcType=VARCHAR},
  1024 + </if>
  1025 + <if test="specopeid != null" >
  1026 + SPECOPEID = #{specopeid,jdbcType=VARCHAR},
  1027 + </if>
  1028 + <if test="specopeidext != null" >
  1029 + SPECOPEIDEXT = #{specopeidext,jdbcType=VARCHAR},
  1030 + </if>
  1031 + <if test="sairportid != null" >
  1032 + SAIRPORTID = #{sairportid,jdbcType=VARCHAR},
  1033 + </if>
  1034 + <if test="scityid != null" >
  1035 + SCITYID = #{scityid,jdbcType=VARCHAR},
  1036 + </if>
  1037 + <if test="eairportid != null" >
  1038 + EAIRPORTID = #{eairportid,jdbcType=VARCHAR},
  1039 + </if>
  1040 + <if test="ecityid != null" >
  1041 + ECITYID = #{ecityid,jdbcType=VARCHAR},
  1042 + </if>
  1043 + <if test="by1 != null" >
  1044 + BY1 = #{by1,jdbcType=VARCHAR},
  1045 + </if>
  1046 + <if test="dest1 != null" >
  1047 + DEST1 = #{dest1,jdbcType=VARCHAR},
  1048 + </if>
  1049 + <if test="dest1city != null" >
  1050 + DEST1CITY = #{dest1city,jdbcType=VARCHAR},
  1051 + </if>
  1052 + <if test="by2 != null" >
  1053 + BY2 = #{by2,jdbcType=VARCHAR},
  1054 + </if>
  1055 + <if test="dest2 != null" >
  1056 + DEST2 = #{dest2,jdbcType=VARCHAR},
  1057 + </if>
  1058 + <if test="dest2city != null" >
  1059 + DEST2CITY = #{dest2city,jdbcType=VARCHAR},
  1060 + </if>
  1061 + <if test="by3 != null" >
  1062 + BY3 = #{by3,jdbcType=VARCHAR},
  1063 + </if>
  1064 + <if test="dest3 != null" >
  1065 + DEST3 = #{dest3,jdbcType=VARCHAR},
  1066 + </if>
  1067 + <if test="dest3city != null" >
  1068 + DEST3CITY = #{dest3city,jdbcType=VARCHAR},
  1069 + </if>
  1070 + <if test="by4 != null" >
  1071 + BY4 = #{by4,jdbcType=VARCHAR},
  1072 + </if>
  1073 + <if test="dest4 != null" >
  1074 + DEST4 = #{dest4,jdbcType=VARCHAR},
  1075 + </if>
  1076 + <if test="dest4city != null" >
  1077 + DEST4CITY = #{dest4city,jdbcType=VARCHAR},
  1078 + </if>
  1079 + <if test="cargono != null" >
  1080 + CARGONO = #{cargono,jdbcType=VARCHAR},
  1081 + </if>
  1082 + <if test="cargonm != null" >
  1083 + CARGONM = #{cargonm,jdbcType=VARCHAR},
  1084 + </if>
  1085 + <if test="pack != null" >
  1086 + PACK = #{pack,jdbcType=VARCHAR},
  1087 + </if>
  1088 + <if test="meas != null" >
  1089 + MEAS = #{meas,jdbcType=VARCHAR},
  1090 + </if>
  1091 + <if test="pcs != null" >
  1092 + PCS = #{pcs,jdbcType=DECIMAL},
  1093 + </if>
  1094 + <if test="weight != null" >
  1095 + WEIGHT = #{weight,jdbcType=DECIMAL},
  1096 + </if>
  1097 + <if test="feewt != null" >
  1098 + FEEWT = #{feewt,jdbcType=DECIMAL},
  1099 + </if>
  1100 + <if test="vol != null" >
  1101 + VOL = #{vol,jdbcType=DECIMAL},
  1102 + </if>
  1103 + <if test="ctrlopedepartment != null" >
  1104 + CTRLOPEDEPARTMENT = #{ctrlopedepartment,jdbcType=VARCHAR},
  1105 + </if>
  1106 + <if test="shprname != null" >
  1107 + SHPRNAME = #{shprname,jdbcType=VARCHAR},
  1108 + </if>
  1109 + <if test="shprmobiletype != null" >
  1110 + SHPRMOBILETYPE = #{shprmobiletype,jdbcType=VARCHAR},
  1111 + </if>
  1112 + <if test="shprtel != null" >
  1113 + SHPRTEL = #{shprtel,jdbcType=VARCHAR},
  1114 + </if>
  1115 + <if test="shpraddress != null" >
  1116 + SHPRADDRESS = #{shpraddress,jdbcType=VARCHAR},
  1117 + </if>
  1118 + <if test="shprcountyr != null" >
  1119 + SHPRCOUNTYR = #{shprcountyr,jdbcType=VARCHAR},
  1120 + </if>
  1121 + <if test="shpcomid != null" >
  1122 + SHPCOMID = #{shpcomid,jdbcType=VARCHAR},
  1123 + </if>
  1124 + <if test="shpaeocode != null" >
  1125 + SHPAEOCODE = #{shpaeocode,jdbcType=VARCHAR},
  1126 + </if>
  1127 + <if test="shpcustomerid != null" >
  1128 + SHPCUSTOMERID = #{shpcustomerid,jdbcType=VARCHAR},
  1129 + </if>
  1130 + <if test="cnsnname != null" >
  1131 + CNSNNAME = #{cnsnname,jdbcType=VARCHAR},
  1132 + </if>
  1133 + <if test="cnsrmobiletype != null" >
  1134 + CNSRMOBILETYPE = #{cnsrmobiletype,jdbcType=VARCHAR},
  1135 + </if>
  1136 + <if test="cnsntel != null" >
  1137 + CNSNTEL = #{cnsntel,jdbcType=VARCHAR},
  1138 + </if>
  1139 + <if test="cnsnaddress != null" >
  1140 + CNSNADDRESS = #{cnsnaddress,jdbcType=VARCHAR},
  1141 + </if>
  1142 + <if test="cnscountyr != null" >
  1143 + CNSCOUNTYR = #{cnscountyr,jdbcType=VARCHAR},
  1144 + </if>
  1145 + <if test="cnscomid != null" >
  1146 + CNSCOMID = #{cnscomid,jdbcType=VARCHAR},
  1147 + </if>
  1148 + <if test="cnsaeocode != null" >
  1149 + CNSAEOCODE = #{cnsaeocode,jdbcType=VARCHAR},
  1150 + </if>
  1151 + <if test="cnsrctcname != null" >
  1152 + CNSRCTCNAME = #{cnsrctcname,jdbcType=VARCHAR},
  1153 + </if>
  1154 + <if test="cnsrctctel != null" >
  1155 + CNSRCTCTEL = #{cnsrctctel,jdbcType=VARCHAR},
  1156 + </if>
  1157 + <if test="csgcustomerid != null" >
  1158 + CSGCUSTOMERID = #{csgcustomerid,jdbcType=VARCHAR},
  1159 + </if>
  1160 + <if test="collected != null" >
  1161 + COLLECTED = #{collected,jdbcType=VARCHAR},
  1162 + </if>
  1163 + <if test="exchagerate != null" >
  1164 + EXCHAGERATE = #{exchagerate,jdbcType=DECIMAL},
  1165 + </if>
  1166 + <if test="comat != null" >
  1167 + COMAT = #{comat,jdbcType=VARCHAR},
  1168 + </if>
  1169 + <if test="refrigerated != null" >
  1170 + REFRIGERATED = #{refrigerated,jdbcType=VARCHAR},
  1171 + </if>
  1172 + <if test="forknum != null" >
  1173 + FORKNUM = #{forknum,jdbcType=DECIMAL},
  1174 + </if>
  1175 + <if test="whshold != null" >
  1176 + WHSHOLD = #{whshold,jdbcType=VARCHAR},
  1177 + </if>
  1178 + <if test="expcusttransit != null" >
  1179 + EXPCUSTTRANSIT = #{expcusttransit,jdbcType=VARCHAR},
  1180 + </if>
  1181 + <if test="impcusttransit != null" >
  1182 + IMPCUSTTRANSIT = #{impcusttransit,jdbcType=VARCHAR},
  1183 + </if>
  1184 + <if test="shorttrans != null" >
  1185 + SHORTTRANS = #{shorttrans,jdbcType=VARCHAR},
  1186 + </if>
  1187 + <if test="shorttransbup != null" >
  1188 + SHORTTRANSBUP = #{shorttransbup,jdbcType=VARCHAR},
  1189 + </if>
  1190 + <if test="cargoowner != null" >
  1191 + CARGOOWNER = #{cargoowner,jdbcType=VARCHAR},
  1192 + </if>
  1193 + <if test="chargetime != null" >
  1194 + CHARGETIME = #{chargetime,jdbcType=TIMESTAMP},
  1195 + </if>
  1196 + <if test="isinstruction != null" >
  1197 + ISINSTRUCTION = #{isinstruction,jdbcType=VARCHAR},
  1198 + </if>
  1199 + <if test="notify != null" >
  1200 + NOTIFY = #{notify,jdbcType=VARCHAR},
  1201 + </if>
  1202 + <if test="shippervalue != null" >
  1203 + SHIPPERVALUE = #{shippervalue,jdbcType=DECIMAL},
  1204 + </if>
  1205 + <if test="trafficvalue != null" >
  1206 + TRAFFICVALUE = #{trafficvalue,jdbcType=DECIMAL},
  1207 + </if>
  1208 + <if test="customvalue != null" >
  1209 + CUSTOMVALUE = #{customvalue,jdbcType=DECIMAL},
  1210 + </if>
  1211 + <if test="insurevalue != null" >
  1212 + INSUREVALUE = #{insurevalue,jdbcType=DECIMAL},
  1213 + </if>
  1214 + <if test="fileattached != null" >
  1215 + FILEATTACHED = #{fileattached,jdbcType=VARCHAR},
  1216 + </if>
  1217 + <if test="ratetype != null" >
  1218 + RATETYPE = #{ratetype,jdbcType=VARCHAR},
  1219 + </if>
  1220 + <if test="processingmethod != null" >
  1221 + PROCESSINGMETHOD = #{processingmethod,jdbcType=VARCHAR},
  1222 + </if>
  1223 + <if test="handlingcircs != null" >
  1224 + HANDLINGCIRCS = #{handlingcircs,jdbcType=VARCHAR},
  1225 + </if>
  1226 + <if test="reservedtonnage != null" >
  1227 + RESERVEDTONNAGE = #{reservedtonnage,jdbcType=VARCHAR},
  1228 + </if>
  1229 + <if test="carriage != null" >
  1230 + CARRIAGE = #{carriage,jdbcType=DECIMAL},
  1231 + </if>
  1232 + <if test="rate != null" >
  1233 + RATE = #{rate,jdbcType=DECIMAL},
  1234 + </if>
  1235 + <if test="crtoper != null" >
  1236 + CRTOPER = #{crtoper,jdbcType=VARCHAR},
  1237 + </if>
  1238 + <if test="wtunit != null" >
  1239 + WTUNIT = #{wtunit,jdbcType=VARCHAR},
  1240 + </if>
  1241 + <if test="originalwt != null" >
  1242 + ORIGINALWT = #{originalwt,jdbcType=DECIMAL},
  1243 + </if>
  1244 + <if test="originalfeewt != null" >
  1245 + ORIGINALFEEWT = #{originalfeewt,jdbcType=DECIMAL},
  1246 + </if>
  1247 + <if test="volunit != null" >
  1248 + VOLUNIT = #{volunit,jdbcType=VARCHAR},
  1249 + </if>
  1250 + <if test="currencyid != null" >
  1251 + CURRENCYID = #{currencyid,jdbcType=VARCHAR},
  1252 + </if>
  1253 + <if test="originalvol != null" >
  1254 + ORIGINALVOL = #{originalvol,jdbcType=DECIMAL},
  1255 + </if>
  1256 + <if test="crtopetime != null" >
  1257 + CRTOPETIME = #{crtopetime,jdbcType=TIMESTAMP},
  1258 + </if>
  1259 + <if test="dlvpriority != null" >
  1260 + DLVPRIORITY = #{dlvpriority,jdbcType=CHAR},
  1261 + </if>
  1262 + <if test="chked != null" >
  1263 + CHKED = #{chked,jdbcType=VARCHAR},
  1264 + </if>
  1265 + <if test="labelnum != null" >
  1266 + LABELNUM = #{labelnum,jdbcType=DECIMAL},
  1267 + </if>
  1268 + <if test="shpcustomer != null" >
  1269 + SHPCUSTOMER = #{shpcustomer,jdbcType=VARCHAR},
  1270 + </if>
  1271 + <if test="crtagent != null" >
  1272 + CRTAGENT = #{crtagent,jdbcType=VARCHAR},
  1273 + </if>
  1274 + <if test="crtdate != null" >
  1275 + CRTDATE = #{crtdate,jdbcType=TIMESTAMP},
  1276 + </if>
  1277 + <if test="extraweight != null" >
  1278 + EXTRAWEIGHT = #{extraweight,jdbcType=DECIMAL},
  1279 + </if>
  1280 + <if test="storeremark != null" >
  1281 + STOREREMARK = #{storeremark,jdbcType=VARCHAR},
  1282 + </if>
  1283 + <if test="balanceremark != null" >
  1284 + BALANCEREMARK = #{balanceremark,jdbcType=VARCHAR},
  1285 + </if>
  1286 + <if test="filechked != null" >
  1287 + FILECHKED = #{filechked,jdbcType=VARCHAR},
  1288 + </if>
  1289 + <if test="iscarbalance != null" >
  1290 + ISCARBALANCE = #{iscarbalance,jdbcType=VARCHAR},
  1291 + </if>
  1292 + <if test="cnsnidcard != null" >
  1293 + CNSNIDCARD = #{cnsnidcard,jdbcType=VARCHAR},
  1294 + </if>
  1295 + <if test="ciqcheck != null" >
  1296 + CIQCHECK = #{ciqcheck,jdbcType=CHAR},
  1297 + </if>
  1298 + <if test="tmpbillno != null" >
  1299 + TMPBILLNO = #{tmpbillno,jdbcType=VARCHAR},
  1300 + </if>
  1301 + <if test="subbillid != null" >
  1302 + SUBBILLID = #{subbillid,jdbcType=VARCHAR},
  1303 + </if>
  1304 + <if test="istrans != null" >
  1305 + ISTRANS = #{istrans,jdbcType=VARCHAR},
  1306 + </if>
  1307 + <if test="splittag != null" >
  1308 + SPLITTAG = #{splittag,jdbcType=CHAR},
  1309 + </if>
  1310 + <if test="customstrans != null" >
  1311 + CUSTOMSTRANS = #{customstrans,jdbcType=CHAR},
  1312 + </if>
  1313 + <if test="endoper != null" >
  1314 + ENDOPER = #{endoper,jdbcType=VARCHAR},
  1315 + </if>
  1316 + <if test="endopetime != null" >
  1317 + ENDOPETIME = #{endopetime,jdbcType=TIMESTAMP},
  1318 + </if>
  1319 + <if test="confirmoper != null" >
  1320 + CONFIRMOPER = #{confirmoper,jdbcType=VARCHAR},
  1321 + </if>
  1322 + <if test="confirmopetime != null" >
  1323 + CONFIRMOPETIME = #{confirmopetime,jdbcType=TIMESTAMP},
  1324 + </if>
  1325 + <if test="csgcustomer != null" >
  1326 + CSGCUSTOMER = #{csgcustomer,jdbcType=VARCHAR},
  1327 + </if>
  1328 + <if test="relationbillid != null" >
  1329 + RELATIONBILLID = #{relationbillid,jdbcType=VARCHAR},
  1330 + </if>
  1331 + <if test="customsCountry != null" >
  1332 + CUSTOMS_COUNTRY = #{customsCountry,jdbcType=VARCHAR},
  1333 + </if>
  1334 + <if test="customsCity != null" >
  1335 + CUSTOMS_CITY = #{customsCity,jdbcType=VARCHAR},
  1336 + </if>
  1337 + <if test="customsRemark != null" >
  1338 + CUSTOMS_REMARK = #{customsRemark,jdbcType=VARCHAR},
  1339 + </if>
  1340 + <if test="cargosource != null" >
  1341 + CARGOSOURCE = #{cargosource,jdbcType=VARCHAR},
  1342 + </if>
  1343 + <if test="cargonmch != null" >
  1344 + CARGONMCH = #{cargonmch,jdbcType=VARCHAR},
  1345 + </if>
  1346 + <if test="isdgr != null" >
  1347 + ISDGR = #{isdgr,jdbcType=VARCHAR},
  1348 + </if>
  1349 + <if test="percent != null" >
  1350 + PERCENT = #{percent,jdbcType=DECIMAL},
  1351 + </if>
  1352 + <if test="awbtype != null" >
  1353 + AWBTYPE = #{awbtype,jdbcType=VARCHAR},
  1354 + </if>
  1355 + <if test="status != null" >
  1356 + STATUS = #{status,jdbcType=VARCHAR},
  1357 + </if>
  1358 + <if test="paymodel != null" >
  1359 + PAYMODEL = #{paymodel,jdbcType=VARCHAR},
  1360 + </if>
  1361 + <if test="isdelete != null" >
  1362 + ISDELETE = #{isdelete,jdbcType=BIT},
  1363 + </if>
  1364 + <if test="optime != null" >
  1365 + OPTIME = #{optime,jdbcType=TIMESTAMP},
  1366 + </if>
  1367 + </set>
  1368 + where BILLID = #{billid,jdbcType=VARCHAR}
  1369 + </update>
  1370 + <update id="updateByPrimaryKey" parameterType="com.sunyo.wlpt.base.model.AWB_AWBINFO" >
  1371 + update T_FIL_AWBINFO
  1372 + set STOCKTYPEID = #{stocktypeid,jdbcType=VARCHAR},
  1373 + STOCKPRE = #{stockpre,jdbcType=VARCHAR},
  1374 + STOCKNO = #{stockno,jdbcType=VARCHAR},
  1375 + PRODUCTID = #{productid,jdbcType=VARCHAR},
  1376 + CARRIERPRODUCTID = #{carrierproductid,jdbcType=VARCHAR},
  1377 + DELFLAG = #{delflag,jdbcType=VARCHAR},
  1378 + PREVIOUSBILLID = #{previousbillid,jdbcType=VARCHAR},
  1379 + DOMINT = #{domint,jdbcType=VARCHAR},
  1380 + CUSTOMCTL = #{customctl,jdbcType=VARCHAR},
  1381 + SPECOPEID = #{specopeid,jdbcType=VARCHAR},
  1382 + SPECOPEIDEXT = #{specopeidext,jdbcType=VARCHAR},
  1383 + SAIRPORTID = #{sairportid,jdbcType=VARCHAR},
  1384 + SCITYID = #{scityid,jdbcType=VARCHAR},
  1385 + EAIRPORTID = #{eairportid,jdbcType=VARCHAR},
  1386 + ECITYID = #{ecityid,jdbcType=VARCHAR},
  1387 + BY1 = #{by1,jdbcType=VARCHAR},
  1388 + DEST1 = #{dest1,jdbcType=VARCHAR},
  1389 + DEST1CITY = #{dest1city,jdbcType=VARCHAR},
  1390 + BY2 = #{by2,jdbcType=VARCHAR},
  1391 + DEST2 = #{dest2,jdbcType=VARCHAR},
  1392 + DEST2CITY = #{dest2city,jdbcType=VARCHAR},
  1393 + BY3 = #{by3,jdbcType=VARCHAR},
  1394 + DEST3 = #{dest3,jdbcType=VARCHAR},
  1395 + DEST3CITY = #{dest3city,jdbcType=VARCHAR},
  1396 + BY4 = #{by4,jdbcType=VARCHAR},
  1397 + DEST4 = #{dest4,jdbcType=VARCHAR},
  1398 + DEST4CITY = #{dest4city,jdbcType=VARCHAR},
  1399 + CARGONO = #{cargono,jdbcType=VARCHAR},
  1400 + CARGONM = #{cargonm,jdbcType=VARCHAR},
  1401 + PACK = #{pack,jdbcType=VARCHAR},
  1402 + MEAS = #{meas,jdbcType=VARCHAR},
  1403 + PCS = #{pcs,jdbcType=DECIMAL},
  1404 + WEIGHT = #{weight,jdbcType=DECIMAL},
  1405 + FEEWT = #{feewt,jdbcType=DECIMAL},
  1406 + VOL = #{vol,jdbcType=DECIMAL},
  1407 + CTRLOPEDEPARTMENT = #{ctrlopedepartment,jdbcType=VARCHAR},
  1408 + SHPRNAME = #{shprname,jdbcType=VARCHAR},
  1409 + SHPRMOBILETYPE = #{shprmobiletype,jdbcType=VARCHAR},
  1410 + SHPRTEL = #{shprtel,jdbcType=VARCHAR},
  1411 + SHPRADDRESS = #{shpraddress,jdbcType=VARCHAR},
  1412 + SHPRCOUNTYR = #{shprcountyr,jdbcType=VARCHAR},
  1413 + SHPCOMID = #{shpcomid,jdbcType=VARCHAR},
  1414 + SHPAEOCODE = #{shpaeocode,jdbcType=VARCHAR},
  1415 + SHPCUSTOMERID = #{shpcustomerid,jdbcType=VARCHAR},
  1416 + CNSNNAME = #{cnsnname,jdbcType=VARCHAR},
  1417 + CNSRMOBILETYPE = #{cnsrmobiletype,jdbcType=VARCHAR},
  1418 + CNSNTEL = #{cnsntel,jdbcType=VARCHAR},
  1419 + CNSNADDRESS = #{cnsnaddress,jdbcType=VARCHAR},
  1420 + CNSCOUNTYR = #{cnscountyr,jdbcType=VARCHAR},
  1421 + CNSCOMID = #{cnscomid,jdbcType=VARCHAR},
  1422 + CNSAEOCODE = #{cnsaeocode,jdbcType=VARCHAR},
  1423 + CNSRCTCNAME = #{cnsrctcname,jdbcType=VARCHAR},
  1424 + CNSRCTCTEL = #{cnsrctctel,jdbcType=VARCHAR},
  1425 + CSGCUSTOMERID = #{csgcustomerid,jdbcType=VARCHAR},
  1426 + COLLECTED = #{collected,jdbcType=VARCHAR},
  1427 + EXCHAGERATE = #{exchagerate,jdbcType=DECIMAL},
  1428 + COMAT = #{comat,jdbcType=VARCHAR},
  1429 + REFRIGERATED = #{refrigerated,jdbcType=VARCHAR},
  1430 + FORKNUM = #{forknum,jdbcType=DECIMAL},
  1431 + WHSHOLD = #{whshold,jdbcType=VARCHAR},
  1432 + EXPCUSTTRANSIT = #{expcusttransit,jdbcType=VARCHAR},
  1433 + IMPCUSTTRANSIT = #{impcusttransit,jdbcType=VARCHAR},
  1434 + SHORTTRANS = #{shorttrans,jdbcType=VARCHAR},
  1435 + SHORTTRANSBUP = #{shorttransbup,jdbcType=VARCHAR},
  1436 + CARGOOWNER = #{cargoowner,jdbcType=VARCHAR},
  1437 + CHARGETIME = #{chargetime,jdbcType=TIMESTAMP},
  1438 + ISINSTRUCTION = #{isinstruction,jdbcType=VARCHAR},
  1439 + NOTIFY = #{notify,jdbcType=VARCHAR},
  1440 + SHIPPERVALUE = #{shippervalue,jdbcType=DECIMAL},
  1441 + TRAFFICVALUE = #{trafficvalue,jdbcType=DECIMAL},
  1442 + CUSTOMVALUE = #{customvalue,jdbcType=DECIMAL},
  1443 + INSUREVALUE = #{insurevalue,jdbcType=DECIMAL},
  1444 + FILEATTACHED = #{fileattached,jdbcType=VARCHAR},
  1445 + RATETYPE = #{ratetype,jdbcType=VARCHAR},
  1446 + PROCESSINGMETHOD = #{processingmethod,jdbcType=VARCHAR},
  1447 + HANDLINGCIRCS = #{handlingcircs,jdbcType=VARCHAR},
  1448 + RESERVEDTONNAGE = #{reservedtonnage,jdbcType=VARCHAR},
  1449 + CARRIAGE = #{carriage,jdbcType=DECIMAL},
  1450 + RATE = #{rate,jdbcType=DECIMAL},
  1451 + CRTOPER = #{crtoper,jdbcType=VARCHAR},
  1452 + WTUNIT = #{wtunit,jdbcType=VARCHAR},
  1453 + ORIGINALWT = #{originalwt,jdbcType=DECIMAL},
  1454 + ORIGINALFEEWT = #{originalfeewt,jdbcType=DECIMAL},
  1455 + VOLUNIT = #{volunit,jdbcType=VARCHAR},
  1456 + CURRENCYID = #{currencyid,jdbcType=VARCHAR},
  1457 + ORIGINALVOL = #{originalvol,jdbcType=DECIMAL},
  1458 + CRTOPETIME = #{crtopetime,jdbcType=TIMESTAMP},
  1459 + DLVPRIORITY = #{dlvpriority,jdbcType=CHAR},
  1460 + CHKED = #{chked,jdbcType=VARCHAR},
  1461 + LABELNUM = #{labelnum,jdbcType=DECIMAL},
  1462 + SHPCUSTOMER = #{shpcustomer,jdbcType=VARCHAR},
  1463 + CRTAGENT = #{crtagent,jdbcType=VARCHAR},
  1464 + CRTDATE = #{crtdate,jdbcType=TIMESTAMP},
  1465 + EXTRAWEIGHT = #{extraweight,jdbcType=DECIMAL},
  1466 + STOREREMARK = #{storeremark,jdbcType=VARCHAR},
  1467 + BALANCEREMARK = #{balanceremark,jdbcType=VARCHAR},
  1468 + FILECHKED = #{filechked,jdbcType=VARCHAR},
  1469 + ISCARBALANCE = #{iscarbalance,jdbcType=VARCHAR},
  1470 + CNSNIDCARD = #{cnsnidcard,jdbcType=VARCHAR},
  1471 + CIQCHECK = #{ciqcheck,jdbcType=CHAR},
  1472 + TMPBILLNO = #{tmpbillno,jdbcType=VARCHAR},
  1473 + SUBBILLID = #{subbillid,jdbcType=VARCHAR},
  1474 + ISTRANS = #{istrans,jdbcType=VARCHAR},
  1475 + SPLITTAG = #{splittag,jdbcType=CHAR},
  1476 + CUSTOMSTRANS = #{customstrans,jdbcType=CHAR},
  1477 + ENDOPER = #{endoper,jdbcType=VARCHAR},
  1478 + ENDOPETIME = #{endopetime,jdbcType=TIMESTAMP},
  1479 + CONFIRMOPER = #{confirmoper,jdbcType=VARCHAR},
  1480 + CONFIRMOPETIME = #{confirmopetime,jdbcType=TIMESTAMP},
  1481 + CSGCUSTOMER = #{csgcustomer,jdbcType=VARCHAR},
  1482 + RELATIONBILLID = #{relationbillid,jdbcType=VARCHAR},
  1483 + CUSTOMS_COUNTRY = #{customsCountry,jdbcType=VARCHAR},
  1484 + CUSTOMS_CITY = #{customsCity,jdbcType=VARCHAR},
  1485 + CUSTOMS_REMARK = #{customsRemark,jdbcType=VARCHAR},
  1486 + CARGOSOURCE = #{cargosource,jdbcType=VARCHAR},
  1487 + CARGONMCH = #{cargonmch,jdbcType=VARCHAR},
  1488 + ISDGR = #{isdgr,jdbcType=VARCHAR},
  1489 + PERCENT = #{percent,jdbcType=DECIMAL},
  1490 + AWBTYPE = #{awbtype,jdbcType=VARCHAR},
  1491 + STATUS = #{status,jdbcType=VARCHAR},
  1492 + PAYMODEL = #{paymodel,jdbcType=VARCHAR},
  1493 + ISDELETE = #{isdelete,jdbcType=BIT},
  1494 + OPTIME = #{optime,jdbcType=TIMESTAMP}
  1495 + where BILLID = #{billid,jdbcType=VARCHAR}
  1496 + </update>
  1497 +</mapper>
  1 +<?xml version="1.0" encoding="UTF-8" ?>
  2 +<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
  3 +<mapper namespace="com.sunyo.wlpt.base.dao.CONFIG_AIRSTATION_CUSTOMCODEMapper" >
  4 + <resultMap id="BaseResultMap" type="com.sunyo.wlpt.base.model.CONFIG_AIRSTATION_CUSTOMCODE" >
  5 + <result column="airStationName" property="airstationname" jdbcType="VARCHAR" />
  6 + <result column="customCode" property="customcode" jdbcType="VARCHAR" />
  7 + </resultMap>
  8 + <insert id="insert" parameterType="com.sunyo.wlpt.base.model.CONFIG_AIRSTATION_CUSTOMCODE" >
  9 + insert into CONFIG_AIRSTATION_CUSTOMCODE (airStationName, customCode)
  10 + values (#{airstationname,jdbcType=VARCHAR}, #{customcode,jdbcType=VARCHAR})
  11 + </insert>
  12 + <insert id="insertSelective" parameterType="com.sunyo.wlpt.base.model.CONFIG_AIRSTATION_CUSTOMCODE" >
  13 + insert into CONFIG_AIRSTATION_CUSTOMCODE
  14 + <trim prefix="(" suffix=")" suffixOverrides="," >
  15 + <if test="airstationname != null" >
  16 + airStationName,
  17 + </if>
  18 + <if test="customcode != null" >
  19 + customCode,
  20 + </if>
  21 + </trim>
  22 + <trim prefix="values (" suffix=")" suffixOverrides="," >
  23 + <if test="airstationname != null" >
  24 + #{airstationname,jdbcType=VARCHAR},
  25 + </if>
  26 + <if test="customcode != null" >
  27 + #{customcode,jdbcType=VARCHAR},
  28 + </if>
  29 + </trim>
  30 + </insert>
  31 +</mapper>
  1 +<?xml version="1.0" encoding="UTF-8" ?>
  2 +<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
  3 +<mapper namespace="com.sunyo.wlpt.base.dao.CONFIG_USER_CARRIERMapper" >
  4 + <resultMap id="BaseResultMap" type="com.sunyo.wlpt.base.model.CONFIG_USER_CARRIER" >
  5 + <result column="userId" property="userid" jdbcType="INTEGER" />
  6 + <result column="carrierCode" property="carriercode" jdbcType="VARCHAR" />
  7 + </resultMap>
  8 + <insert id="insert" parameterType="com.sunyo.wlpt.base.model.CONFIG_USER_CARRIER" >
  9 + insert into CONFIG_USER_CARRIER (userId, carrierCode)
  10 + values (#{userid,jdbcType=INTEGER}, #{carriercode,jdbcType=VARCHAR})
  11 + </insert>
  12 + <insert id="insertSelective" parameterType="com.sunyo.wlpt.base.model.CONFIG_USER_CARRIER" >
  13 + insert into CONFIG_USER_CARRIER
  14 + <trim prefix="(" suffix=")" suffixOverrides="," >
  15 + <if test="userid != null" >
  16 + userId,
  17 + </if>
  18 + <if test="carriercode != null" >
  19 + carrierCode,
  20 + </if>
  21 + </trim>
  22 + <trim prefix="values (" suffix=")" suffixOverrides="," >
  23 + <if test="userid != null" >
  24 + #{userid,jdbcType=INTEGER},
  25 + </if>
  26 + <if test="carriercode != null" >
  27 + #{carriercode,jdbcType=VARCHAR},
  28 + </if>
  29 + </trim>
  30 + </insert>
  31 +</mapper>
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3 +<mapper namespace="com.sunyo.wlpt.base.dao.CONFIG_USER_CUSTOMCODEMapper">
  4 + <resultMap id="BaseResultMap" type="com.sunyo.wlpt.base.model.CONFIG_USER_CUSTOMCODE">
  5 + <result column="userID" jdbcType="INTEGER" property="userid" />
  6 + <result column="customCode" jdbcType="VARCHAR" property="customcode" />
  7 + </resultMap>
  8 + <insert id="insert" parameterType="com.sunyo.wlpt.base.model.CONFIG_USER_CUSTOMCODE">
  9 + insert into CONFIG_USER_CUSTOMCODE (userID, customCode)
  10 + values (#{userid,jdbcType=INTEGER}, #{customcode,jdbcType=VARCHAR})
  11 + </insert>
  12 + <insert id="insertSelective" parameterType="com.sunyo.wlpt.base.model.CONFIG_USER_CUSTOMCODE">
  13 + insert into CONFIG_USER_CUSTOMCODE
  14 + <trim prefix="(" suffix=")" suffixOverrides=",">
  15 + <if test="userid != null">
  16 + userID,
  17 + </if>
  18 + <if test="customcode != null">
  19 + customCode,
  20 + </if>
  21 + </trim>
  22 + <trim prefix="values (" suffix=")" suffixOverrides=",">
  23 + <if test="userid != null">
  24 + #{userid,jdbcType=INTEGER},
  25 + </if>
  26 + <if test="customcode != null">
  27 + #{customcode,jdbcType=VARCHAR},
  28 + </if>
  29 + </trim>
  30 + </insert>
  31 + <resultMap id="BaseResultMap" type="com.sunyo.wlpt.base.model.CONFIG_USER_CUSTOMCODE">
  32 + <result column="userID" jdbcType="INTEGER" property="userid" />
  33 + <result column="customCode" jdbcType="VARCHAR" property="customcode" />
  34 + </resultMap>
  35 + <insert id="insert" parameterType="com.sunyo.wlpt.base.model.CONFIG_USER_CUSTOMCODE">
  36 + insert into CONFIG_USER_CUSTOMCODE (userID, customCode)
  37 + values (#{userid,jdbcType=INTEGER}, #{customcode,jdbcType=VARCHAR})
  38 + </insert>
  39 + <insert id="insertSelective" parameterType="com.sunyo.wlpt.base.model.CONFIG_USER_CUSTOMCODE">
  40 + insert into CONFIG_USER_CUSTOMCODE
  41 + <trim prefix="(" suffix=")" suffixOverrides=",">
  42 + <if test="userid != null">
  43 + userID,
  44 + </if>
  45 + <if test="customcode != null">
  46 + customCode,
  47 + </if>
  48 + </trim>
  49 + <trim prefix="values (" suffix=")" suffixOverrides=",">
  50 + <if test="userid != null">
  51 + #{userid,jdbcType=INTEGER},
  52 + </if>
  53 + <if test="customcode != null">
  54 + #{customcode,jdbcType=VARCHAR},
  55 + </if>
  56 + </trim>
  57 + </insert>
  58 +</mapper>
  1 +<?xml version="1.0" encoding="UTF-8" ?>
  2 +<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
  3 +<mapper namespace="com.sunyo.wlpt.base.dao.CONFIG_USER_EnterpriseCodeMapper" >
  4 + <resultMap id="BaseResultMap" type="com.sunyo.wlpt.base.model.CONFIG_USER_EnterpriseCode" >
  5 + <result column="userId" property="userid" jdbcType="INTEGER" />
  6 + <result column="enterpriseCode" property="enterprisecode" jdbcType="VARCHAR" />
  7 + </resultMap>
  8 + <insert id="insert" parameterType="com.sunyo.wlpt.base.model.CONFIG_USER_EnterpriseCode" >
  9 + insert into CONFIG_USER_EnterpriseCode (userId, enterpriseCode)
  10 + values (#{userid,jdbcType=INTEGER}, #{enterprisecode,jdbcType=VARCHAR})
  11 + </insert>
  12 + <insert id="insertSelective" parameterType="com.sunyo.wlpt.base.model.CONFIG_USER_EnterpriseCode" >
  13 + insert into CONFIG_USER_EnterpriseCode
  14 + <trim prefix="(" suffix=")" suffixOverrides="," >
  15 + <if test="userid != null" >
  16 + userId,
  17 + </if>
  18 + <if test="enterprisecode != null" >
  19 + enterpriseCode,
  20 + </if>
  21 + </trim>
  22 + <trim prefix="values (" suffix=")" suffixOverrides="," >
  23 + <if test="userid != null" >
  24 + #{userid,jdbcType=INTEGER},
  25 + </if>
  26 + <if test="enterprisecode != null" >
  27 + #{enterprisecode,jdbcType=VARCHAR},
  28 + </if>
  29 + </trim>
  30 + </insert>
  31 +</mapper>
  1 +<?xml version="1.0" encoding="UTF-8" ?>
  2 +<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
  3 +<mapper namespace="com.sunyo.wlpt.base.dao.NMMS_CUSTOM_MT1201Mapper" >
  4 + <resultMap id="BaseResultMap" type="com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT1201" >
  5 + <id column="uuid" property="uuid" jdbcType="VARCHAR" />
  6 + <result column="awba" property="awba" jdbcType="VARCHAR" />
  7 + <result column="awbh" property="awbh" jdbcType="VARCHAR" />
  8 + <result column="customCode" property="customcode" jdbcType="VARCHAR" />
  9 + <result column="goodsName" property="goodsname" jdbcType="VARCHAR" />
  10 + <result column="acTime" property="actime" jdbcType="TIMESTAMP" />
  11 + <result column="carrier" property="carrier" jdbcType="VARCHAR" />
  12 + <result column="flightNo" property="flightno" jdbcType="VARCHAR" />
  13 + <result column="flightDate" property="flightdate" jdbcType="DATE" />
  14 + <result column="originStation" property="originstation" jdbcType="VARCHAR" />
  15 + <result column="destinationStation" property="destinationstation" jdbcType="VARCHAR" />
  16 + <result column="piece" property="piece" jdbcType="INTEGER" />
  17 + <result column="weight" property="weight" jdbcType="DECIMAL" />
  18 + <result column="splitCode" property="splitcode" jdbcType="VARCHAR" />
  19 + <result column="status" property="status" jdbcType="VARCHAR" />
  20 + <result column="isDelete" property="isdelete" jdbcType="BIT" />
  21 + <result column="uldType" property="uldtype" jdbcType="VARCHAR" />
  22 + <result column="uldNo" property="uldno" jdbcType="VARCHAR" />
  23 + <result column="planeNo" property="planeno" jdbcType="VARCHAR" />
  24 + <result column="opeuserid" property="opeuserid" jdbcType="VARCHAR" />
  25 + <result column="ext5" property="ext5" jdbcType="VARCHAR" />
  26 + </resultMap>
  27 + <sql id="Base_Column_List" >
  28 + uuid, awba, awbh, customCode, goodsName, acTime, carrier, flightNo, flightDate, originStation,
  29 + destinationStation, piece, weight, splitCode, status, isDelete, uldType, uldNo, planeNo,
  30 + opeuserid, ext5
  31 + </sql>
  32 + <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.String" >
  33 + select
  34 + <include refid="Base_Column_List" />
  35 + from CUSTOM_MT1201
  36 + where uuid = #{uuid,jdbcType=VARCHAR}
  37 + </select>
  38 + <delete id="deleteByPrimaryKey" parameterType="java.lang.String" >
  39 + delete from CUSTOM_MT1201
  40 + where uuid = #{uuid,jdbcType=VARCHAR}
  41 + </delete>
  42 + <insert id="insert" parameterType="com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT1201" >
  43 + insert into CUSTOM_MT1201 (uuid, awba, awbh,
  44 + customCode, goodsName, acTime,
  45 + carrier, flightNo, flightDate,
  46 + originStation, destinationStation, piece,
  47 + weight, splitCode, status,
  48 + isDelete, uldType, uldNo,
  49 + planeNo, opeuserid, ext5
  50 + )
  51 + values (#{uuid,jdbcType=VARCHAR}, #{awba,jdbcType=VARCHAR}, #{awbh,jdbcType=VARCHAR},
  52 + #{customcode,jdbcType=VARCHAR}, #{goodsname,jdbcType=VARCHAR}, #{actime,jdbcType=TIMESTAMP},
  53 + #{carrier,jdbcType=VARCHAR}, #{flightno,jdbcType=VARCHAR}, #{flightdate,jdbcType=DATE},
  54 + #{originstation,jdbcType=VARCHAR}, #{destinationstation,jdbcType=VARCHAR}, #{piece,jdbcType=INTEGER},
  55 + #{weight,jdbcType=DECIMAL}, #{splitcode,jdbcType=VARCHAR}, #{status,jdbcType=VARCHAR},
  56 + #{isdelete,jdbcType=BIT}, #{uldtype,jdbcType=VARCHAR}, #{uldno,jdbcType=VARCHAR},
  57 + #{planeno,jdbcType=VARCHAR}, #{opeuserid,jdbcType=VARCHAR}, #{ext5,jdbcType=VARCHAR}
  58 + )
  59 + </insert>
  60 + <insert id="insertSelective" parameterType="com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT1201" >
  61 + insert into CUSTOM_MT1201
  62 + <trim prefix="(" suffix=")" suffixOverrides="," >
  63 + <if test="uuid != null" >
  64 + uuid,
  65 + </if>
  66 + <if test="awba != null" >
  67 + awba,
  68 + </if>
  69 + <if test="awbh != null" >
  70 + awbh,
  71 + </if>
  72 + <if test="customcode != null" >
  73 + customCode,
  74 + </if>
  75 + <if test="goodsname != null" >
  76 + goodsName,
  77 + </if>
  78 + <if test="actime != null" >
  79 + acTime,
  80 + </if>
  81 + <if test="carrier != null" >
  82 + carrier,
  83 + </if>
  84 + <if test="flightno != null" >
  85 + flightNo,
  86 + </if>
  87 + <if test="flightdate != null" >
  88 + flightDate,
  89 + </if>
  90 + <if test="originstation != null" >
  91 + originStation,
  92 + </if>
  93 + <if test="destinationstation != null" >
  94 + destinationStation,
  95 + </if>
  96 + <if test="piece != null" >
  97 + piece,
  98 + </if>
  99 + <if test="weight != null" >
  100 + weight,
  101 + </if>
  102 + <if test="splitcode != null" >
  103 + splitCode,
  104 + </if>
  105 + <if test="status != null" >
  106 + status,
  107 + </if>
  108 + <if test="isdelete != null" >
  109 + isDelete,
  110 + </if>
  111 + <if test="uldtype != null" >
  112 + uldType,
  113 + </if>
  114 + <if test="uldno != null" >
  115 + uldNo,
  116 + </if>
  117 + <if test="planeno != null" >
  118 + planeNo,
  119 + </if>
  120 + <if test="opeuserid != null" >
  121 + opeuserid,
  122 + </if>
  123 + <if test="ext5 != null" >
  124 + ext5,
  125 + </if>
  126 + </trim>
  127 + <trim prefix="values (" suffix=")" suffixOverrides="," >
  128 + <if test="uuid != null" >
  129 + #{uuid,jdbcType=VARCHAR},
  130 + </if>
  131 + <if test="awba != null" >
  132 + #{awba,jdbcType=VARCHAR},
  133 + </if>
  134 + <if test="awbh != null" >
  135 + #{awbh,jdbcType=VARCHAR},
  136 + </if>
  137 + <if test="customcode != null" >
  138 + #{customcode,jdbcType=VARCHAR},
  139 + </if>
  140 + <if test="goodsname != null" >
  141 + #{goodsname,jdbcType=VARCHAR},
  142 + </if>
  143 + <if test="actime != null" >
  144 + #{actime,jdbcType=TIMESTAMP},
  145 + </if>
  146 + <if test="carrier != null" >
  147 + #{carrier,jdbcType=VARCHAR},
  148 + </if>
  149 + <if test="flightno != null" >
  150 + #{flightno,jdbcType=VARCHAR},
  151 + </if>
  152 + <if test="flightdate != null" >
  153 + #{flightdate,jdbcType=DATE},
  154 + </if>
  155 + <if test="originstation != null" >
  156 + #{originstation,jdbcType=VARCHAR},
  157 + </if>
  158 + <if test="destinationstation != null" >
  159 + #{destinationstation,jdbcType=VARCHAR},
  160 + </if>
  161 + <if test="piece != null" >
  162 + #{piece,jdbcType=INTEGER},
  163 + </if>
  164 + <if test="weight != null" >
  165 + #{weight,jdbcType=DECIMAL},
  166 + </if>
  167 + <if test="splitcode != null" >
  168 + #{splitcode,jdbcType=VARCHAR},
  169 + </if>
  170 + <if test="status != null" >
  171 + #{status,jdbcType=VARCHAR},
  172 + </if>
  173 + <if test="isdelete != null" >
  174 + #{isdelete,jdbcType=BIT},
  175 + </if>
  176 + <if test="uldtype != null" >
  177 + #{uldtype,jdbcType=VARCHAR},
  178 + </if>
  179 + <if test="uldno != null" >
  180 + #{uldno,jdbcType=VARCHAR},
  181 + </if>
  182 + <if test="planeno != null" >
  183 + #{planeno,jdbcType=VARCHAR},
  184 + </if>
  185 + <if test="opeuserid != null" >
  186 + #{opeuserid,jdbcType=VARCHAR},
  187 + </if>
  188 + <if test="ext5 != null" >
  189 + #{ext5,jdbcType=VARCHAR},
  190 + </if>
  191 + </trim>
  192 + </insert>
  193 + <update id="updateByPrimaryKeySelective" parameterType="com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT1201" >
  194 + update CUSTOM_MT1201
  195 + <set >
  196 + <if test="awba != null" >
  197 + awba = #{awba,jdbcType=VARCHAR},
  198 + </if>
  199 + <if test="awbh != null" >
  200 + awbh = #{awbh,jdbcType=VARCHAR},
  201 + </if>
  202 + <if test="customcode != null" >
  203 + customCode = #{customcode,jdbcType=VARCHAR},
  204 + </if>
  205 + <if test="goodsname != null" >
  206 + goodsName = #{goodsname,jdbcType=VARCHAR},
  207 + </if>
  208 + <if test="actime != null" >
  209 + acTime = #{actime,jdbcType=TIMESTAMP},
  210 + </if>
  211 + <if test="carrier != null" >
  212 + carrier = #{carrier,jdbcType=VARCHAR},
  213 + </if>
  214 + <if test="flightno != null" >
  215 + flightNo = #{flightno,jdbcType=VARCHAR},
  216 + </if>
  217 + <if test="flightdate != null" >
  218 + flightDate = #{flightdate,jdbcType=DATE},
  219 + </if>
  220 + <if test="originstation != null" >
  221 + originStation = #{originstation,jdbcType=VARCHAR},
  222 + </if>
  223 + <if test="destinationstation != null" >
  224 + destinationStation = #{destinationstation,jdbcType=VARCHAR},
  225 + </if>
  226 + <if test="piece != null" >
  227 + piece = #{piece,jdbcType=INTEGER},
  228 + </if>
  229 + <if test="weight != null" >
  230 + weight = #{weight,jdbcType=DECIMAL},
  231 + </if>
  232 + <if test="splitcode != null" >
  233 + splitCode = #{splitcode,jdbcType=VARCHAR},
  234 + </if>
  235 + <if test="status != null" >
  236 + status = #{status,jdbcType=VARCHAR},
  237 + </if>
  238 + <if test="isdelete != null" >
  239 + isDelete = #{isdelete,jdbcType=BIT},
  240 + </if>
  241 + <if test="uldtype != null" >
  242 + uldType = #{uldtype,jdbcType=VARCHAR},
  243 + </if>
  244 + <if test="uldno != null" >
  245 + uldNo = #{uldno,jdbcType=VARCHAR},
  246 + </if>
  247 + <if test="planeno != null" >
  248 + planeNo = #{planeno,jdbcType=VARCHAR},
  249 + </if>
  250 + <if test="opeuserid != null" >
  251 + opeuserid = #{opeuserid,jdbcType=VARCHAR},
  252 + </if>
  253 + <if test="ext5 != null" >
  254 + ext5 = #{ext5,jdbcType=VARCHAR},
  255 + </if>
  256 + </set>
  257 + where uuid = #{uuid,jdbcType=VARCHAR}
  258 + </update>
  259 + <update id="updateByPrimaryKey" parameterType="com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT1201" >
  260 + update CUSTOM_MT1201
  261 + set awba = #{awba,jdbcType=VARCHAR},
  262 + awbh = #{awbh,jdbcType=VARCHAR},
  263 + customCode = #{customcode,jdbcType=VARCHAR},
  264 + goodsName = #{goodsname,jdbcType=VARCHAR},
  265 + acTime = #{actime,jdbcType=TIMESTAMP},
  266 + carrier = #{carrier,jdbcType=VARCHAR},
  267 + flightNo = #{flightno,jdbcType=VARCHAR},
  268 + flightDate = #{flightdate,jdbcType=DATE},
  269 + originStation = #{originstation,jdbcType=VARCHAR},
  270 + destinationStation = #{destinationstation,jdbcType=VARCHAR},
  271 + piece = #{piece,jdbcType=INTEGER},
  272 + weight = #{weight,jdbcType=DECIMAL},
  273 + splitCode = #{splitcode,jdbcType=VARCHAR},
  274 + status = #{status,jdbcType=VARCHAR},
  275 + isDelete = #{isdelete,jdbcType=BIT},
  276 + uldType = #{uldtype,jdbcType=VARCHAR},
  277 + uldNo = #{uldno,jdbcType=VARCHAR},
  278 + planeNo = #{planeno,jdbcType=VARCHAR},
  279 + opeuserid = #{opeuserid,jdbcType=VARCHAR},
  280 + ext5 = #{ext5,jdbcType=VARCHAR}
  281 + where uuid = #{uuid,jdbcType=VARCHAR}
  282 + </update>
  283 +</mapper>
  1 +<?xml version="1.0" encoding="UTF-8" ?>
  2 +<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
  3 +<mapper namespace="com.sunyo.wlpt.base.dao.NMMS_CUSTOM_MT2201Mapper" >
  4 + <resultMap id="BaseResultMap" type="com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT2201" >
  5 + <id column="uuid" property="uuid" jdbcType="VARCHAR" />
  6 + <result column="awba" property="awba" jdbcType="VARCHAR" />
  7 + <result column="awbh" property="awbh" jdbcType="VARCHAR" />
  8 + <result column="customCode" property="customcode" jdbcType="VARCHAR" />
  9 + <result column="goodsName" property="goodsname" jdbcType="VARCHAR" />
  10 + <result column="acTime" property="actime" jdbcType="TIMESTAMP" />
  11 + <result column="carrier" property="carrier" jdbcType="VARCHAR" />
  12 + <result column="flightNo" property="flightno" jdbcType="VARCHAR" />
  13 + <result column="flightDate" property="flightdate" jdbcType="DATE" />
  14 + <result column="originStation" property="originstation" jdbcType="VARCHAR" />
  15 + <result column="destinationStation" property="destinationstation" jdbcType="VARCHAR" />
  16 + <result column="piece" property="piece" jdbcType="INTEGER" />
  17 + <result column="weight" property="weight" jdbcType="DECIMAL" />
  18 + <result column="splitCode" property="splitcode" jdbcType="VARCHAR" />
  19 + <result column="status" property="status" jdbcType="VARCHAR" />
  20 + <result column="offLoad" property="offload" jdbcType="VARCHAR" />
  21 + <result column="offLoadUuid" property="offloaduuid" jdbcType="VARCHAR" />
  22 + <result column="isDelete" property="isdelete" jdbcType="BIT" />
  23 + <result column="customType" property="customtype" jdbcType="VARCHAR" />
  24 + <result column="ext2" property="ext2" jdbcType="VARCHAR" />
  25 + <result column="ext3" property="ext3" jdbcType="VARCHAR" />
  26 + <result column="ext4" property="ext4" jdbcType="VARCHAR" />
  27 + <result column="ext5" property="ext5" jdbcType="VARCHAR" />
  28 + </resultMap>
  29 + <sql id="Base_Column_List" >
  30 + uuid, awba, awbh, customCode, goodsName, acTime, carrier, flightNo, flightDate, originStation,
  31 + destinationStation, piece, weight, splitCode, status, offLoad, offLoadUuid, isDelete,
  32 + customType, ext2, ext3, ext4, ext5
  33 + </sql>
  34 + <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.String" >
  35 + select
  36 + <include refid="Base_Column_List" />
  37 + from CUSTOM_MT2201
  38 + where uuid = #{uuid,jdbcType=VARCHAR}
  39 + </select>
  40 + <delete id="deleteByPrimaryKey" parameterType="java.lang.String" >
  41 + delete from CUSTOM_MT2201
  42 + where uuid = #{uuid,jdbcType=VARCHAR}
  43 + </delete>
  44 + <insert id="insert" parameterType="com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT2201" >
  45 + insert into CUSTOM_MT2201 (uuid, awba, awbh,
  46 + customCode, goodsName, acTime,
  47 + carrier, flightNo, flightDate,
  48 + originStation, destinationStation, piece,
  49 + weight, splitCode, status,
  50 + offLoad, offLoadUuid, isDelete,
  51 + customType, ext2, ext3,
  52 + ext4, ext5)
  53 + values (#{uuid,jdbcType=VARCHAR}, #{awba,jdbcType=VARCHAR}, #{awbh,jdbcType=VARCHAR},
  54 + #{customcode,jdbcType=VARCHAR}, #{goodsname,jdbcType=VARCHAR}, #{actime,jdbcType=TIMESTAMP},
  55 + #{carrier,jdbcType=VARCHAR}, #{flightno,jdbcType=VARCHAR}, #{flightdate,jdbcType=DATE},
  56 + #{originstation,jdbcType=VARCHAR}, #{destinationstation,jdbcType=VARCHAR}, #{piece,jdbcType=INTEGER},
  57 + #{weight,jdbcType=DECIMAL}, #{splitcode,jdbcType=VARCHAR}, #{status,jdbcType=VARCHAR},
  58 + #{offload,jdbcType=VARCHAR}, #{offloaduuid,jdbcType=VARCHAR}, #{isdelete,jdbcType=BIT},
  59 + #{customtype,jdbcType=VARCHAR}, #{ext2,jdbcType=VARCHAR}, #{ext3,jdbcType=VARCHAR},
  60 + #{ext4,jdbcType=VARCHAR}, #{ext5,jdbcType=VARCHAR})
  61 + </insert>
  62 + <insert id="insertSelective" parameterType="com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT2201" >
  63 + insert into CUSTOM_MT2201
  64 + <trim prefix="(" suffix=")" suffixOverrides="," >
  65 + <if test="uuid != null" >
  66 + uuid,
  67 + </if>
  68 + <if test="awba != null" >
  69 + awba,
  70 + </if>
  71 + <if test="awbh != null" >
  72 + awbh,
  73 + </if>
  74 + <if test="customcode != null" >
  75 + customCode,
  76 + </if>
  77 + <if test="goodsname != null" >
  78 + goodsName,
  79 + </if>
  80 + <if test="actime != null" >
  81 + acTime,
  82 + </if>
  83 + <if test="carrier != null" >
  84 + carrier,
  85 + </if>
  86 + <if test="flightno != null" >
  87 + flightNo,
  88 + </if>
  89 + <if test="flightdate != null" >
  90 + flightDate,
  91 + </if>
  92 + <if test="originstation != null" >
  93 + originStation,
  94 + </if>
  95 + <if test="destinationstation != null" >
  96 + destinationStation,
  97 + </if>
  98 + <if test="piece != null" >
  99 + piece,
  100 + </if>
  101 + <if test="weight != null" >
  102 + weight,
  103 + </if>
  104 + <if test="splitcode != null" >
  105 + splitCode,
  106 + </if>
  107 + <if test="status != null" >
  108 + status,
  109 + </if>
  110 + <if test="offload != null" >
  111 + offLoad,
  112 + </if>
  113 + <if test="offloaduuid != null" >
  114 + offLoadUuid,
  115 + </if>
  116 + <if test="isdelete != null" >
  117 + isDelete,
  118 + </if>
  119 + <if test="customtype != null" >
  120 + customType,
  121 + </if>
  122 + <if test="ext2 != null" >
  123 + ext2,
  124 + </if>
  125 + <if test="ext3 != null" >
  126 + ext3,
  127 + </if>
  128 + <if test="ext4 != null" >
  129 + ext4,
  130 + </if>
  131 + <if test="ext5 != null" >
  132 + ext5,
  133 + </if>
  134 + </trim>
  135 + <trim prefix="values (" suffix=")" suffixOverrides="," >
  136 + <if test="uuid != null" >
  137 + #{uuid,jdbcType=VARCHAR},
  138 + </if>
  139 + <if test="awba != null" >
  140 + #{awba,jdbcType=VARCHAR},
  141 + </if>
  142 + <if test="awbh != null" >
  143 + #{awbh,jdbcType=VARCHAR},
  144 + </if>
  145 + <if test="customcode != null" >
  146 + #{customcode,jdbcType=VARCHAR},
  147 + </if>
  148 + <if test="goodsname != null" >
  149 + #{goodsname,jdbcType=VARCHAR},
  150 + </if>
  151 + <if test="actime != null" >
  152 + #{actime,jdbcType=TIMESTAMP},
  153 + </if>
  154 + <if test="carrier != null" >
  155 + #{carrier,jdbcType=VARCHAR},
  156 + </if>
  157 + <if test="flightno != null" >
  158 + #{flightno,jdbcType=VARCHAR},
  159 + </if>
  160 + <if test="flightdate != null" >
  161 + #{flightdate,jdbcType=DATE},
  162 + </if>
  163 + <if test="originstation != null" >
  164 + #{originstation,jdbcType=VARCHAR},
  165 + </if>
  166 + <if test="destinationstation != null" >
  167 + #{destinationstation,jdbcType=VARCHAR},
  168 + </if>
  169 + <if test="piece != null" >
  170 + #{piece,jdbcType=INTEGER},
  171 + </if>
  172 + <if test="weight != null" >
  173 + #{weight,jdbcType=DECIMAL},
  174 + </if>
  175 + <if test="splitcode != null" >
  176 + #{splitcode,jdbcType=VARCHAR},
  177 + </if>
  178 + <if test="status != null" >
  179 + #{status,jdbcType=VARCHAR},
  180 + </if>
  181 + <if test="offload != null" >
  182 + #{offload,jdbcType=VARCHAR},
  183 + </if>
  184 + <if test="offloaduuid != null" >
  185 + #{offloaduuid,jdbcType=VARCHAR},
  186 + </if>
  187 + <if test="isdelete != null" >
  188 + #{isdelete,jdbcType=BIT},
  189 + </if>
  190 + <if test="customtype != null" >
  191 + #{customtype,jdbcType=VARCHAR},
  192 + </if>
  193 + <if test="ext2 != null" >
  194 + #{ext2,jdbcType=VARCHAR},
  195 + </if>
  196 + <if test="ext3 != null" >
  197 + #{ext3,jdbcType=VARCHAR},
  198 + </if>
  199 + <if test="ext4 != null" >
  200 + #{ext4,jdbcType=VARCHAR},
  201 + </if>
  202 + <if test="ext5 != null" >
  203 + #{ext5,jdbcType=VARCHAR},
  204 + </if>
  205 + </trim>
  206 + </insert>
  207 + <update id="updateByPrimaryKeySelective" parameterType="com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT2201" >
  208 + update CUSTOM_MT2201
  209 + <set >
  210 + <if test="awba != null" >
  211 + awba = #{awba,jdbcType=VARCHAR},
  212 + </if>
  213 + <if test="awbh != null" >
  214 + awbh = #{awbh,jdbcType=VARCHAR},
  215 + </if>
  216 + <if test="customcode != null" >
  217 + customCode = #{customcode,jdbcType=VARCHAR},
  218 + </if>
  219 + <if test="goodsname != null" >
  220 + goodsName = #{goodsname,jdbcType=VARCHAR},
  221 + </if>
  222 + <if test="actime != null" >
  223 + acTime = #{actime,jdbcType=TIMESTAMP},
  224 + </if>
  225 + <if test="carrier != null" >
  226 + carrier = #{carrier,jdbcType=VARCHAR},
  227 + </if>
  228 + <if test="flightno != null" >
  229 + flightNo = #{flightno,jdbcType=VARCHAR},
  230 + </if>
  231 + <if test="flightdate != null" >
  232 + flightDate = #{flightdate,jdbcType=DATE},
  233 + </if>
  234 + <if test="originstation != null" >
  235 + originStation = #{originstation,jdbcType=VARCHAR},
  236 + </if>
  237 + <if test="destinationstation != null" >
  238 + destinationStation = #{destinationstation,jdbcType=VARCHAR},
  239 + </if>
  240 + <if test="piece != null" >
  241 + piece = #{piece,jdbcType=INTEGER},
  242 + </if>
  243 + <if test="weight != null" >
  244 + weight = #{weight,jdbcType=DECIMAL},
  245 + </if>
  246 + <if test="splitcode != null" >
  247 + splitCode = #{splitcode,jdbcType=VARCHAR},
  248 + </if>
  249 + <if test="status != null" >
  250 + status = #{status,jdbcType=VARCHAR},
  251 + </if>
  252 + <if test="offload != null" >
  253 + offLoad = #{offload,jdbcType=VARCHAR},
  254 + </if>
  255 + <if test="offloaduuid != null" >
  256 + offLoadUuid = #{offloaduuid,jdbcType=VARCHAR},
  257 + </if>
  258 + <if test="isdelete != null" >
  259 + isDelete = #{isdelete,jdbcType=BIT},
  260 + </if>
  261 + <if test="customtype != null" >
  262 + customType = #{customtype,jdbcType=VARCHAR},
  263 + </if>
  264 + <if test="ext2 != null" >
  265 + ext2 = #{ext2,jdbcType=VARCHAR},
  266 + </if>
  267 + <if test="ext3 != null" >
  268 + ext3 = #{ext3,jdbcType=VARCHAR},
  269 + </if>
  270 + <if test="ext4 != null" >
  271 + ext4 = #{ext4,jdbcType=VARCHAR},
  272 + </if>
  273 + <if test="ext5 != null" >
  274 + ext5 = #{ext5,jdbcType=VARCHAR},
  275 + </if>
  276 + </set>
  277 + where uuid = #{uuid,jdbcType=VARCHAR}
  278 + </update>
  279 + <update id="updateByPrimaryKey" parameterType="com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT2201" >
  280 + update CUSTOM_MT2201
  281 + set awba = #{awba,jdbcType=VARCHAR},
  282 + awbh = #{awbh,jdbcType=VARCHAR},
  283 + customCode = #{customcode,jdbcType=VARCHAR},
  284 + goodsName = #{goodsname,jdbcType=VARCHAR},
  285 + acTime = #{actime,jdbcType=TIMESTAMP},
  286 + carrier = #{carrier,jdbcType=VARCHAR},
  287 + flightNo = #{flightno,jdbcType=VARCHAR},
  288 + flightDate = #{flightdate,jdbcType=DATE},
  289 + originStation = #{originstation,jdbcType=VARCHAR},
  290 + destinationStation = #{destinationstation,jdbcType=VARCHAR},
  291 + piece = #{piece,jdbcType=INTEGER},
  292 + weight = #{weight,jdbcType=DECIMAL},
  293 + splitCode = #{splitcode,jdbcType=VARCHAR},
  294 + status = #{status,jdbcType=VARCHAR},
  295 + offLoad = #{offload,jdbcType=VARCHAR},
  296 + offLoadUuid = #{offloaduuid,jdbcType=VARCHAR},
  297 + isDelete = #{isdelete,jdbcType=BIT},
  298 + customType = #{customtype,jdbcType=VARCHAR},
  299 + ext2 = #{ext2,jdbcType=VARCHAR},
  300 + ext3 = #{ext3,jdbcType=VARCHAR},
  301 + ext4 = #{ext4,jdbcType=VARCHAR},
  302 + ext5 = #{ext5,jdbcType=VARCHAR}
  303 + where uuid = #{uuid,jdbcType=VARCHAR}
  304 + </update>
  305 +</mapper>
  1 +<?xml version="1.0" encoding="UTF-8" ?>
  2 +<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
  3 +<mapper namespace="com.sunyo.wlpt.base.dao.NMMS_CUSTOM_MT3201Mapper" >
  4 + <resultMap id="BaseResultMap" type="com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT3201" >
  5 + <id column="uuid" property="uuid" jdbcType="VARCHAR" />
  6 + <result column="awba" property="awba" jdbcType="VARCHAR" />
  7 + <result column="awbh" property="awbh" jdbcType="VARCHAR" />
  8 + <result column="carrier" property="carrier" jdbcType="VARCHAR" />
  9 + <result column="flightNo" property="flightno" jdbcType="VARCHAR" />
  10 + <result column="flightDate" property="flightdate" jdbcType="DATE" />
  11 + <result column="originStation" property="originstation" jdbcType="VARCHAR" />
  12 + <result column="destinationStation" property="destinationstation" jdbcType="VARCHAR" />
  13 + <result column="piece" property="piece" jdbcType="INTEGER" />
  14 + <result column="weight" property="weight" jdbcType="DECIMAL" />
  15 + <result column="arriveTime" property="arrivetime" jdbcType="TIMESTAMP" />
  16 + <result column="customCode" property="customcode" jdbcType="VARCHAR" />
  17 + <result column="goodsName" property="goodsname" jdbcType="VARCHAR" />
  18 + <result column="acTime" property="actime" jdbcType="TIMESTAMP" />
  19 + <result column="status" property="status" jdbcType="VARCHAR" />
  20 + <result column="isDelete" property="isdelete" jdbcType="BIT" />
  21 + <result column="ext1" property="ext1" jdbcType="VARCHAR" />
  22 + <result column="ext2" property="ext2" jdbcType="VARCHAR" />
  23 + <result column="ext3" property="ext3" jdbcType="VARCHAR" />
  24 + <result column="ext4" property="ext4" jdbcType="VARCHAR" />
  25 + <result column="ext5" property="ext5" jdbcType="VARCHAR" />
  26 + </resultMap>
  27 + <sql id="Base_Column_List" >
  28 + uuid, awba, awbh, carrier, flightNo, flightDate, originStation, destinationStation,
  29 + piece, weight, arriveTime, customCode, goodsName, acTime, status, isDelete, ext1,
  30 + ext2, ext3, ext4, ext5
  31 + </sql>
  32 + <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.String" >
  33 + select
  34 + <include refid="Base_Column_List" />
  35 + from CUSTOM_MT3201
  36 + where uuid = #{uuid,jdbcType=VARCHAR}
  37 + </select>
  38 + <delete id="deleteByPrimaryKey" parameterType="java.lang.String" >
  39 + delete from CUSTOM_MT3201
  40 + where uuid = #{uuid,jdbcType=VARCHAR}
  41 + </delete>
  42 + <insert id="insert" parameterType="com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT3201" >
  43 + insert into CUSTOM_MT3201 (uuid, awba, awbh,
  44 + carrier, flightNo, flightDate,
  45 + originStation, destinationStation, piece,
  46 + weight, arriveTime, customCode,
  47 + goodsName, acTime, status,
  48 + isDelete, ext1, ext2, ext3,
  49 + ext4, ext5)
  50 + values (#{uuid,jdbcType=VARCHAR}, #{awba,jdbcType=VARCHAR}, #{awbh,jdbcType=VARCHAR},
  51 + #{carrier,jdbcType=VARCHAR}, #{flightno,jdbcType=VARCHAR}, #{flightdate,jdbcType=DATE},
  52 + #{originstation,jdbcType=VARCHAR}, #{destinationstation,jdbcType=VARCHAR}, #{piece,jdbcType=INTEGER},
  53 + #{weight,jdbcType=DECIMAL}, #{arrivetime,jdbcType=TIMESTAMP}, #{customcode,jdbcType=VARCHAR},
  54 + #{goodsname,jdbcType=VARCHAR}, #{actime,jdbcType=TIMESTAMP}, #{status,jdbcType=VARCHAR},
  55 + #{isdelete,jdbcType=BIT}, #{ext1,jdbcType=VARCHAR}, #{ext2,jdbcType=VARCHAR}, #{ext3,jdbcType=VARCHAR},
  56 + #{ext4,jdbcType=VARCHAR}, #{ext5,jdbcType=VARCHAR})
  57 + </insert>
  58 + <insert id="insertSelective" parameterType="com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT3201" >
  59 + insert into CUSTOM_MT3201
  60 + <trim prefix="(" suffix=")" suffixOverrides="," >
  61 + <if test="uuid != null" >
  62 + uuid,
  63 + </if>
  64 + <if test="awba != null" >
  65 + awba,
  66 + </if>
  67 + <if test="awbh != null" >
  68 + awbh,
  69 + </if>
  70 + <if test="carrier != null" >
  71 + carrier,
  72 + </if>
  73 + <if test="flightno != null" >
  74 + flightNo,
  75 + </if>
  76 + <if test="flightdate != null" >
  77 + flightDate,
  78 + </if>
  79 + <if test="originstation != null" >
  80 + originStation,
  81 + </if>
  82 + <if test="destinationstation != null" >
  83 + destinationStation,
  84 + </if>
  85 + <if test="piece != null" >
  86 + piece,
  87 + </if>
  88 + <if test="weight != null" >
  89 + weight,
  90 + </if>
  91 + <if test="arrivetime != null" >
  92 + arriveTime,
  93 + </if>
  94 + <if test="customcode != null" >
  95 + customCode,
  96 + </if>
  97 + <if test="goodsname != null" >
  98 + goodsName,
  99 + </if>
  100 + <if test="actime != null" >
  101 + acTime,
  102 + </if>
  103 + <if test="status != null" >
  104 + status,
  105 + </if>
  106 + <if test="isdelete != null" >
  107 + isDelete,
  108 + </if>
  109 + <if test="ext1 != null" >
  110 + ext1,
  111 + </if>
  112 + <if test="ext2 != null" >
  113 + ext2,
  114 + </if>
  115 + <if test="ext3 != null" >
  116 + ext3,
  117 + </if>
  118 + <if test="ext4 != null" >
  119 + ext4,
  120 + </if>
  121 + <if test="ext5 != null" >
  122 + ext5,
  123 + </if>
  124 + </trim>
  125 + <trim prefix="values (" suffix=")" suffixOverrides="," >
  126 + <if test="uuid != null" >
  127 + #{uuid,jdbcType=VARCHAR},
  128 + </if>
  129 + <if test="awba != null" >
  130 + #{awba,jdbcType=VARCHAR},
  131 + </if>
  132 + <if test="awbh != null" >
  133 + #{awbh,jdbcType=VARCHAR},
  134 + </if>
  135 + <if test="carrier != null" >
  136 + #{carrier,jdbcType=VARCHAR},
  137 + </if>
  138 + <if test="flightno != null" >
  139 + #{flightno,jdbcType=VARCHAR},
  140 + </if>
  141 + <if test="flightdate != null" >
  142 + #{flightdate,jdbcType=DATE},
  143 + </if>
  144 + <if test="originstation != null" >
  145 + #{originstation,jdbcType=VARCHAR},
  146 + </if>
  147 + <if test="destinationstation != null" >
  148 + #{destinationstation,jdbcType=VARCHAR},
  149 + </if>
  150 + <if test="piece != null" >
  151 + #{piece,jdbcType=INTEGER},
  152 + </if>
  153 + <if test="weight != null" >
  154 + #{weight,jdbcType=DECIMAL},
  155 + </if>
  156 + <if test="arrivetime != null" >
  157 + #{arrivetime,jdbcType=TIMESTAMP},
  158 + </if>
  159 + <if test="customcode != null" >
  160 + #{customcode,jdbcType=VARCHAR},
  161 + </if>
  162 + <if test="goodsname != null" >
  163 + #{goodsname,jdbcType=VARCHAR},
  164 + </if>
  165 + <if test="actime != null" >
  166 + #{actime,jdbcType=TIMESTAMP},
  167 + </if>
  168 + <if test="status != null" >
  169 + #{status,jdbcType=VARCHAR},
  170 + </if>
  171 + <if test="isdelete != null" >
  172 + #{isdelete,jdbcType=BIT},
  173 + </if>
  174 + <if test="ext1 != null" >
  175 + #{ext1,jdbcType=VARCHAR},
  176 + </if>
  177 + <if test="ext2 != null" >
  178 + #{ext2,jdbcType=VARCHAR},
  179 + </if>
  180 + <if test="ext3 != null" >
  181 + #{ext3,jdbcType=VARCHAR},
  182 + </if>
  183 + <if test="ext4 != null" >
  184 + #{ext4,jdbcType=VARCHAR},
  185 + </if>
  186 + <if test="ext5 != null" >
  187 + #{ext5,jdbcType=VARCHAR},
  188 + </if>
  189 + </trim>
  190 + </insert>
  191 + <update id="updateByPrimaryKeySelective" parameterType="com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT3201" >
  192 + update CUSTOM_MT3201
  193 + <set >
  194 + <if test="awba != null" >
  195 + awba = #{awba,jdbcType=VARCHAR},
  196 + </if>
  197 + <if test="awbh != null" >
  198 + awbh = #{awbh,jdbcType=VARCHAR},
  199 + </if>
  200 + <if test="carrier != null" >
  201 + carrier = #{carrier,jdbcType=VARCHAR},
  202 + </if>
  203 + <if test="flightno != null" >
  204 + flightNo = #{flightno,jdbcType=VARCHAR},
  205 + </if>
  206 + <if test="flightdate != null" >
  207 + flightDate = #{flightdate,jdbcType=DATE},
  208 + </if>
  209 + <if test="originstation != null" >
  210 + originStation = #{originstation,jdbcType=VARCHAR},
  211 + </if>
  212 + <if test="destinationstation != null" >
  213 + destinationStation = #{destinationstation,jdbcType=VARCHAR},
  214 + </if>
  215 + <if test="piece != null" >
  216 + piece = #{piece,jdbcType=INTEGER},
  217 + </if>
  218 + <if test="weight != null" >
  219 + weight = #{weight,jdbcType=DECIMAL},
  220 + </if>
  221 + <if test="arrivetime != null" >
  222 + arriveTime = #{arrivetime,jdbcType=TIMESTAMP},
  223 + </if>
  224 + <if test="customcode != null" >
  225 + customCode = #{customcode,jdbcType=VARCHAR},
  226 + </if>
  227 + <if test="goodsname != null" >
  228 + goodsName = #{goodsname,jdbcType=VARCHAR},
  229 + </if>
  230 + <if test="actime != null" >
  231 + acTime = #{actime,jdbcType=TIMESTAMP},
  232 + </if>
  233 + <if test="status != null" >
  234 + status = #{status,jdbcType=VARCHAR},
  235 + </if>
  236 + <if test="isdelete != null" >
  237 + isDelete = #{isdelete,jdbcType=BIT},
  238 + </if>
  239 + <if test="ext1 != null" >
  240 + ext1 = #{ext1,jdbcType=VARCHAR},
  241 + </if>
  242 + <if test="ext2 != null" >
  243 + ext2 = #{ext2,jdbcType=VARCHAR},
  244 + </if>
  245 + <if test="ext3 != null" >
  246 + ext3 = #{ext3,jdbcType=VARCHAR},
  247 + </if>
  248 + <if test="ext4 != null" >
  249 + ext4 = #{ext4,jdbcType=VARCHAR},
  250 + </if>
  251 + <if test="ext5 != null" >
  252 + ext5 = #{ext5,jdbcType=VARCHAR},
  253 + </if>
  254 + </set>
  255 + where uuid = #{uuid,jdbcType=VARCHAR}
  256 + </update>
  257 + <update id="updateByPrimaryKey" parameterType="com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT3201" >
  258 + update CUSTOM_MT3201
  259 + set awba = #{awba,jdbcType=VARCHAR},
  260 + awbh = #{awbh,jdbcType=VARCHAR},
  261 + carrier = #{carrier,jdbcType=VARCHAR},
  262 + flightNo = #{flightno,jdbcType=VARCHAR},
  263 + flightDate = #{flightdate,jdbcType=DATE},
  264 + originStation = #{originstation,jdbcType=VARCHAR},
  265 + destinationStation = #{destinationstation,jdbcType=VARCHAR},
  266 + piece = #{piece,jdbcType=INTEGER},
  267 + weight = #{weight,jdbcType=DECIMAL},
  268 + arriveTime = #{arrivetime,jdbcType=TIMESTAMP},
  269 + customCode = #{customcode,jdbcType=VARCHAR},
  270 + goodsName = #{goodsname,jdbcType=VARCHAR},
  271 + acTime = #{actime,jdbcType=TIMESTAMP},
  272 + status = #{status,jdbcType=VARCHAR},
  273 + isDelete = #{isdelete,jdbcType=BIT},
  274 + ext1 = #{ext1,jdbcType=VARCHAR},
  275 + ext2 = #{ext2,jdbcType=VARCHAR},
  276 + ext3 = #{ext3,jdbcType=VARCHAR},
  277 + ext4 = #{ext4,jdbcType=VARCHAR},
  278 + ext5 = #{ext5,jdbcType=VARCHAR}
  279 + where uuid = #{uuid,jdbcType=VARCHAR}
  280 + </update>
  281 +</mapper>
  1 +<?xml version="1.0" encoding="UTF-8" ?>
  2 +<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
  3 +<mapper namespace="com.sunyo.wlpt.base.dao.NMMS_CUSTOM_MT4201Mapper" >
  4 + <resultMap id="BaseResultMap" type="com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT4201" >
  5 + <id column="uuid" property="uuid" jdbcType="VARCHAR" />
  6 + <result column="carrier" property="carrier" jdbcType="VARCHAR" />
  7 + <result column="flightNo" property="flightno" jdbcType="VARCHAR" />
  8 + <result column="flightDate" property="flightdate" jdbcType="DATE" />
  9 + <result column="originStation" property="originstation" jdbcType="VARCHAR" />
  10 + <result column="destinationStation" property="destinationstation" jdbcType="VARCHAR" />
  11 + <result column="awba" property="awba" jdbcType="VARCHAR" />
  12 + <result column="awbh" property="awbh" jdbcType="VARCHAR" />
  13 + <result column="lodingPiece" property="lodingpiece" jdbcType="INTEGER" />
  14 + <result column="lodingWeight" property="lodingweight" jdbcType="DECIMAL" />
  15 + <result column="customCode" property="customcode" jdbcType="VARCHAR" />
  16 + <result column="goodsName" property="goodsname" jdbcType="VARCHAR" />
  17 + <result column="acTime" property="actime" jdbcType="TIMESTAMP" />
  18 + <result column="loadingTime" property="loadingtime" jdbcType="TIMESTAMP" />
  19 + <result column="specialGoods" property="specialgoods" jdbcType="VARCHAR" />
  20 + <result column="status" property="status" jdbcType="VARCHAR" />
  21 + <result column="isDelete" property="isdelete" jdbcType="BIT" />
  22 + <result column="ext1" property="ext1" jdbcType="VARCHAR" />
  23 + <result column="ext2" property="ext2" jdbcType="VARCHAR" />
  24 + <result column="ext3" property="ext3" jdbcType="VARCHAR" />
  25 + <result column="ext4" property="ext4" jdbcType="VARCHAR" />
  26 + <result column="ext5" property="ext5" jdbcType="VARCHAR" />
  27 + </resultMap>
  28 + <sql id="Base_Column_List" >
  29 + uuid, carrier, flightNo, flightDate, originStation, destinationStation, awba, awbh,
  30 + lodingPiece, lodingWeight, customCode, goodsName, acTime, loadingTime, specialGoods,
  31 + status, isDelete, ext1, ext2, ext3, ext4, ext5
  32 + </sql>
  33 + <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.String" >
  34 + select
  35 + <include refid="Base_Column_List" />
  36 + from CUSTOM_MT4201
  37 + where uuid = #{uuid,jdbcType=VARCHAR}
  38 + </select>
  39 + <delete id="deleteByPrimaryKey" parameterType="java.lang.String" >
  40 + delete from CUSTOM_MT4201
  41 + where uuid = #{uuid,jdbcType=VARCHAR}
  42 + </delete>
  43 + <insert id="insert" parameterType="com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT4201" >
  44 + insert into CUSTOM_MT4201 (uuid, carrier, flightNo,
  45 + flightDate, originStation, destinationStation,
  46 + awba, awbh, lodingPiece,
  47 + lodingWeight, customCode, goodsName,
  48 + acTime, loadingTime, specialGoods,
  49 + status, isDelete, ext1,
  50 + ext2, ext3, ext4, ext5
  51 + )
  52 + values (#{uuid,jdbcType=VARCHAR}, #{carrier,jdbcType=VARCHAR}, #{flightno,jdbcType=VARCHAR},
  53 + #{flightdate,jdbcType=DATE}, #{originstation,jdbcType=VARCHAR}, #{destinationstation,jdbcType=VARCHAR},
  54 + #{awba,jdbcType=VARCHAR}, #{awbh,jdbcType=VARCHAR}, #{lodingpiece,jdbcType=INTEGER},
  55 + #{lodingweight,jdbcType=DECIMAL}, #{customcode,jdbcType=VARCHAR}, #{goodsname,jdbcType=VARCHAR},
  56 + #{actime,jdbcType=TIMESTAMP}, #{loadingtime,jdbcType=TIMESTAMP}, #{specialgoods,jdbcType=VARCHAR},
  57 + #{status,jdbcType=VARCHAR}, #{isdelete,jdbcType=BIT}, #{ext1,jdbcType=VARCHAR},
  58 + #{ext2,jdbcType=VARCHAR}, #{ext3,jdbcType=VARCHAR}, #{ext4,jdbcType=VARCHAR}, #{ext5,jdbcType=VARCHAR}
  59 + )
  60 + </insert>
  61 + <insert id="insertSelective" parameterType="com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT4201" >
  62 + insert into CUSTOM_MT4201
  63 + <trim prefix="(" suffix=")" suffixOverrides="," >
  64 + <if test="uuid != null" >
  65 + uuid,
  66 + </if>
  67 + <if test="carrier != null" >
  68 + carrier,
  69 + </if>
  70 + <if test="flightno != null" >
  71 + flightNo,
  72 + </if>
  73 + <if test="flightdate != null" >
  74 + flightDate,
  75 + </if>
  76 + <if test="originstation != null" >
  77 + originStation,
  78 + </if>
  79 + <if test="destinationstation != null" >
  80 + destinationStation,
  81 + </if>
  82 + <if test="awba != null" >
  83 + awba,
  84 + </if>
  85 + <if test="awbh != null" >
  86 + awbh,
  87 + </if>
  88 + <if test="lodingpiece != null" >
  89 + lodingPiece,
  90 + </if>
  91 + <if test="lodingweight != null" >
  92 + lodingWeight,
  93 + </if>
  94 + <if test="customcode != null" >
  95 + customCode,
  96 + </if>
  97 + <if test="goodsname != null" >
  98 + goodsName,
  99 + </if>
  100 + <if test="actime != null" >
  101 + acTime,
  102 + </if>
  103 + <if test="loadingtime != null" >
  104 + loadingTime,
  105 + </if>
  106 + <if test="specialgoods != null" >
  107 + specialGoods,
  108 + </if>
  109 + <if test="status != null" >
  110 + status,
  111 + </if>
  112 + <if test="isdelete != null" >
  113 + isDelete,
  114 + </if>
  115 + <if test="ext1 != null" >
  116 + ext1,
  117 + </if>
  118 + <if test="ext2 != null" >
  119 + ext2,
  120 + </if>
  121 + <if test="ext3 != null" >
  122 + ext3,
  123 + </if>
  124 + <if test="ext4 != null" >
  125 + ext4,
  126 + </if>
  127 + <if test="ext5 != null" >
  128 + ext5,
  129 + </if>
  130 + </trim>
  131 + <trim prefix="values (" suffix=")" suffixOverrides="," >
  132 + <if test="uuid != null" >
  133 + #{uuid,jdbcType=VARCHAR},
  134 + </if>
  135 + <if test="carrier != null" >
  136 + #{carrier,jdbcType=VARCHAR},
  137 + </if>
  138 + <if test="flightno != null" >
  139 + #{flightno,jdbcType=VARCHAR},
  140 + </if>
  141 + <if test="flightdate != null" >
  142 + #{flightdate,jdbcType=DATE},
  143 + </if>
  144 + <if test="originstation != null" >
  145 + #{originstation,jdbcType=VARCHAR},
  146 + </if>
  147 + <if test="destinationstation != null" >
  148 + #{destinationstation,jdbcType=VARCHAR},
  149 + </if>
  150 + <if test="awba != null" >
  151 + #{awba,jdbcType=VARCHAR},
  152 + </if>
  153 + <if test="awbh != null" >
  154 + #{awbh,jdbcType=VARCHAR},
  155 + </if>
  156 + <if test="lodingpiece != null" >
  157 + #{lodingpiece,jdbcType=INTEGER},
  158 + </if>
  159 + <if test="lodingweight != null" >
  160 + #{lodingweight,jdbcType=DECIMAL},
  161 + </if>
  162 + <if test="customcode != null" >
  163 + #{customcode,jdbcType=VARCHAR},
  164 + </if>
  165 + <if test="goodsname != null" >
  166 + #{goodsname,jdbcType=VARCHAR},
  167 + </if>
  168 + <if test="actime != null" >
  169 + #{actime,jdbcType=TIMESTAMP},
  170 + </if>
  171 + <if test="loadingtime != null" >
  172 + #{loadingtime,jdbcType=TIMESTAMP},
  173 + </if>
  174 + <if test="specialgoods != null" >
  175 + #{specialgoods,jdbcType=VARCHAR},
  176 + </if>
  177 + <if test="status != null" >
  178 + #{status,jdbcType=VARCHAR},
  179 + </if>
  180 + <if test="isdelete != null" >
  181 + #{isdelete,jdbcType=BIT},
  182 + </if>
  183 + <if test="ext1 != null" >
  184 + #{ext1,jdbcType=VARCHAR},
  185 + </if>
  186 + <if test="ext2 != null" >
  187 + #{ext2,jdbcType=VARCHAR},
  188 + </if>
  189 + <if test="ext3 != null" >
  190 + #{ext3,jdbcType=VARCHAR},
  191 + </if>
  192 + <if test="ext4 != null" >
  193 + #{ext4,jdbcType=VARCHAR},
  194 + </if>
  195 + <if test="ext5 != null" >
  196 + #{ext5,jdbcType=VARCHAR},
  197 + </if>
  198 + </trim>
  199 + </insert>
  200 + <update id="updateByPrimaryKeySelective" parameterType="com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT4201" >
  201 + update CUSTOM_MT4201
  202 + <set >
  203 + <if test="carrier != null" >
  204 + carrier = #{carrier,jdbcType=VARCHAR},
  205 + </if>
  206 + <if test="flightno != null" >
  207 + flightNo = #{flightno,jdbcType=VARCHAR},
  208 + </if>
  209 + <if test="flightdate != null" >
  210 + flightDate = #{flightdate,jdbcType=DATE},
  211 + </if>
  212 + <if test="originstation != null" >
  213 + originStation = #{originstation,jdbcType=VARCHAR},
  214 + </if>
  215 + <if test="destinationstation != null" >
  216 + destinationStation = #{destinationstation,jdbcType=VARCHAR},
  217 + </if>
  218 + <if test="awba != null" >
  219 + awba = #{awba,jdbcType=VARCHAR},
  220 + </if>
  221 + <if test="awbh != null" >
  222 + awbh = #{awbh,jdbcType=VARCHAR},
  223 + </if>
  224 + <if test="lodingpiece != null" >
  225 + lodingPiece = #{lodingpiece,jdbcType=INTEGER},
  226 + </if>
  227 + <if test="lodingweight != null" >
  228 + lodingWeight = #{lodingweight,jdbcType=DECIMAL},
  229 + </if>
  230 + <if test="customcode != null" >
  231 + customCode = #{customcode,jdbcType=VARCHAR},
  232 + </if>
  233 + <if test="goodsname != null" >
  234 + goodsName = #{goodsname,jdbcType=VARCHAR},
  235 + </if>
  236 + <if test="actime != null" >
  237 + acTime = #{actime,jdbcType=TIMESTAMP},
  238 + </if>
  239 + <if test="loadingtime != null" >
  240 + loadingTime = #{loadingtime,jdbcType=TIMESTAMP},
  241 + </if>
  242 + <if test="specialgoods != null" >
  243 + specialGoods = #{specialgoods,jdbcType=VARCHAR},
  244 + </if>
  245 + <if test="status != null" >
  246 + status = #{status,jdbcType=VARCHAR},
  247 + </if>
  248 + <if test="isdelete != null" >
  249 + isDelete = #{isdelete,jdbcType=BIT},
  250 + </if>
  251 + <if test="ext1 != null" >
  252 + ext1 = #{ext1,jdbcType=VARCHAR},
  253 + </if>
  254 + <if test="ext2 != null" >
  255 + ext2 = #{ext2,jdbcType=VARCHAR},
  256 + </if>
  257 + <if test="ext3 != null" >
  258 + ext3 = #{ext3,jdbcType=VARCHAR},
  259 + </if>
  260 + <if test="ext4 != null" >
  261 + ext4 = #{ext4,jdbcType=VARCHAR},
  262 + </if>
  263 + <if test="ext5 != null" >
  264 + ext5 = #{ext5,jdbcType=VARCHAR},
  265 + </if>
  266 + </set>
  267 + where uuid = #{uuid,jdbcType=VARCHAR}
  268 + </update>
  269 + <update id="updateByPrimaryKey" parameterType="com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT4201" >
  270 + update CUSTOM_MT4201
  271 + set carrier = #{carrier,jdbcType=VARCHAR},
  272 + flightNo = #{flightno,jdbcType=VARCHAR},
  273 + flightDate = #{flightdate,jdbcType=DATE},
  274 + originStation = #{originstation,jdbcType=VARCHAR},
  275 + destinationStation = #{destinationstation,jdbcType=VARCHAR},
  276 + awba = #{awba,jdbcType=VARCHAR},
  277 + awbh = #{awbh,jdbcType=VARCHAR},
  278 + lodingPiece = #{lodingpiece,jdbcType=INTEGER},
  279 + lodingWeight = #{lodingweight,jdbcType=DECIMAL},
  280 + customCode = #{customcode,jdbcType=VARCHAR},
  281 + goodsName = #{goodsname,jdbcType=VARCHAR},
  282 + acTime = #{actime,jdbcType=TIMESTAMP},
  283 + loadingTime = #{loadingtime,jdbcType=TIMESTAMP},
  284 + specialGoods = #{specialgoods,jdbcType=VARCHAR},
  285 + status = #{status,jdbcType=VARCHAR},
  286 + isDelete = #{isdelete,jdbcType=BIT},
  287 + ext1 = #{ext1,jdbcType=VARCHAR},
  288 + ext2 = #{ext2,jdbcType=VARCHAR},
  289 + ext3 = #{ext3,jdbcType=VARCHAR},
  290 + ext4 = #{ext4,jdbcType=VARCHAR},
  291 + ext5 = #{ext5,jdbcType=VARCHAR}
  292 + where uuid = #{uuid,jdbcType=VARCHAR}
  293 + </update>
  294 +</mapper>
  1 +<?xml version="1.0" encoding="UTF-8" ?>
  2 +<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
  3 +<mapper namespace="com.sunyo.wlpt.base.dao.NMMS_CUSTOM_MT520XMapper" >
  4 + <resultMap id="BaseResultMap" type="com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT520X" >
  5 + <id column="uuid" property="uuid" jdbcType="VARCHAR" />
  6 + <result column="awba" property="awba" jdbcType="VARCHAR" />
  7 + <result column="awbh" property="awbh" jdbcType="VARCHAR" />
  8 + <result column="carrier" property="carrier" jdbcType="VARCHAR" />
  9 + <result column="flightNo" property="flightno" jdbcType="VARCHAR" />
  10 + <result column="flightDate" property="flightdate" jdbcType="DATE" />
  11 + <result column="originStation" property="originstation" jdbcType="VARCHAR" />
  12 + <result column="destinationStation" property="destinationstation" jdbcType="VARCHAR" />
  13 + <result column="piece" property="piece" jdbcType="INTEGER" />
  14 + <result column="weight" property="weight" jdbcType="DECIMAL" />
  15 + <result column="startTime" property="starttime" jdbcType="TIMESTAMP" />
  16 + <result column="endTime" property="endtime" jdbcType="TIMESTAMP" />
  17 + <result column="customCode" property="customcode" jdbcType="VARCHAR" />
  18 + <result column="goodsName" property="goodsname" jdbcType="VARCHAR" />
  19 + <result column="acTime" property="actime" jdbcType="TIMESTAMP" />
  20 + <result column="rcfdep" property="rcfdep" jdbcType="VARCHAR" />
  21 + <result column="status" property="status" jdbcType="VARCHAR" />
  22 + <result column="isDelete" property="isdelete" jdbcType="BIT" />
  23 + <result column="ext1" property="ext1" jdbcType="VARCHAR" />
  24 + <result column="ext2" property="ext2" jdbcType="VARCHAR" />
  25 + <result column="ext3" property="ext3" jdbcType="VARCHAR" />
  26 + <result column="ext4" property="ext4" jdbcType="VARCHAR" />
  27 + <result column="ext5" property="ext5" jdbcType="VARCHAR" />
  28 + </resultMap>
  29 + <sql id="Base_Column_List" >
  30 + uuid, awba, awbh, carrier, flightNo, flightDate, originStation, destinationStation,
  31 + piece, weight, startTime, endTime, customCode, goodsName, acTime, rcfdep, status,
  32 + isDelete, ext1, ext2, ext3, ext4, ext5
  33 + </sql>
  34 + <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.String" >
  35 + select
  36 + <include refid="Base_Column_List" />
  37 + from CUSTOM_MT520X
  38 + where uuid = #{uuid,jdbcType=VARCHAR}
  39 + </select>
  40 + <delete id="deleteByPrimaryKey" parameterType="java.lang.String" >
  41 + delete from CUSTOM_MT520X
  42 + where uuid = #{uuid,jdbcType=VARCHAR}
  43 + </delete>
  44 + <insert id="insert" parameterType="com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT520X" >
  45 + insert into CUSTOM_MT520X (uuid, awba, awbh,
  46 + carrier, flightNo, flightDate,
  47 + originStation, destinationStation, piece,
  48 + weight, startTime, endTime,
  49 + customCode, goodsName, acTime,
  50 + rcfdep, status, isDelete,
  51 + ext1, ext2, ext3, ext4,
  52 + ext5)
  53 + values (#{uuid,jdbcType=VARCHAR}, #{awba,jdbcType=VARCHAR}, #{awbh,jdbcType=VARCHAR},
  54 + #{carrier,jdbcType=VARCHAR}, #{flightno,jdbcType=VARCHAR}, #{flightdate,jdbcType=DATE},
  55 + #{originstation,jdbcType=VARCHAR}, #{destinationstation,jdbcType=VARCHAR}, #{piece,jdbcType=INTEGER},
  56 + #{weight,jdbcType=DECIMAL}, #{starttime,jdbcType=TIMESTAMP}, #{endtime,jdbcType=TIMESTAMP},
  57 + #{customcode,jdbcType=VARCHAR}, #{goodsname,jdbcType=VARCHAR}, #{actime,jdbcType=TIMESTAMP},
  58 + #{rcfdep,jdbcType=VARCHAR}, #{status,jdbcType=VARCHAR}, #{isdelete,jdbcType=BIT},
  59 + #{ext1,jdbcType=VARCHAR}, #{ext2,jdbcType=VARCHAR}, #{ext3,jdbcType=VARCHAR}, #{ext4,jdbcType=VARCHAR},
  60 + #{ext5,jdbcType=VARCHAR})
  61 + </insert>
  62 + <insert id="insertSelective" parameterType="com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT520X" >
  63 + insert into CUSTOM_MT520X
  64 + <trim prefix="(" suffix=")" suffixOverrides="," >
  65 + <if test="uuid != null" >
  66 + uuid,
  67 + </if>
  68 + <if test="awba != null" >
  69 + awba,
  70 + </if>
  71 + <if test="awbh != null" >
  72 + awbh,
  73 + </if>
  74 + <if test="carrier != null" >
  75 + carrier,
  76 + </if>
  77 + <if test="flightno != null" >
  78 + flightNo,
  79 + </if>
  80 + <if test="flightdate != null" >
  81 + flightDate,
  82 + </if>
  83 + <if test="originstation != null" >
  84 + originStation,
  85 + </if>
  86 + <if test="destinationstation != null" >
  87 + destinationStation,
  88 + </if>
  89 + <if test="piece != null" >
  90 + piece,
  91 + </if>
  92 + <if test="weight != null" >
  93 + weight,
  94 + </if>
  95 + <if test="starttime != null" >
  96 + startTime,
  97 + </if>
  98 + <if test="endtime != null" >
  99 + endTime,
  100 + </if>
  101 + <if test="customcode != null" >
  102 + customCode,
  103 + </if>
  104 + <if test="goodsname != null" >
  105 + goodsName,
  106 + </if>
  107 + <if test="actime != null" >
  108 + acTime,
  109 + </if>
  110 + <if test="rcfdep != null" >
  111 + rcfdep,
  112 + </if>
  113 + <if test="status != null" >
  114 + status,
  115 + </if>
  116 + <if test="isdelete != null" >
  117 + isDelete,
  118 + </if>
  119 + <if test="ext1 != null" >
  120 + ext1,
  121 + </if>
  122 + <if test="ext2 != null" >
  123 + ext2,
  124 + </if>
  125 + <if test="ext3 != null" >
  126 + ext3,
  127 + </if>
  128 + <if test="ext4 != null" >
  129 + ext4,
  130 + </if>
  131 + <if test="ext5 != null" >
  132 + ext5,
  133 + </if>
  134 + </trim>
  135 + <trim prefix="values (" suffix=")" suffixOverrides="," >
  136 + <if test="uuid != null" >
  137 + #{uuid,jdbcType=VARCHAR},
  138 + </if>
  139 + <if test="awba != null" >
  140 + #{awba,jdbcType=VARCHAR},
  141 + </if>
  142 + <if test="awbh != null" >
  143 + #{awbh,jdbcType=VARCHAR},
  144 + </if>
  145 + <if test="carrier != null" >
  146 + #{carrier,jdbcType=VARCHAR},
  147 + </if>
  148 + <if test="flightno != null" >
  149 + #{flightno,jdbcType=VARCHAR},
  150 + </if>
  151 + <if test="flightdate != null" >
  152 + #{flightdate,jdbcType=DATE},
  153 + </if>
  154 + <if test="originstation != null" >
  155 + #{originstation,jdbcType=VARCHAR},
  156 + </if>
  157 + <if test="destinationstation != null" >
  158 + #{destinationstation,jdbcType=VARCHAR},
  159 + </if>
  160 + <if test="piece != null" >
  161 + #{piece,jdbcType=INTEGER},
  162 + </if>
  163 + <if test="weight != null" >
  164 + #{weight,jdbcType=DECIMAL},
  165 + </if>
  166 + <if test="starttime != null" >
  167 + #{starttime,jdbcType=TIMESTAMP},
  168 + </if>
  169 + <if test="endtime != null" >
  170 + #{endtime,jdbcType=TIMESTAMP},
  171 + </if>
  172 + <if test="customcode != null" >
  173 + #{customcode,jdbcType=VARCHAR},
  174 + </if>
  175 + <if test="goodsname != null" >
  176 + #{goodsname,jdbcType=VARCHAR},
  177 + </if>
  178 + <if test="actime != null" >
  179 + #{actime,jdbcType=TIMESTAMP},
  180 + </if>
  181 + <if test="rcfdep != null" >
  182 + #{rcfdep,jdbcType=VARCHAR},
  183 + </if>
  184 + <if test="status != null" >
  185 + #{status,jdbcType=VARCHAR},
  186 + </if>
  187 + <if test="isdelete != null" >
  188 + #{isdelete,jdbcType=BIT},
  189 + </if>
  190 + <if test="ext1 != null" >
  191 + #{ext1,jdbcType=VARCHAR},
  192 + </if>
  193 + <if test="ext2 != null" >
  194 + #{ext2,jdbcType=VARCHAR},
  195 + </if>
  196 + <if test="ext3 != null" >
  197 + #{ext3,jdbcType=VARCHAR},
  198 + </if>
  199 + <if test="ext4 != null" >
  200 + #{ext4,jdbcType=VARCHAR},
  201 + </if>
  202 + <if test="ext5 != null" >
  203 + #{ext5,jdbcType=VARCHAR},
  204 + </if>
  205 + </trim>
  206 + </insert>
  207 + <update id="updateByPrimaryKeySelective" parameterType="com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT520X" >
  208 + update CUSTOM_MT520X
  209 + <set >
  210 + <if test="awba != null" >
  211 + awba = #{awba,jdbcType=VARCHAR},
  212 + </if>
  213 + <if test="awbh != null" >
  214 + awbh = #{awbh,jdbcType=VARCHAR},
  215 + </if>
  216 + <if test="carrier != null" >
  217 + carrier = #{carrier,jdbcType=VARCHAR},
  218 + </if>
  219 + <if test="flightno != null" >
  220 + flightNo = #{flightno,jdbcType=VARCHAR},
  221 + </if>
  222 + <if test="flightdate != null" >
  223 + flightDate = #{flightdate,jdbcType=DATE},
  224 + </if>
  225 + <if test="originstation != null" >
  226 + originStation = #{originstation,jdbcType=VARCHAR},
  227 + </if>
  228 + <if test="destinationstation != null" >
  229 + destinationStation = #{destinationstation,jdbcType=VARCHAR},
  230 + </if>
  231 + <if test="piece != null" >
  232 + piece = #{piece,jdbcType=INTEGER},
  233 + </if>
  234 + <if test="weight != null" >
  235 + weight = #{weight,jdbcType=DECIMAL},
  236 + </if>
  237 + <if test="starttime != null" >
  238 + startTime = #{starttime,jdbcType=TIMESTAMP},
  239 + </if>
  240 + <if test="endtime != null" >
  241 + endTime = #{endtime,jdbcType=TIMESTAMP},
  242 + </if>
  243 + <if test="customcode != null" >
  244 + customCode = #{customcode,jdbcType=VARCHAR},
  245 + </if>
  246 + <if test="goodsname != null" >
  247 + goodsName = #{goodsname,jdbcType=VARCHAR},
  248 + </if>
  249 + <if test="actime != null" >
  250 + acTime = #{actime,jdbcType=TIMESTAMP},
  251 + </if>
  252 + <if test="rcfdep != null" >
  253 + rcfdep = #{rcfdep,jdbcType=VARCHAR},
  254 + </if>
  255 + <if test="status != null" >
  256 + status = #{status,jdbcType=VARCHAR},
  257 + </if>
  258 + <if test="isdelete != null" >
  259 + isDelete = #{isdelete,jdbcType=BIT},
  260 + </if>
  261 + <if test="ext1 != null" >
  262 + ext1 = #{ext1,jdbcType=VARCHAR},
  263 + </if>
  264 + <if test="ext2 != null" >
  265 + ext2 = #{ext2,jdbcType=VARCHAR},
  266 + </if>
  267 + <if test="ext3 != null" >
  268 + ext3 = #{ext3,jdbcType=VARCHAR},
  269 + </if>
  270 + <if test="ext4 != null" >
  271 + ext4 = #{ext4,jdbcType=VARCHAR},
  272 + </if>
  273 + <if test="ext5 != null" >
  274 + ext5 = #{ext5,jdbcType=VARCHAR},
  275 + </if>
  276 + </set>
  277 + where uuid = #{uuid,jdbcType=VARCHAR}
  278 + </update>
  279 + <update id="updateByPrimaryKey" parameterType="com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT520X" >
  280 + update CUSTOM_MT520X
  281 + set awba = #{awba,jdbcType=VARCHAR},
  282 + awbh = #{awbh,jdbcType=VARCHAR},
  283 + carrier = #{carrier,jdbcType=VARCHAR},
  284 + flightNo = #{flightno,jdbcType=VARCHAR},
  285 + flightDate = #{flightdate,jdbcType=DATE},
  286 + originStation = #{originstation,jdbcType=VARCHAR},
  287 + destinationStation = #{destinationstation,jdbcType=VARCHAR},
  288 + piece = #{piece,jdbcType=INTEGER},
  289 + weight = #{weight,jdbcType=DECIMAL},
  290 + startTime = #{starttime,jdbcType=TIMESTAMP},
  291 + endTime = #{endtime,jdbcType=TIMESTAMP},
  292 + customCode = #{customcode,jdbcType=VARCHAR},
  293 + goodsName = #{goodsname,jdbcType=VARCHAR},
  294 + acTime = #{actime,jdbcType=TIMESTAMP},
  295 + rcfdep = #{rcfdep,jdbcType=VARCHAR},
  296 + status = #{status,jdbcType=VARCHAR},
  297 + isDelete = #{isdelete,jdbcType=BIT},
  298 + ext1 = #{ext1,jdbcType=VARCHAR},
  299 + ext2 = #{ext2,jdbcType=VARCHAR},
  300 + ext3 = #{ext3,jdbcType=VARCHAR},
  301 + ext4 = #{ext4,jdbcType=VARCHAR},
  302 + ext5 = #{ext5,jdbcType=VARCHAR}
  303 + where uuid = #{uuid,jdbcType=VARCHAR}
  304 + </update>
  305 +</mapper>
  1 +<?xml version="1.0" encoding="UTF-8" ?>
  2 +<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
  3 +<mapper namespace="com.sunyo.wlpt.base.dao.NMMS_CUSTOM_MT8205Mapper" >
  4 + <resultMap id="BaseResultMap" type="com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT8205" >
  5 + <id column="uuid" property="uuid" jdbcType="VARCHAR" />
  6 + <result column="uuid1201" property="uuid1201" jdbcType="VARCHAR" />
  7 + <result column="uuid2201" property="uuid2201" jdbcType="VARCHAR" />
  8 + <result column="transPiece" property="transpiece" jdbcType="INTEGER" />
  9 + <result column="transWeight" property="transweight" jdbcType="DECIMAL" />
  10 + <result column="goodsName" property="goodsname" jdbcType="VARCHAR" />
  11 + <result column="goodsPackage" property="goodspackage" jdbcType="VARCHAR" />
  12 + <result column="status" property="status" jdbcType="VARCHAR" />
  13 + <result column="awbOriginStation" property="awboriginstation" jdbcType="VARCHAR" />
  14 + <result column="awbDesStation" property="awbdesstation" jdbcType="VARCHAR" />
  15 + <result column="customCode" property="customcode" jdbcType="VARCHAR" />
  16 + <result column="isDelete" property="isdelete" jdbcType="BIT" />
  17 + <result column="ext1" property="ext1" jdbcType="VARCHAR" />
  18 + <result column="ext2" property="ext2" jdbcType="VARCHAR" />
  19 + <result column="ext3" property="ext3" jdbcType="VARCHAR" />
  20 + <result column="ext4" property="ext4" jdbcType="VARCHAR" />
  21 + <result column="ext5" property="ext5" jdbcType="VARCHAR" />
  22 + </resultMap>
  23 + <sql id="Base_Column_List" >
  24 + uuid, uuid1201, uuid2201, transPiece, transWeight, goodsName, goodsPackage, status,
  25 + awbOriginStation, awbDesStation, customCode, isDelete, ext1, ext2, ext3, ext4, ext5
  26 + </sql>
  27 + <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.String" >
  28 + select
  29 + <include refid="Base_Column_List" />
  30 + from CUSTOM_MT8205
  31 + where uuid = #{uuid,jdbcType=VARCHAR}
  32 + </select>
  33 + <delete id="deleteByPrimaryKey" parameterType="java.lang.String" >
  34 + delete from CUSTOM_MT8205
  35 + where uuid = #{uuid,jdbcType=VARCHAR}
  36 + </delete>
  37 + <insert id="insert" parameterType="com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT8205" >
  38 + insert into CUSTOM_MT8205 (uuid, uuid1201, uuid2201,
  39 + transPiece, transWeight, goodsName,
  40 + goodsPackage, status, awbOriginStation,
  41 + awbDesStation, customCode, isDelete,
  42 + ext1, ext2, ext3, ext4,
  43 + ext5)
  44 + values (#{uuid,jdbcType=VARCHAR}, #{uuid1201,jdbcType=VARCHAR}, #{uuid2201,jdbcType=VARCHAR},
  45 + #{transpiece,jdbcType=INTEGER}, #{transweight,jdbcType=DECIMAL}, #{goodsname,jdbcType=VARCHAR},
  46 + #{goodspackage,jdbcType=VARCHAR}, #{status,jdbcType=VARCHAR}, #{awboriginstation,jdbcType=VARCHAR},
  47 + #{awbdesstation,jdbcType=VARCHAR}, #{customcode,jdbcType=VARCHAR}, #{isdelete,jdbcType=BIT},
  48 + #{ext1,jdbcType=VARCHAR}, #{ext2,jdbcType=VARCHAR}, #{ext3,jdbcType=VARCHAR}, #{ext4,jdbcType=VARCHAR},
  49 + #{ext5,jdbcType=VARCHAR})
  50 + </insert>
  51 + <insert id="insertSelective" parameterType="com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT8205" >
  52 + insert into CUSTOM_MT8205
  53 + <trim prefix="(" suffix=")" suffixOverrides="," >
  54 + <if test="uuid != null" >
  55 + uuid,
  56 + </if>
  57 + <if test="uuid1201 != null" >
  58 + uuid1201,
  59 + </if>
  60 + <if test="uuid2201 != null" >
  61 + uuid2201,
  62 + </if>
  63 + <if test="transpiece != null" >
  64 + transPiece,
  65 + </if>
  66 + <if test="transweight != null" >
  67 + transWeight,
  68 + </if>
  69 + <if test="goodsname != null" >
  70 + goodsName,
  71 + </if>
  72 + <if test="goodspackage != null" >
  73 + goodsPackage,
  74 + </if>
  75 + <if test="status != null" >
  76 + status,
  77 + </if>
  78 + <if test="awboriginstation != null" >
  79 + awbOriginStation,
  80 + </if>
  81 + <if test="awbdesstation != null" >
  82 + awbDesStation,
  83 + </if>
  84 + <if test="customcode != null" >
  85 + customCode,
  86 + </if>
  87 + <if test="isdelete != null" >
  88 + isDelete,
  89 + </if>
  90 + <if test="ext1 != null" >
  91 + ext1,
  92 + </if>
  93 + <if test="ext2 != null" >
  94 + ext2,
  95 + </if>
  96 + <if test="ext3 != null" >
  97 + ext3,
  98 + </if>
  99 + <if test="ext4 != null" >
  100 + ext4,
  101 + </if>
  102 + <if test="ext5 != null" >
  103 + ext5,
  104 + </if>
  105 + </trim>
  106 + <trim prefix="values (" suffix=")" suffixOverrides="," >
  107 + <if test="uuid != null" >
  108 + #{uuid,jdbcType=VARCHAR},
  109 + </if>
  110 + <if test="uuid1201 != null" >
  111 + #{uuid1201,jdbcType=VARCHAR},
  112 + </if>
  113 + <if test="uuid2201 != null" >
  114 + #{uuid2201,jdbcType=VARCHAR},
  115 + </if>
  116 + <if test="transpiece != null" >
  117 + #{transpiece,jdbcType=INTEGER},
  118 + </if>
  119 + <if test="transweight != null" >
  120 + #{transweight,jdbcType=DECIMAL},
  121 + </if>
  122 + <if test="goodsname != null" >
  123 + #{goodsname,jdbcType=VARCHAR},
  124 + </if>
  125 + <if test="goodspackage != null" >
  126 + #{goodspackage,jdbcType=VARCHAR},
  127 + </if>
  128 + <if test="status != null" >
  129 + #{status,jdbcType=VARCHAR},
  130 + </if>
  131 + <if test="awboriginstation != null" >
  132 + #{awboriginstation,jdbcType=VARCHAR},
  133 + </if>
  134 + <if test="awbdesstation != null" >
  135 + #{awbdesstation,jdbcType=VARCHAR},
  136 + </if>
  137 + <if test="customcode != null" >
  138 + #{customcode,jdbcType=VARCHAR},
  139 + </if>
  140 + <if test="isdelete != null" >
  141 + #{isdelete,jdbcType=BIT},
  142 + </if>
  143 + <if test="ext1 != null" >
  144 + #{ext1,jdbcType=VARCHAR},
  145 + </if>
  146 + <if test="ext2 != null" >
  147 + #{ext2,jdbcType=VARCHAR},
  148 + </if>
  149 + <if test="ext3 != null" >
  150 + #{ext3,jdbcType=VARCHAR},
  151 + </if>
  152 + <if test="ext4 != null" >
  153 + #{ext4,jdbcType=VARCHAR},
  154 + </if>
  155 + <if test="ext5 != null" >
  156 + #{ext5,jdbcType=VARCHAR},
  157 + </if>
  158 + </trim>
  159 + </insert>
  160 + <update id="updateByPrimaryKeySelective" parameterType="com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT8205" >
  161 + update CUSTOM_MT8205
  162 + <set >
  163 + <if test="uuid1201 != null" >
  164 + uuid1201 = #{uuid1201,jdbcType=VARCHAR},
  165 + </if>
  166 + <if test="uuid2201 != null" >
  167 + uuid2201 = #{uuid2201,jdbcType=VARCHAR},
  168 + </if>
  169 + <if test="transpiece != null" >
  170 + transPiece = #{transpiece,jdbcType=INTEGER},
  171 + </if>
  172 + <if test="transweight != null" >
  173 + transWeight = #{transweight,jdbcType=DECIMAL},
  174 + </if>
  175 + <if test="goodsname != null" >
  176 + goodsName = #{goodsname,jdbcType=VARCHAR},
  177 + </if>
  178 + <if test="goodspackage != null" >
  179 + goodsPackage = #{goodspackage,jdbcType=VARCHAR},
  180 + </if>
  181 + <if test="status != null" >
  182 + status = #{status,jdbcType=VARCHAR},
  183 + </if>
  184 + <if test="awboriginstation != null" >
  185 + awbOriginStation = #{awboriginstation,jdbcType=VARCHAR},
  186 + </if>
  187 + <if test="awbdesstation != null" >
  188 + awbDesStation = #{awbdesstation,jdbcType=VARCHAR},
  189 + </if>
  190 + <if test="customcode != null" >
  191 + customCode = #{customcode,jdbcType=VARCHAR},
  192 + </if>
  193 + <if test="isdelete != null" >
  194 + isDelete = #{isdelete,jdbcType=BIT},
  195 + </if>
  196 + <if test="ext1 != null" >
  197 + ext1 = #{ext1,jdbcType=VARCHAR},
  198 + </if>
  199 + <if test="ext2 != null" >
  200 + ext2 = #{ext2,jdbcType=VARCHAR},
  201 + </if>
  202 + <if test="ext3 != null" >
  203 + ext3 = #{ext3,jdbcType=VARCHAR},
  204 + </if>
  205 + <if test="ext4 != null" >
  206 + ext4 = #{ext4,jdbcType=VARCHAR},
  207 + </if>
  208 + <if test="ext5 != null" >
  209 + ext5 = #{ext5,jdbcType=VARCHAR},
  210 + </if>
  211 + </set>
  212 + where uuid = #{uuid,jdbcType=VARCHAR}
  213 + </update>
  214 + <update id="updateByPrimaryKey" parameterType="com.sunyo.wlpt.base.model.NMMS_CUSTOM_MT8205" >
  215 + update CUSTOM_MT8205
  216 + set uuid1201 = #{uuid1201,jdbcType=VARCHAR},
  217 + uuid2201 = #{uuid2201,jdbcType=VARCHAR},
  218 + transPiece = #{transpiece,jdbcType=INTEGER},
  219 + transWeight = #{transweight,jdbcType=DECIMAL},
  220 + goodsName = #{goodsname,jdbcType=VARCHAR},
  221 + goodsPackage = #{goodspackage,jdbcType=VARCHAR},
  222 + status = #{status,jdbcType=VARCHAR},
  223 + awbOriginStation = #{awboriginstation,jdbcType=VARCHAR},
  224 + awbDesStation = #{awbdesstation,jdbcType=VARCHAR},
  225 + customCode = #{customcode,jdbcType=VARCHAR},
  226 + isDelete = #{isdelete,jdbcType=BIT},
  227 + ext1 = #{ext1,jdbcType=VARCHAR},
  228 + ext2 = #{ext2,jdbcType=VARCHAR},
  229 + ext3 = #{ext3,jdbcType=VARCHAR},
  230 + ext4 = #{ext4,jdbcType=VARCHAR},
  231 + ext5 = #{ext5,jdbcType=VARCHAR}
  232 + where uuid = #{uuid,jdbcType=VARCHAR}
  233 + </update>
  234 +</mapper>
  1 +<?xml version="1.0" encoding="UTF-8" ?>
  2 +<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
  3 +<mapper namespace="com.sunyo.wlpt.base.dao.NMMS_CUSTOM_RESPONSEMapper" >
  4 + <resultMap id="BaseResultMap" type="com.sunyo.wlpt.base.model.NMMS_CUSTOM_RESPONSE" >
  5 + <id column="id" property="id" jdbcType="VARCHAR" />
  6 + <result column="flightDate" property="flightdate" jdbcType="DATE" />
  7 + <result column="flightNo" property="flightno" jdbcType="VARCHAR" />
  8 + <result column="carrier" property="carrier" jdbcType="VARCHAR" />
  9 + <result column="awbaNo" property="awbano" jdbcType="VARCHAR" />
  10 + <result column="awbhNo" property="awbhno" jdbcType="VARCHAR" />
  11 + <result column="busType" property="bustype" jdbcType="VARCHAR" />
  12 + <result column="busDate" property="busdate" jdbcType="TIMESTAMP" />
  13 + <result column="busWeight" property="busweight" jdbcType="DECIMAL" />
  14 + <result column="busPiece" property="buspiece" jdbcType="INTEGER" />
  15 + <result column="operType" property="opertype" jdbcType="VARCHAR" />
  16 + <result column="cusMsgId" property="cusmsgid" jdbcType="VARCHAR" />
  17 + <result column="cusSenderId" property="cussenderid" jdbcType="VARCHAR" />
  18 + <result column="cusReciverId" property="cusreciverid" jdbcType="VARCHAR" />
  19 + <result column="cusVersion" property="cusversion" jdbcType="VARCHAR" />
  20 + <result column="cusFunctionCode" property="cusfunctioncode" jdbcType="VARCHAR" />
  21 + <result column="cusResRcvTime" property="cusresrcvtime" jdbcType="TIMESTAMP" />
  22 + <result column="cusResSendTime" property="cusressendtime" jdbcType="TIMESTAMP" />
  23 + <result column="cusResCode" property="cusrescode" jdbcType="VARCHAR" />
  24 + <result column="cusResStatus" property="cusresstatus" jdbcType="VARCHAR" />
  25 + <result column="operUserName" property="operusername" jdbcType="VARCHAR" />
  26 + <result column="operSystemName" property="opersystemname" jdbcType="VARCHAR" />
  27 + </resultMap>
  28 + <resultMap id="ResultMapWithBLOBs" type="com.sunyo.wlpt.base.model.NMMS_CUSTOM_RESPONSE" extends="BaseResultMap" >
  29 + <result column="cusResText" property="cusrestext" jdbcType="LONGVARCHAR" />
  30 + </resultMap>
  31 + <sql id="Base_Column_List" >
  32 + id, flightDate, flightNo, carrier, awbaNo, awbhNo, busType, busDate, busWeight, busPiece,
  33 + operType, cusMsgId, cusSenderId, cusReciverId, cusVersion, cusFunctionCode, cusResRcvTime,
  34 + cusResSendTime, cusResCode, cusResStatus, operUserName, operSystemName
  35 + </sql>
  36 + <sql id="Blob_Column_List" >
  37 + cusResText
  38 + </sql>
  39 + <select id="selectByPrimaryKey" resultMap="ResultMapWithBLOBs" parameterType="java.lang.String" >
  40 + select
  41 + <include refid="Base_Column_List" />
  42 + ,
  43 + <include refid="Blob_Column_List" />
  44 + from CUSTOM_RESPONSE
  45 + where id = #{id,jdbcType=VARCHAR}
  46 + </select>
  47 + <delete id="deleteByPrimaryKey" parameterType="java.lang.String" >
  48 + delete from CUSTOM_RESPONSE
  49 + where id = #{id,jdbcType=VARCHAR}
  50 + </delete>
  51 + <insert id="insert" parameterType="com.sunyo.wlpt.base.model.NMMS_CUSTOM_RESPONSE" >
  52 + insert into CUSTOM_RESPONSE (id, flightDate, flightNo,
  53 + carrier, awbaNo, awbhNo,
  54 + busType, busDate, busWeight,
  55 + busPiece, operType, cusMsgId,
  56 + cusSenderId, cusReciverId, cusVersion,
  57 + cusFunctionCode, cusResRcvTime, cusResSendTime,
  58 + cusResCode, cusResStatus, operUserName,
  59 + operSystemName, cusResText)
  60 + values (#{id,jdbcType=VARCHAR}, #{flightdate,jdbcType=DATE}, #{flightno,jdbcType=VARCHAR},
  61 + #{carrier,jdbcType=VARCHAR}, #{awbano,jdbcType=VARCHAR}, #{awbhno,jdbcType=VARCHAR},
  62 + #{bustype,jdbcType=VARCHAR}, #{busdate,jdbcType=TIMESTAMP}, #{busweight,jdbcType=DECIMAL},
  63 + #{buspiece,jdbcType=INTEGER}, #{opertype,jdbcType=VARCHAR}, #{cusmsgid,jdbcType=VARCHAR},
  64 + #{cussenderid,jdbcType=VARCHAR}, #{cusreciverid,jdbcType=VARCHAR}, #{cusversion,jdbcType=VARCHAR},
  65 + #{cusfunctioncode,jdbcType=VARCHAR}, #{cusresrcvtime,jdbcType=TIMESTAMP}, #{cusressendtime,jdbcType=TIMESTAMP},
  66 + #{cusrescode,jdbcType=VARCHAR}, #{cusresstatus,jdbcType=VARCHAR}, #{operusername,jdbcType=VARCHAR},
  67 + #{opersystemname,jdbcType=VARCHAR}, #{cusrestext,jdbcType=LONGVARCHAR})
  68 + </insert>
  69 + <insert id="insertSelective" parameterType="com.sunyo.wlpt.base.model.NMMS_CUSTOM_RESPONSE" >
  70 + insert into CUSTOM_RESPONSE
  71 + <trim prefix="(" suffix=")" suffixOverrides="," >
  72 + <if test="id != null" >
  73 + id,
  74 + </if>
  75 + <if test="flightdate != null" >
  76 + flightDate,
  77 + </if>
  78 + <if test="flightno != null" >
  79 + flightNo,
  80 + </if>
  81 + <if test="carrier != null" >
  82 + carrier,
  83 + </if>
  84 + <if test="awbano != null" >
  85 + awbaNo,
  86 + </if>
  87 + <if test="awbhno != null" >
  88 + awbhNo,
  89 + </if>
  90 + <if test="bustype != null" >
  91 + busType,
  92 + </if>
  93 + <if test="busdate != null" >
  94 + busDate,
  95 + </if>
  96 + <if test="busweight != null" >
  97 + busWeight,
  98 + </if>
  99 + <if test="buspiece != null" >
  100 + busPiece,
  101 + </if>
  102 + <if test="opertype != null" >
  103 + operType,
  104 + </if>
  105 + <if test="cusmsgid != null" >
  106 + cusMsgId,
  107 + </if>
  108 + <if test="cussenderid != null" >
  109 + cusSenderId,
  110 + </if>
  111 + <if test="cusreciverid != null" >
  112 + cusReciverId,
  113 + </if>
  114 + <if test="cusversion != null" >
  115 + cusVersion,
  116 + </if>
  117 + <if test="cusfunctioncode != null" >
  118 + cusFunctionCode,
  119 + </if>
  120 + <if test="cusresrcvtime != null" >
  121 + cusResRcvTime,
  122 + </if>
  123 + <if test="cusressendtime != null" >
  124 + cusResSendTime,
  125 + </if>
  126 + <if test="cusrescode != null" >
  127 + cusResCode,
  128 + </if>
  129 + <if test="cusresstatus != null" >
  130 + cusResStatus,
  131 + </if>
  132 + <if test="operusername != null" >
  133 + operUserName,
  134 + </if>
  135 + <if test="opersystemname != null" >
  136 + operSystemName,
  137 + </if>
  138 + <if test="cusrestext != null" >
  139 + cusResText,
  140 + </if>
  141 + </trim>
  142 + <trim prefix="values (" suffix=")" suffixOverrides="," >
  143 + <if test="id != null" >
  144 + #{id,jdbcType=VARCHAR},
  145 + </if>
  146 + <if test="flightdate != null" >
  147 + #{flightdate,jdbcType=DATE},
  148 + </if>
  149 + <if test="flightno != null" >
  150 + #{flightno,jdbcType=VARCHAR},
  151 + </if>
  152 + <if test="carrier != null" >
  153 + #{carrier,jdbcType=VARCHAR},
  154 + </if>
  155 + <if test="awbano != null" >
  156 + #{awbano,jdbcType=VARCHAR},
  157 + </if>
  158 + <if test="awbhno != null" >
  159 + #{awbhno,jdbcType=VARCHAR},
  160 + </if>
  161 + <if test="bustype != null" >
  162 + #{bustype,jdbcType=VARCHAR},
  163 + </if>
  164 + <if test="busdate != null" >
  165 + #{busdate,jdbcType=TIMESTAMP},
  166 + </if>
  167 + <if test="busweight != null" >
  168 + #{busweight,jdbcType=DECIMAL},
  169 + </if>
  170 + <if test="buspiece != null" >
  171 + #{buspiece,jdbcType=INTEGER},
  172 + </if>
  173 + <if test="opertype != null" >
  174 + #{opertype,jdbcType=VARCHAR},
  175 + </if>
  176 + <if test="cusmsgid != null" >
  177 + #{cusmsgid,jdbcType=VARCHAR},
  178 + </if>
  179 + <if test="cussenderid != null" >
  180 + #{cussenderid,jdbcType=VARCHAR},
  181 + </if>
  182 + <if test="cusreciverid != null" >
  183 + #{cusreciverid,jdbcType=VARCHAR},
  184 + </if>
  185 + <if test="cusversion != null" >
  186 + #{cusversion,jdbcType=VARCHAR},
  187 + </if>
  188 + <if test="cusfunctioncode != null" >
  189 + #{cusfunctioncode,jdbcType=VARCHAR},
  190 + </if>
  191 + <if test="cusresrcvtime != null" >
  192 + #{cusresrcvtime,jdbcType=TIMESTAMP},
  193 + </if>
  194 + <if test="cusressendtime != null" >
  195 + #{cusressendtime,jdbcType=TIMESTAMP},
  196 + </if>
  197 + <if test="cusrescode != null" >
  198 + #{cusrescode,jdbcType=VARCHAR},
  199 + </if>
  200 + <if test="cusresstatus != null" >
  201 + #{cusresstatus,jdbcType=VARCHAR},
  202 + </if>
  203 + <if test="operusername != null" >
  204 + #{operusername,jdbcType=VARCHAR},
  205 + </if>
  206 + <if test="opersystemname != null" >
  207 + #{opersystemname,jdbcType=VARCHAR},
  208 + </if>
  209 + <if test="cusrestext != null" >
  210 + #{cusrestext,jdbcType=LONGVARCHAR},
  211 + </if>
  212 + </trim>
  213 + </insert>
  214 + <update id="updateByPrimaryKeySelective" parameterType="com.sunyo.wlpt.base.model.NMMS_CUSTOM_RESPONSE" >
  215 + update CUSTOM_RESPONSE
  216 + <set >
  217 + <if test="flightdate != null" >
  218 + flightDate = #{flightdate,jdbcType=DATE},
  219 + </if>
  220 + <if test="flightno != null" >
  221 + flightNo = #{flightno,jdbcType=VARCHAR},
  222 + </if>
  223 + <if test="carrier != null" >
  224 + carrier = #{carrier,jdbcType=VARCHAR},
  225 + </if>
  226 + <if test="awbano != null" >
  227 + awbaNo = #{awbano,jdbcType=VARCHAR},
  228 + </if>
  229 + <if test="awbhno != null" >
  230 + awbhNo = #{awbhno,jdbcType=VARCHAR},
  231 + </if>
  232 + <if test="bustype != null" >
  233 + busType = #{bustype,jdbcType=VARCHAR},
  234 + </if>
  235 + <if test="busdate != null" >
  236 + busDate = #{busdate,jdbcType=TIMESTAMP},
  237 + </if>
  238 + <if test="busweight != null" >
  239 + busWeight = #{busweight,jdbcType=DECIMAL},
  240 + </if>
  241 + <if test="buspiece != null" >
  242 + busPiece = #{buspiece,jdbcType=INTEGER},
  243 + </if>
  244 + <if test="opertype != null" >
  245 + operType = #{opertype,jdbcType=VARCHAR},
  246 + </if>
  247 + <if test="cusmsgid != null" >
  248 + cusMsgId = #{cusmsgid,jdbcType=VARCHAR},
  249 + </if>
  250 + <if test="cussenderid != null" >
  251 + cusSenderId = #{cussenderid,jdbcType=VARCHAR},
  252 + </if>
  253 + <if test="cusreciverid != null" >
  254 + cusReciverId = #{cusreciverid,jdbcType=VARCHAR},
  255 + </if>
  256 + <if test="cusversion != null" >
  257 + cusVersion = #{cusversion,jdbcType=VARCHAR},
  258 + </if>
  259 + <if test="cusfunctioncode != null" >
  260 + cusFunctionCode = #{cusfunctioncode,jdbcType=VARCHAR},
  261 + </if>
  262 + <if test="cusresrcvtime != null" >
  263 + cusResRcvTime = #{cusresrcvtime,jdbcType=TIMESTAMP},
  264 + </if>
  265 + <if test="cusressendtime != null" >
  266 + cusResSendTime = #{cusressendtime,jdbcType=TIMESTAMP},
  267 + </if>
  268 + <if test="cusrescode != null" >
  269 + cusResCode = #{cusrescode,jdbcType=VARCHAR},
  270 + </if>
  271 + <if test="cusresstatus != null" >
  272 + cusResStatus = #{cusresstatus,jdbcType=VARCHAR},
  273 + </if>
  274 + <if test="operusername != null" >
  275 + operUserName = #{operusername,jdbcType=VARCHAR},
  276 + </if>
  277 + <if test="opersystemname != null" >
  278 + operSystemName = #{opersystemname,jdbcType=VARCHAR},
  279 + </if>
  280 + <if test="cusrestext != null" >
  281 + cusResText = #{cusrestext,jdbcType=LONGVARCHAR},
  282 + </if>
  283 + </set>
  284 + where id = #{id,jdbcType=VARCHAR}
  285 + </update>
  286 + <update id="updateByPrimaryKeyWithBLOBs" parameterType="com.sunyo.wlpt.base.model.NMMS_CUSTOM_RESPONSE" >
  287 + update CUSTOM_RESPONSE
  288 + set flightDate = #{flightdate,jdbcType=DATE},
  289 + flightNo = #{flightno,jdbcType=VARCHAR},
  290 + carrier = #{carrier,jdbcType=VARCHAR},
  291 + awbaNo = #{awbano,jdbcType=VARCHAR},
  292 + awbhNo = #{awbhno,jdbcType=VARCHAR},
  293 + busType = #{bustype,jdbcType=VARCHAR},
  294 + busDate = #{busdate,jdbcType=TIMESTAMP},
  295 + busWeight = #{busweight,jdbcType=DECIMAL},
  296 + busPiece = #{buspiece,jdbcType=INTEGER},
  297 + operType = #{opertype,jdbcType=VARCHAR},
  298 + cusMsgId = #{cusmsgid,jdbcType=VARCHAR},
  299 + cusSenderId = #{cussenderid,jdbcType=VARCHAR},
  300 + cusReciverId = #{cusreciverid,jdbcType=VARCHAR},
  301 + cusVersion = #{cusversion,jdbcType=VARCHAR},
  302 + cusFunctionCode = #{cusfunctioncode,jdbcType=VARCHAR},
  303 + cusResRcvTime = #{cusresrcvtime,jdbcType=TIMESTAMP},
  304 + cusResSendTime = #{cusressendtime,jdbcType=TIMESTAMP},
  305 + cusResCode = #{cusrescode,jdbcType=VARCHAR},
  306 + cusResStatus = #{cusresstatus,jdbcType=VARCHAR},
  307 + operUserName = #{operusername,jdbcType=VARCHAR},
  308 + operSystemName = #{opersystemname,jdbcType=VARCHAR},
  309 + cusResText = #{cusrestext,jdbcType=LONGVARCHAR}
  310 + where id = #{id,jdbcType=VARCHAR}
  311 + </update>
  312 + <update id="updateByPrimaryKey" parameterType="com.sunyo.wlpt.base.model.NMMS_CUSTOM_RESPONSE" >
  313 + update CUSTOM_RESPONSE
  314 + set flightDate = #{flightdate,jdbcType=DATE},
  315 + flightNo = #{flightno,jdbcType=VARCHAR},
  316 + carrier = #{carrier,jdbcType=VARCHAR},
  317 + awbaNo = #{awbano,jdbcType=VARCHAR},
  318 + awbhNo = #{awbhno,jdbcType=VARCHAR},
  319 + busType = #{bustype,jdbcType=VARCHAR},
  320 + busDate = #{busdate,jdbcType=TIMESTAMP},
  321 + busWeight = #{busweight,jdbcType=DECIMAL},
  322 + busPiece = #{buspiece,jdbcType=INTEGER},
  323 + operType = #{opertype,jdbcType=VARCHAR},
  324 + cusMsgId = #{cusmsgid,jdbcType=VARCHAR},
  325 + cusSenderId = #{cussenderid,jdbcType=VARCHAR},
  326 + cusReciverId = #{cusreciverid,jdbcType=VARCHAR},
  327 + cusVersion = #{cusversion,jdbcType=VARCHAR},
  328 + cusFunctionCode = #{cusfunctioncode,jdbcType=VARCHAR},
  329 + cusResRcvTime = #{cusresrcvtime,jdbcType=TIMESTAMP},
  330 + cusResSendTime = #{cusressendtime,jdbcType=TIMESTAMP},
  331 + cusResCode = #{cusrescode,jdbcType=VARCHAR},
  332 + cusResStatus = #{cusresstatus,jdbcType=VARCHAR},
  333 + operUserName = #{operusername,jdbcType=VARCHAR},
  334 + operSystemName = #{opersystemname,jdbcType=VARCHAR}
  335 + where id = #{id,jdbcType=VARCHAR}
  336 + </update>
  337 +</mapper>
  1 +<?xml version="1.0" encoding="UTF-8" ?>
  2 +<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
  3 +<mapper namespace="com.sunyo.wlpt.base.dao.NMMS_FFM_INFOMapper" >
  4 + <resultMap id="BaseResultMap" type="com.sunyo.wlpt.base.model.NMMS_FFM_INFO" >
  5 + <id column="AUTOID" property="autoid" jdbcType="VARCHAR" />
  6 + <result column="CREATEDATE" property="createdate" jdbcType="TIMESTAMP" />
  7 + <result column="FLIGHTNO" property="flightno" jdbcType="VARCHAR" />
  8 + <result column="FLIGHTDATE" property="flightdate" jdbcType="TIMESTAMP" />
  9 + <result column="WAYBILLNOMASTER" property="waybillnomaster" jdbcType="VARCHAR" />
  10 + <result column="ORIGINATINGSTATION" property="originatingstation" jdbcType="VARCHAR" />
  11 + <result column="DESTINATIONSTATION" property="destinationstation" jdbcType="VARCHAR" />
  12 + <result column="MANIFESTTOTALPIECE" property="manifesttotalpiece" jdbcType="VARCHAR" />
  13 + <result column="MANIFESTTOTALWEIGHT" property="manifesttotalweight" jdbcType="VARCHAR" />
  14 + <result column="PRODUCTNAME" property="productname" jdbcType="VARCHAR" />
  15 + <result column="SPECIALGOODSCODE" property="specialgoodscode" jdbcType="VARCHAR" />
  16 + <result column="CUSTOMSCODE" property="customscode" jdbcType="VARCHAR" />
  17 + <result column="CUSTOMSSTATUS" property="customsstatus" jdbcType="VARCHAR" />
  18 + <result column="ISBATCH" property="isbatch" jdbcType="VARCHAR" />
  19 + <result column="PALLET" property="pallet" jdbcType="VARCHAR" />
  20 + <result column="PALLETTYPE" property="pallettype" jdbcType="VARCHAR" />
  21 + <result column="PALLETNO" property="palletno" jdbcType="VARCHAR" />
  22 + <result column="REPORTORDER" property="reportorder" jdbcType="VARCHAR" />
  23 + <result column="ISLAST" property="islast" jdbcType="VARCHAR" />
  24 + <result column="ORIGINATINGSTATION_BILL" property="originatingstationBill" jdbcType="VARCHAR" />
  25 + <result column="DESTINATIONSTATION_BILL" property="destinationstationBill" jdbcType="VARCHAR" />
  26 + <result column="TOTALPIECE" property="totalpiece" jdbcType="VARCHAR" />
  27 + <result column="DEALSTATUS" property="dealstatus" jdbcType="VARCHAR" />
  28 + </resultMap>
  29 + <sql id="Base_Column_List" >
  30 + AUTOID, CREATEDATE, FLIGHTNO, FLIGHTDATE, WAYBILLNOMASTER, ORIGINATINGSTATION, DESTINATIONSTATION,
  31 + MANIFESTTOTALPIECE, MANIFESTTOTALWEIGHT, PRODUCTNAME, SPECIALGOODSCODE, CUSTOMSCODE,
  32 + CUSTOMSSTATUS, ISBATCH, PALLET, PALLETTYPE, PALLETNO, REPORTORDER, ISLAST, ORIGINATINGSTATION_BILL,
  33 + DESTINATIONSTATION_BILL, TOTALPIECE, DEALSTATUS
  34 + </sql>
  35 + <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.String" >
  36 + select
  37 + <include refid="Base_Column_List" />
  38 + from FFM_INFO
  39 + where AUTOID = #{autoid,jdbcType=VARCHAR}
  40 + </select>
  41 + <delete id="deleteByPrimaryKey" parameterType="java.lang.String" >
  42 + delete from FFM_INFO
  43 + where AUTOID = #{autoid,jdbcType=VARCHAR}
  44 + </delete>
  45 + <insert id="insert" parameterType="com.sunyo.wlpt.base.model.NMMS_FFM_INFO" >
  46 + insert into FFM_INFO (AUTOID, CREATEDATE, FLIGHTNO,
  47 + FLIGHTDATE, WAYBILLNOMASTER, ORIGINATINGSTATION,
  48 + DESTINATIONSTATION, MANIFESTTOTALPIECE,
  49 + MANIFESTTOTALWEIGHT, PRODUCTNAME, SPECIALGOODSCODE,
  50 + CUSTOMSCODE, CUSTOMSSTATUS, ISBATCH,
  51 + PALLET, PALLETTYPE, PALLETNO,
  52 + REPORTORDER, ISLAST, ORIGINATINGSTATION_BILL,
  53 + DESTINATIONSTATION_BILL, TOTALPIECE, DEALSTATUS
  54 + )
  55 + values (#{autoid,jdbcType=VARCHAR}, #{createdate,jdbcType=TIMESTAMP}, #{flightno,jdbcType=VARCHAR},
  56 + #{flightdate,jdbcType=TIMESTAMP}, #{waybillnomaster,jdbcType=VARCHAR}, #{originatingstation,jdbcType=VARCHAR},
  57 + #{destinationstation,jdbcType=VARCHAR}, #{manifesttotalpiece,jdbcType=VARCHAR},
  58 + #{manifesttotalweight,jdbcType=VARCHAR}, #{productname,jdbcType=VARCHAR}, #{specialgoodscode,jdbcType=VARCHAR},
  59 + #{customscode,jdbcType=VARCHAR}, #{customsstatus,jdbcType=VARCHAR}, #{isbatch,jdbcType=VARCHAR},
  60 + #{pallet,jdbcType=VARCHAR}, #{pallettype,jdbcType=VARCHAR}, #{palletno,jdbcType=VARCHAR},
  61 + #{reportorder,jdbcType=VARCHAR}, #{islast,jdbcType=VARCHAR}, #{originatingstationBill,jdbcType=VARCHAR},
  62 + #{destinationstationBill,jdbcType=VARCHAR}, #{totalpiece,jdbcType=VARCHAR}, #{dealstatus,jdbcType=VARCHAR}
  63 + )
  64 + </insert>
  65 + <insert id="insertSelective" parameterType="com.sunyo.wlpt.base.model.NMMS_FFM_INFO" >
  66 + insert into FFM_INFO
  67 + <trim prefix="(" suffix=")" suffixOverrides="," >
  68 + <if test="autoid != null" >
  69 + AUTOID,
  70 + </if>
  71 + <if test="createdate != null" >
  72 + CREATEDATE,
  73 + </if>
  74 + <if test="flightno != null" >
  75 + FLIGHTNO,
  76 + </if>
  77 + <if test="flightdate != null" >
  78 + FLIGHTDATE,
  79 + </if>
  80 + <if test="waybillnomaster != null" >
  81 + WAYBILLNOMASTER,
  82 + </if>
  83 + <if test="originatingstation != null" >
  84 + ORIGINATINGSTATION,
  85 + </if>
  86 + <if test="destinationstation != null" >
  87 + DESTINATIONSTATION,
  88 + </if>
  89 + <if test="manifesttotalpiece != null" >
  90 + MANIFESTTOTALPIECE,
  91 + </if>
  92 + <if test="manifesttotalweight != null" >
  93 + MANIFESTTOTALWEIGHT,
  94 + </if>
  95 + <if test="productname != null" >
  96 + PRODUCTNAME,
  97 + </if>
  98 + <if test="specialgoodscode != null" >
  99 + SPECIALGOODSCODE,
  100 + </if>
  101 + <if test="customscode != null" >
  102 + CUSTOMSCODE,
  103 + </if>
  104 + <if test="customsstatus != null" >
  105 + CUSTOMSSTATUS,
  106 + </if>
  107 + <if test="isbatch != null" >
  108 + ISBATCH,
  109 + </if>
  110 + <if test="pallet != null" >
  111 + PALLET,
  112 + </if>
  113 + <if test="pallettype != null" >
  114 + PALLETTYPE,
  115 + </if>
  116 + <if test="palletno != null" >
  117 + PALLETNO,
  118 + </if>
  119 + <if test="reportorder != null" >
  120 + REPORTORDER,
  121 + </if>
  122 + <if test="islast != null" >
  123 + ISLAST,
  124 + </if>
  125 + <if test="originatingstationBill != null" >
  126 + ORIGINATINGSTATION_BILL,
  127 + </if>
  128 + <if test="destinationstationBill != null" >
  129 + DESTINATIONSTATION_BILL,
  130 + </if>
  131 + <if test="totalpiece != null" >
  132 + TOTALPIECE,
  133 + </if>
  134 + <if test="dealstatus != null" >
  135 + DEALSTATUS,
  136 + </if>
  137 + </trim>
  138 + <trim prefix="values (" suffix=")" suffixOverrides="," >
  139 + <if test="autoid != null" >
  140 + #{autoid,jdbcType=VARCHAR},
  141 + </if>
  142 + <if test="createdate != null" >
  143 + #{createdate,jdbcType=TIMESTAMP},
  144 + </if>
  145 + <if test="flightno != null" >
  146 + #{flightno,jdbcType=VARCHAR},
  147 + </if>
  148 + <if test="flightdate != null" >
  149 + #{flightdate,jdbcType=TIMESTAMP},
  150 + </if>
  151 + <if test="waybillnomaster != null" >
  152 + #{waybillnomaster,jdbcType=VARCHAR},
  153 + </if>
  154 + <if test="originatingstation != null" >
  155 + #{originatingstation,jdbcType=VARCHAR},
  156 + </if>
  157 + <if test="destinationstation != null" >
  158 + #{destinationstation,jdbcType=VARCHAR},
  159 + </if>
  160 + <if test="manifesttotalpiece != null" >
  161 + #{manifesttotalpiece,jdbcType=VARCHAR},
  162 + </if>
  163 + <if test="manifesttotalweight != null" >
  164 + #{manifesttotalweight,jdbcType=VARCHAR},
  165 + </if>
  166 + <if test="productname != null" >
  167 + #{productname,jdbcType=VARCHAR},
  168 + </if>
  169 + <if test="specialgoodscode != null" >
  170 + #{specialgoodscode,jdbcType=VARCHAR},
  171 + </if>
  172 + <if test="customscode != null" >
  173 + #{customscode,jdbcType=VARCHAR},
  174 + </if>
  175 + <if test="customsstatus != null" >
  176 + #{customsstatus,jdbcType=VARCHAR},
  177 + </if>
  178 + <if test="isbatch != null" >
  179 + #{isbatch,jdbcType=VARCHAR},
  180 + </if>
  181 + <if test="pallet != null" >
  182 + #{pallet,jdbcType=VARCHAR},
  183 + </if>
  184 + <if test="pallettype != null" >
  185 + #{pallettype,jdbcType=VARCHAR},
  186 + </if>
  187 + <if test="palletno != null" >
  188 + #{palletno,jdbcType=VARCHAR},
  189 + </if>
  190 + <if test="reportorder != null" >
  191 + #{reportorder,jdbcType=VARCHAR},
  192 + </if>
  193 + <if test="islast != null" >
  194 + #{islast,jdbcType=VARCHAR},
  195 + </if>
  196 + <if test="originatingstationBill != null" >
  197 + #{originatingstationBill,jdbcType=VARCHAR},
  198 + </if>
  199 + <if test="destinationstationBill != null" >
  200 + #{destinationstationBill,jdbcType=VARCHAR},
  201 + </if>
  202 + <if test="totalpiece != null" >
  203 + #{totalpiece,jdbcType=VARCHAR},
  204 + </if>
  205 + <if test="dealstatus != null" >
  206 + #{dealstatus,jdbcType=VARCHAR},
  207 + </if>
  208 + </trim>
  209 + </insert>
  210 + <update id="updateByPrimaryKeySelective" parameterType="com.sunyo.wlpt.base.model.NMMS_FFM_INFO" >
  211 + update FFM_INFO
  212 + <set >
  213 + <if test="createdate != null" >
  214 + CREATEDATE = #{createdate,jdbcType=TIMESTAMP},
  215 + </if>
  216 + <if test="flightno != null" >
  217 + FLIGHTNO = #{flightno,jdbcType=VARCHAR},
  218 + </if>
  219 + <if test="flightdate != null" >
  220 + FLIGHTDATE = #{flightdate,jdbcType=TIMESTAMP},
  221 + </if>
  222 + <if test="waybillnomaster != null" >
  223 + WAYBILLNOMASTER = #{waybillnomaster,jdbcType=VARCHAR},
  224 + </if>
  225 + <if test="originatingstation != null" >
  226 + ORIGINATINGSTATION = #{originatingstation,jdbcType=VARCHAR},
  227 + </if>
  228 + <if test="destinationstation != null" >
  229 + DESTINATIONSTATION = #{destinationstation,jdbcType=VARCHAR},
  230 + </if>
  231 + <if test="manifesttotalpiece != null" >
  232 + MANIFESTTOTALPIECE = #{manifesttotalpiece,jdbcType=VARCHAR},
  233 + </if>
  234 + <if test="manifesttotalweight != null" >
  235 + MANIFESTTOTALWEIGHT = #{manifesttotalweight,jdbcType=VARCHAR},
  236 + </if>
  237 + <if test="productname != null" >
  238 + PRODUCTNAME = #{productname,jdbcType=VARCHAR},
  239 + </if>
  240 + <if test="specialgoodscode != null" >
  241 + SPECIALGOODSCODE = #{specialgoodscode,jdbcType=VARCHAR},
  242 + </if>
  243 + <if test="customscode != null" >
  244 + CUSTOMSCODE = #{customscode,jdbcType=VARCHAR},
  245 + </if>
  246 + <if test="customsstatus != null" >
  247 + CUSTOMSSTATUS = #{customsstatus,jdbcType=VARCHAR},
  248 + </if>
  249 + <if test="isbatch != null" >
  250 + ISBATCH = #{isbatch,jdbcType=VARCHAR},
  251 + </if>
  252 + <if test="pallet != null" >
  253 + PALLET = #{pallet,jdbcType=VARCHAR},
  254 + </if>
  255 + <if test="pallettype != null" >
  256 + PALLETTYPE = #{pallettype,jdbcType=VARCHAR},
  257 + </if>
  258 + <if test="palletno != null" >
  259 + PALLETNO = #{palletno,jdbcType=VARCHAR},
  260 + </if>
  261 + <if test="reportorder != null" >
  262 + REPORTORDER = #{reportorder,jdbcType=VARCHAR},
  263 + </if>
  264 + <if test="islast != null" >
  265 + ISLAST = #{islast,jdbcType=VARCHAR},
  266 + </if>
  267 + <if test="originatingstationBill != null" >
  268 + ORIGINATINGSTATION_BILL = #{originatingstationBill,jdbcType=VARCHAR},
  269 + </if>
  270 + <if test="destinationstationBill != null" >
  271 + DESTINATIONSTATION_BILL = #{destinationstationBill,jdbcType=VARCHAR},
  272 + </if>
  273 + <if test="totalpiece != null" >
  274 + TOTALPIECE = #{totalpiece,jdbcType=VARCHAR},
  275 + </if>
  276 + <if test="dealstatus != null" >
  277 + DEALSTATUS = #{dealstatus,jdbcType=VARCHAR},
  278 + </if>
  279 + </set>
  280 + where AUTOID = #{autoid,jdbcType=VARCHAR}
  281 + </update>
  282 + <update id="updateByPrimaryKey" parameterType="com.sunyo.wlpt.base.model.NMMS_FFM_INFO" >
  283 + update FFM_INFO
  284 + set CREATEDATE = #{createdate,jdbcType=TIMESTAMP},
  285 + FLIGHTNO = #{flightno,jdbcType=VARCHAR},
  286 + FLIGHTDATE = #{flightdate,jdbcType=TIMESTAMP},
  287 + WAYBILLNOMASTER = #{waybillnomaster,jdbcType=VARCHAR},
  288 + ORIGINATINGSTATION = #{originatingstation,jdbcType=VARCHAR},
  289 + DESTINATIONSTATION = #{destinationstation,jdbcType=VARCHAR},
  290 + MANIFESTTOTALPIECE = #{manifesttotalpiece,jdbcType=VARCHAR},
  291 + MANIFESTTOTALWEIGHT = #{manifesttotalweight,jdbcType=VARCHAR},
  292 + PRODUCTNAME = #{productname,jdbcType=VARCHAR},
  293 + SPECIALGOODSCODE = #{specialgoodscode,jdbcType=VARCHAR},
  294 + CUSTOMSCODE = #{customscode,jdbcType=VARCHAR},
  295 + CUSTOMSSTATUS = #{customsstatus,jdbcType=VARCHAR},
  296 + ISBATCH = #{isbatch,jdbcType=VARCHAR},
  297 + PALLET = #{pallet,jdbcType=VARCHAR},
  298 + PALLETTYPE = #{pallettype,jdbcType=VARCHAR},
  299 + PALLETNO = #{palletno,jdbcType=VARCHAR},
  300 + REPORTORDER = #{reportorder,jdbcType=VARCHAR},
  301 + ISLAST = #{islast,jdbcType=VARCHAR},
  302 + ORIGINATINGSTATION_BILL = #{originatingstationBill,jdbcType=VARCHAR},
  303 + DESTINATIONSTATION_BILL = #{destinationstationBill,jdbcType=VARCHAR},
  304 + TOTALPIECE = #{totalpiece,jdbcType=VARCHAR},
  305 + DEALSTATUS = #{dealstatus,jdbcType=VARCHAR}
  306 + where AUTOID = #{autoid,jdbcType=VARCHAR}
  307 + </update>
  308 +</mapper>
  1 +<?xml version="1.0" encoding="UTF-8" ?>
  2 +<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
  3 +<mapper namespace="com.sunyo.wlpt.base.dao.STATIC_CUSTOMCODE_CUSTOMNAMEMapper" >
  4 + <resultMap id="BaseResultMap" type="com.sunyo.wlpt.base.model.STATIC_CUSTOMCODE_CUSTOMNAME" >
  5 + <result column="customCode" property="customcode" jdbcType="VARCHAR" />
  6 + <result column="customName" property="customname" jdbcType="VARCHAR" />
  7 + </resultMap>
  8 + <insert id="insert" parameterType="com.sunyo.wlpt.base.model.STATIC_CUSTOMCODE_CUSTOMNAME" >
  9 + insert into STATIC_CUSTOMCODE_CUSTOMNAME (customCode, customName)
  10 + values (#{customcode,jdbcType=VARCHAR}, #{customname,jdbcType=VARCHAR})
  11 + </insert>
  12 + <insert id="insertSelective" parameterType="com.sunyo.wlpt.base.model.STATIC_CUSTOMCODE_CUSTOMNAME" >
  13 + insert into STATIC_CUSTOMCODE_CUSTOMNAME
  14 + <trim prefix="(" suffix=")" suffixOverrides="," >
  15 + <if test="customcode != null" >
  16 + customCode,
  17 + </if>
  18 + <if test="customname != null" >
  19 + customName,
  20 + </if>
  21 + </trim>
  22 + <trim prefix="values (" suffix=")" suffixOverrides="," >
  23 + <if test="customcode != null" >
  24 + #{customcode,jdbcType=VARCHAR},
  25 + </if>
  26 + <if test="customname != null" >
  27 + #{customname,jdbcType=VARCHAR},
  28 + </if>
  29 + </trim>
  30 + </insert>
  31 +</mapper>
  1 +<?xml version="1.0" encoding="UTF-8" ?>
  2 +<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
  3 +<mapper namespace="com.sunyo.wlpt.base.dao.STATIC_CUSTOM_RESPONSE_BASEMapper" >
  4 + <resultMap id="BaseResultMap" type="com.sunyo.wlpt.base.model.STATIC_CUSTOM_RESPONSE_BASE" >
  5 + <result column="RESPONSECODE" property="responsecode" jdbcType="VARCHAR" />
  6 + <result column="RESPONSETEXT" property="responsetext" jdbcType="VARCHAR" />
  7 + <result column="TYPEREMARK" property="typeremark" jdbcType="VARCHAR" />
  8 + <result column="TYPE" property="type" jdbcType="VARCHAR" />
  9 + <result column="SORTNUM" property="sortnum" jdbcType="DECIMAL" />
  10 + <result column="OPERATIONTIME" property="operationtime" jdbcType="TIMESTAMP" />
  11 + </resultMap>
  12 + <insert id="insert" parameterType="com.sunyo.wlpt.base.model.STATIC_CUSTOM_RESPONSE_BASE" >
  13 + insert into STATIC_CUSTOM_RESPONSE_BASE (RESPONSECODE, RESPONSETEXT, TYPEREMARK,
  14 + TYPE, SORTNUM, OPERATIONTIME
  15 + )
  16 + values (#{responsecode,jdbcType=VARCHAR}, #{responsetext,jdbcType=VARCHAR}, #{typeremark,jdbcType=VARCHAR},
  17 + #{type,jdbcType=VARCHAR}, #{sortnum,jdbcType=DECIMAL}, #{operationtime,jdbcType=TIMESTAMP}
  18 + )
  19 + </insert>
  20 + <insert id="insertSelective" parameterType="com.sunyo.wlpt.base.model.STATIC_CUSTOM_RESPONSE_BASE" >
  21 + insert into STATIC_CUSTOM_RESPONSE_BASE
  22 + <trim prefix="(" suffix=")" suffixOverrides="," >
  23 + <if test="responsecode != null" >
  24 + RESPONSECODE,
  25 + </if>
  26 + <if test="responsetext != null" >
  27 + RESPONSETEXT,
  28 + </if>
  29 + <if test="typeremark != null" >
  30 + TYPEREMARK,
  31 + </if>
  32 + <if test="type != null" >
  33 + TYPE,
  34 + </if>
  35 + <if test="sortnum != null" >
  36 + SORTNUM,
  37 + </if>
  38 + <if test="operationtime != null" >
  39 + OPERATIONTIME,
  40 + </if>
  41 + </trim>
  42 + <trim prefix="values (" suffix=")" suffixOverrides="," >
  43 + <if test="responsecode != null" >
  44 + #{responsecode,jdbcType=VARCHAR},
  45 + </if>
  46 + <if test="responsetext != null" >
  47 + #{responsetext,jdbcType=VARCHAR},
  48 + </if>
  49 + <if test="typeremark != null" >
  50 + #{typeremark,jdbcType=VARCHAR},
  51 + </if>
  52 + <if test="type != null" >
  53 + #{type,jdbcType=VARCHAR},
  54 + </if>
  55 + <if test="sortnum != null" >
  56 + #{sortnum,jdbcType=DECIMAL},
  57 + </if>
  58 + <if test="operationtime != null" >
  59 + #{operationtime,jdbcType=TIMESTAMP},
  60 + </if>
  61 + </trim>
  62 + </insert>
  63 +</mapper>