作者 朱兆平

FWB解析入库完成

正在显示 38 个修改的文件 包含 3754 行增加1762 行删除
... ... @@ -45,6 +45,12 @@
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc6</artifactId>
<version>11.2.0.4.0-atlassian-hosted</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
... ...
package com.example.demo;
import com.example.demo.util.XML.XMLParse;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
... ... @@ -11,9 +10,6 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
import org.springframework.scheduling.annotation.EnableScheduling;
import java.util.Date;
import java.util.List;
import java.util.Map;
@SpringBootApplication
@EnableScheduling
... ...
package com.example.demo.controller;
import com.example.demo.model.User;
import com.example.demo.service.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
@Controller
@RequestMapping(value = "/user")
public class UserController {
@Autowired
private UserService userService;
@ResponseBody
@PostMapping("/add")
public int addUser(User user){
return userService.insert(user);
}
@ResponseBody
@GetMapping("all")
public Object findAllUser(
@RequestParam(name="pageNum",required = false,defaultValue = "1")
int pageNum,
@RequestParam(name = "pageSize",required = false,defaultValue = "10")
int pageSize){
return userService.findAllUser(pageNum,pageSize);
}
}
package com.example.demo.handle;
import com.example.demo.model.T_TXD_FWB;
import com.example.demo.model.T_TXD_FWBSTATUS;
import com.example.demo.service.T_TXD_FWB_Service;
import com.example.demo.util.Helper;
import com.example.demo.util.XML.XML2ENTITY;
import org.dom4j.Document;
import org.dom4j.DocumentHelper;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import javax.annotation.PostConstruct;
import java.math.BigDecimal;
import java.time.ZonedDateTime;
import java.util.Date;
import java.util.List;
import java.util.Map;
@Component
public class T_ETL_FWB_Handle {
protected static final Logger logger = LoggerFactory.getLogger(T_ETL_FWB_Handle.class);
@Autowired
protected T_TXD_FWB_Service fwb_service;
private static T_ETL_FWB_Handle fwb_handle;
@PostConstruct //通过@PostConstruct实现初始化bean之前进行的操作
public void init(){
fwb_handle = this;
fwb_handle.fwb_service = this.fwb_service;
}
public Boolean insertHandle (String xmlStr,BigDecimal messageBak_fid){
try{
Document doc = DocumentHelper.parseText(xmlStr);
Map<String, Object> map = XML2ENTITY.Dom2Map(doc);
T_TXD_FWB fwb= new T_TXD_FWB();
fwb.setMessageBakId(messageBak_fid);
// 头部解析
Map metamap = (Map) map.get("META");
String SEDR = (String) metamap.get("SNDR");
//报体解析入口
Map MasterConsignment = (Map) map.get("MasterConsignment");
fwb.setId(MasterConsignment.get("ID").toString());
fwb.setTypecode(MasterConsignment.get("TypeCode").toString());
fwb.setNilcarriagevaluecarriage(MasterConsignment.get("NilCarriageValueIndicator").toString());
fwb.setDeclaredvalue(Helper.getBigDecimal(MasterConsignment.get("DeclaredValueForCarriageAmount")));
//发货人节点
Map consiger = (Map) MasterConsignment.get("ConsignorParty");
fwb.setCrpPrimaryid(consiger.get("PrimaryID").toString());
fwb.setCrpName(consiger.get("Name").toString());
fwb.setCrpAccountid(consiger.get("AccountID").toString());
fwb.setPsaStreetname(((Map)consiger.get("PostalStructuredAddress")).get("StreetName").toString()); //这个是不是发货人节点名称 库里面没字段注释 插入的时候要核实
fwb.setPsaCityname(((Map)consiger.get("PostalStructuredAddress")).get("CityName").toString());
fwb.setPsaCountryid(((Map)consiger.get("PostalStructuredAddress")).get("CountryID").toString());
fwb.setPsaSpecifiedaddress(((Map)consiger.get("PostalStructuredAddress")).get("SpecifiedAddressLocation").toString());
//收货人节点
//航班节点,表中的航班字段在哪里没找到
Map flight = (Map) MasterConsignment.get("SpecifiedLogisticsTransportMovement");
String flightNo = flight.get("ID").toString();
String flightDevTime = ((Map)flight.get("DepartureEvent")).get("ScheduledOccurrenceDateTime").toString();
ZonedDateTime depZoneTime = ZonedDateTime.parse(flightDevTime);
Date flightDate = Date.from(depZoneTime.toInstant()); //这个是入库航班日期格式
//货物节点
//插入主数据表
int ok = fwb_handle.fwb_service.insert(fwb);
//处理重复循环节点
//重复的AssociatedParty节点
Object obj_AssociatedParty = MasterConsignment.get("AssociatedParty");
if (obj_AssociatedParty.getClass().getName().equals("java.util.ArrayList")){//多个AssociatedParty
List<Map> list_AssociatedParty = (List<Map>) MasterConsignment.get("AssociatedParty");
for (Map AssociatedParty : list_AssociatedParty){
T_ETL_FWB_PartyHandle partyHandle = new T_ETL_FWB_PartyHandle();
partyHandle.insertHandle(AssociatedParty,messageBak_fid);
}
}else if (obj_AssociatedParty.getClass().getName().equals("java.util.HashMap")){
Map map_AssociatedParty = (Map) MasterConsignment.get("AssociatedParty");
T_ETL_FWB_PartyHandle partyHandle = new T_ETL_FWB_PartyHandle();
partyHandle.insertHandle(map_AssociatedParty,messageBak_fid);
}
//重复的ReportedStatus节点
Object obj_ReportedStatus = MasterConsignment.get("ReportedStatus");
if (obj_ReportedStatus.getClass().getName().equals("java.util.ArrayList")){//多个ReportedStatus
List<Map> list_ReportedStatus = (List<Map>) MasterConsignment.get("ReportedStatus");
for (Map map_ReportedStatus : list_ReportedStatus){
T_ETL_FWB_StatusHandle statusHandle = new T_ETL_FWB_StatusHandle();
statusHandle.insertHandle(map_ReportedStatus,messageBak_fid);
}
}else if (obj_ReportedStatus.getClass().getName().equals("java.util.HashMap")){
Map map_ReportedStatus = (Map) MasterConsignment.get("ReportedStatus");
T_ETL_FWB_StatusHandle statusHandle = new T_ETL_FWB_StatusHandle();
statusHandle.insertHandle(map_ReportedStatus,messageBak_fid);
}
System.out.println(map.toString());
}catch (Exception e){
logger.info("报文解析异常"+e.toString()+"\n报文内容");
return false;
}
return true;
}
}
... ...
package com.example.demo.handle;
import com.example.demo.model.T_TXD_FWBPARTY;
import com.example.demo.service.T_TXD_FWBPARTY_Service;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import javax.annotation.PostConstruct;
import java.math.BigDecimal;
import java.util.Map;
@Component
public class T_ETL_FWB_PartyHandle {
protected static final Logger logger = LoggerFactory.getLogger(T_ETL_FWB_PartyHandle.class);
@Autowired
protected T_TXD_FWBPARTY_Service fwbparty_service;
private static T_ETL_FWB_PartyHandle fwb_partyHandle;
@PostConstruct //通过@PostConstruct实现初始化bean之前进行的操作
public void init(){
fwb_partyHandle = this;
fwb_partyHandle.fwbparty_service = this.fwbparty_service;
}
public Boolean insertHandle(Map AssociatedPartyMap, BigDecimal messageBak_Fid) throws Exception{
try{
T_TXD_FWBPARTY assParty = new T_TXD_FWBPARTY();
assParty.setTxdFwbId(messageBak_Fid);
assParty.setAccountid(AssociatedPartyMap.get("AccountID").toString());
assParty.setName(AssociatedPartyMap.get("Name").toString());
assParty.setPrimaryid(AssociatedPartyMap.get("PrimaryID").toString());
assParty.setCityname(((Map)AssociatedPartyMap.get("PostalStructuredAddress")).get("CityName").toString());
assParty.setCountryid(((Map)AssociatedPartyMap.get("PostalStructuredAddress")).get("CountryID").toString());
assParty.setSpecifiedaddresslocation(((Map)AssociatedPartyMap.get("PostalStructuredAddress")).get("SpecifiedAddressLocation").toString());
assParty.setSpecifiedcargoagentlocation(AssociatedPartyMap.get("SpecifiedCargoAgentLocation").toString());
assParty.setDefinedtradecontact(AssociatedPartyMap.get("DefinedTradeContact").toString());
int resoult=fwb_partyHandle.fwbparty_service.insert(assParty);
}catch (Exception e){
logger.info(messageBak_Fid+"-AssociatedParty入库异常-"+e.toString()+"MAP内容:\n"+AssociatedPartyMap.toString());
return false;
}
return true;
}
}
... ...
package com.example.demo.handle;
import com.example.demo.model.T_TXD_FWBSTATUS;
import com.example.demo.service.T_TXD_FWBPARTY_Service;
import com.example.demo.service.T_TXD_FWBSTATUS_Service;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import javax.annotation.PostConstruct;
import java.math.BigDecimal;
import java.time.ZonedDateTime;
import java.util.Date;
import java.util.Map;
@Component
public class T_ETL_FWB_StatusHandle {
protected static final Logger logger = LoggerFactory.getLogger(T_ETL_FWB_PartyHandle.class);
@Autowired
protected T_TXD_FWBSTATUS_Service fwbstatus_service;
private static T_ETL_FWB_StatusHandle fwb_statusHandle;
@PostConstruct //通过@PostConstruct实现初始化bean之前进行的操作
public void init(){
fwb_statusHandle = this;
fwb_statusHandle.fwbstatus_service = this.fwbstatus_service;
}
public Boolean insertHandle(Map statusMap, BigDecimal messageBak_Fid) throws Exception{
try{
T_TXD_FWBSTATUS fwbstatus = new T_TXD_FWBSTATUS();
fwbstatus.setTxdFwbId(messageBak_Fid);
fwbstatus.setReasoncode(statusMap.get("ReasonCode").toString());
fwbstatus.setDatetimetypecode(((Map)statusMap.get("EventTime")).get("DateTimeTypeCode").toString());
String occDateStr =((Map)statusMap.get("EventTime")).get("OccurrenceDateTime").toString();
ZonedDateTime depZoneTime = ZonedDateTime.parse(occDateStr);
Date OccurrenceDateTime = Date.from(depZoneTime.toInstant()); //这个是入库航班日期格式
fwbstatus.setOccurrencedatetime(OccurrenceDateTime);
fwbstatus.setId(((Map)statusMap.get("SpecifiedLocation")).get("ID").toString());
int resoult = fwb_statusHandle.fwbstatus_service.insert(fwbstatus);
}catch (Exception e){
logger.info(messageBak_Fid+"-AssociatedParty入库异常-"+e.toString()+"MAP内容:\n"+statusMap.toString());
return false;
}
return true;
}
}
... ...
package com.example.demo.mapper;
import com.example.demo.model.FWBAssociatedParty;
public interface FWBAssociatedPartyMapper {
int deleteByPrimaryKey(Integer id);
int insert(FWBAssociatedParty record);
int insertSelective(FWBAssociatedParty record);
FWBAssociatedParty selectByPrimaryKey(Integer id);
int updateByPrimaryKeySelective(FWBAssociatedParty record);
int updateByPrimaryKey(FWBAssociatedParty record);
}
\ No newline at end of file
package com.example.demo.mapper;
import com.example.demo.model.T_ETL_MESSAGE;
import org.apache.ibatis.annotations.Mapper;
import java.math.BigDecimal;
import java.util.List;
public interface T_ETL_MESSAGEMapper {
int deleteByPrimaryKey(BigDecimal fid);
int insert(T_ETL_MESSAGE record);
int insertSelective(T_ETL_MESSAGE record);
T_ETL_MESSAGE selectByPrimaryKey(BigDecimal fid);
int updateByPrimaryKeySelective(T_ETL_MESSAGE record);
int updateByPrimaryKeyWithBLOBs(T_ETL_MESSAGE record);
int updateByPrimaryKey(T_ETL_MESSAGE record);
List<T_ETL_MESSAGE> selectFWB();
}
\ No newline at end of file
... ...
package com.example.demo.mapper;
import com.example.demo.model.T_TXD_FWB;
import java.math.BigDecimal;
public interface T_TXD_FWBMapper {
int deleteByPrimaryKey(BigDecimal fid);
int insert(T_TXD_FWB record);
int insertSelective(T_TXD_FWB record);
T_TXD_FWB selectByPrimaryKey(BigDecimal fid);
int updateByPrimaryKeySelective(T_TXD_FWB record);
int updateByPrimaryKey(T_TXD_FWB record);
}
\ No newline at end of file
... ...
package com.example.demo.mapper;
import com.example.demo.model.T_TXD_FWBPARTY;
import java.math.BigDecimal;
public interface T_TXD_FWBPARTYMapper {
int deleteByPrimaryKey(BigDecimal fid);
int insert(T_TXD_FWBPARTY record);
int insertSelective(T_TXD_FWBPARTY record);
T_TXD_FWBPARTY selectByPrimaryKey(BigDecimal fid);
int updateByPrimaryKeySelective(T_TXD_FWBPARTY record);
int updateByPrimaryKey(T_TXD_FWBPARTY record);
}
\ No newline at end of file
... ...
package com.example.demo.mapper;
import com.example.demo.model.T_TXD_FWBSTATUS;
import java.math.BigDecimal;
public interface T_TXD_FWBSTATUSMapper {
int deleteByPrimaryKey(BigDecimal fid);
int insert(T_TXD_FWBSTATUS record);
int insertSelective(T_TXD_FWBSTATUS record);
T_TXD_FWBSTATUS selectByPrimaryKey(BigDecimal fid);
int updateByPrimaryKeySelective(T_TXD_FWBSTATUS record);
int updateByPrimaryKey(T_TXD_FWBSTATUS record);
}
\ No newline at end of file
... ...
package com.example.demo.mapper;
import com.example.demo.model.User;
import java.util.List;
public interface UserMapper {
int deleteByPrimaryKey(Integer userId);
int insert(User record);
int insertSelective(User record);
User selectByPrimaryKey(Integer userId);
int updateByPrimaryKeySelective(User record);
int updateByPrimaryKey(User record);
List<User> selectUsers();
}
\ No newline at end of file
package com.example.demo.model;
import java.math.BigDecimal;
import java.util.Date;
public class T_ETL_MESSAGE {
private BigDecimal fid;
private String oper;
private Date sntm;
private String sndr;
private String rcvr;
private String seqn;
private Date ddtm;
private String type;
private String styp;
private String transid;
private Object remark;
private Date outtm;
private BigDecimal outflag;
private Date etltim;
private BigDecimal etlflag;
private Date errtm;
private BigDecimal errflag;
private Object errlog;
private String appid;
private String content;
public BigDecimal getFid() {
return fid;
}
public void setFid(BigDecimal fid) {
this.fid = fid;
}
public String getOper() {
return oper;
}
public void setOper(String oper) {
this.oper = oper == null ? null : oper.trim();
}
public Date getSntm() {
return sntm;
}
public void setSntm(Date sntm) {
this.sntm = sntm;
}
public String getSndr() {
return sndr;
}
public void setSndr(String sndr) {
this.sndr = sndr == null ? null : sndr.trim();
}
public String getRcvr() {
return rcvr;
}
public void setRcvr(String rcvr) {
this.rcvr = rcvr == null ? null : rcvr.trim();
}
public String getSeqn() {
return seqn;
}
public void setSeqn(String seqn) {
this.seqn = seqn == null ? null : seqn.trim();
}
public Date getDdtm() {
return ddtm;
}
public void setDdtm(Date ddtm) {
this.ddtm = ddtm;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type == null ? null : type.trim();
}
public String getStyp() {
return styp;
}
public void setStyp(String styp) {
this.styp = styp == null ? null : styp.trim();
}
public String getTransid() {
return transid;
}
public void setTransid(String transid) {
this.transid = transid == null ? null : transid.trim();
}
public Object getRemark() {
return remark;
}
public void setRemark(Object remark) {
this.remark = remark;
}
public Date getOuttm() {
return outtm;
}
public void setOuttm(Date outtm) {
this.outtm = outtm;
}
public BigDecimal getOutflag() {
return outflag;
}
public void setOutflag(BigDecimal outflag) {
this.outflag = outflag;
}
public Date getEtltim() {
return etltim;
}
public void setEtltim(Date etltim) {
this.etltim = etltim;
}
public BigDecimal getEtlflag() {
return etlflag;
}
public void setEtlflag(BigDecimal etlflag) {
this.etlflag = etlflag;
}
public Date getErrtm() {
return errtm;
}
public void setErrtm(Date errtm) {
this.errtm = errtm;
}
public BigDecimal getErrflag() {
return errflag;
}
public void setErrflag(BigDecimal errflag) {
this.errflag = errflag;
}
public Object getErrlog() {
return errlog;
}
public void setErrlog(Object errlog) {
this.errlog = errlog;
}
public String getAppid() {
return appid;
}
public void setAppid(String appid) {
this.appid = appid == null ? null : appid.trim();
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content == null ? null : content.trim();
}
}
\ No newline at end of file
... ...
package com.example.demo.model;
import java.math.BigDecimal;
import java.util.Date;
public class T_TXD_FWB {
private BigDecimal fid;
private String id;
private String typecode;
private String nilcarriagevaluecarriage;
private BigDecimal declaredvalue;
private String nilcustomsvaluecustoms;
private String declaredvaluecustoms;
private String nilinsurancevalue;
private String insurancevalue;
private String totalchargeprepaid;
private BigDecimal weighttotalchargeamount;
private BigDecimal valuationtotalcharge;
private String totaldisbursementprepaid;
private BigDecimal totalprepaidcharge;
private BigDecimal totalcollectcharge;
private BigDecimal destinationcurrency;
private BigDecimal includedtaregrossweight;
private BigDecimal netweightmeasure;
private BigDecimal grossvolumemeasure;
private BigDecimal totalchargeableweight;
private BigDecimal consignmentitemquantity;
private BigDecimal totalpiecequantity;
private BigDecimal totalloadedpackage;
private String packageinfo;
private String freightratetypecode;
private String crpPrimaryid;
private String crpName;
private String crpAccountid;
private String psaStreetname;
private String psaCityname;
private String psaCountryid;
private String psaSpecifiedaddress;
private String dtcCompletenumber;
private String cepPrimaryid;
private String cepName;
private String cepAccountid;
private String psStreetname;
private String psCityname;
private String psCountryid;
private String psSpecifiedaddress;
private String dtCompletenumber;
private String ffpName;
private String ffpAccountid;
private String ffpCityname;
private String ffpCountryid;
private String ffpSpecifiedaddress;
private String olId;
private String fdId;
private String slStagecode;
private String slModecode;
private String slMode;
private String slId;
private String slSequencenumeric;
private String slUsedlogisticstransport;
private String oaId;
private Date deDatetime;
private String odId;
private String atcSourcecurrencycode;
private String atcTargetcurrencycode;
private String atcMarketid;
private BigDecimal atcConversionrate;
private String alaId;
private String alaReason;
private BigDecimal alaActualamount;
private String alaPartytypecode;
private Date scaActualdatetime;
private String scaSignatory;
private String ilName;
private String imciSequencenumeric;
private String imciTypecode;
private BigDecimal imciGrossweightmeasure;
private BigDecimal imciGrossvolumemeasure;
private BigDecimal imciPiecequantity;
private BigDecimal imciTareweightmeasure;
private String nitIdentification;
private String aultOperatingparty;
private BigDecimal tlpItemquantity;
private String lsdDescription;
private BigDecimal lsdWidthmeasure;
private BigDecimal lsdLengthmeasure;
private BigDecimal lsdHeightmeasure;
private String afrCategorycode;
private String afrCommodityitemid;
private BigDecimal afrChargeableweightmeasure;
private BigDecimal afrAppliedrate;
private BigDecimal afrAppliedamoun;
private BigDecimal messageBakId;
public BigDecimal getFid() {
return fid;
}
public void setFid(BigDecimal fid) {
this.fid = fid;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id == null ? null : id.trim();
}
public String getTypecode() {
return typecode;
}
public void setTypecode(String typecode) {
this.typecode = typecode == null ? null : typecode.trim();
}
public String getNilcarriagevaluecarriage() {
return nilcarriagevaluecarriage;
}
public void setNilcarriagevaluecarriage(String nilcarriagevaluecarriage) {
this.nilcarriagevaluecarriage = nilcarriagevaluecarriage == null ? null : nilcarriagevaluecarriage.trim();
}
public BigDecimal getDeclaredvalue() {
return declaredvalue;
}
public void setDeclaredvalue(BigDecimal declaredvalue) {
this.declaredvalue = declaredvalue;
}
public String getNilcustomsvaluecustoms() {
return nilcustomsvaluecustoms;
}
public void setNilcustomsvaluecustoms(String nilcustomsvaluecustoms) {
this.nilcustomsvaluecustoms = nilcustomsvaluecustoms == null ? null : nilcustomsvaluecustoms.trim();
}
public String getDeclaredvaluecustoms() {
return declaredvaluecustoms;
}
public void setDeclaredvaluecustoms(String declaredvaluecustoms) {
this.declaredvaluecustoms = declaredvaluecustoms == null ? null : declaredvaluecustoms.trim();
}
public String getNilinsurancevalue() {
return nilinsurancevalue;
}
public void setNilinsurancevalue(String nilinsurancevalue) {
this.nilinsurancevalue = nilinsurancevalue == null ? null : nilinsurancevalue.trim();
}
public String getInsurancevalue() {
return insurancevalue;
}
public void setInsurancevalue(String insurancevalue) {
this.insurancevalue = insurancevalue == null ? null : insurancevalue.trim();
}
public String getTotalchargeprepaid() {
return totalchargeprepaid;
}
public void setTotalchargeprepaid(String totalchargeprepaid) {
this.totalchargeprepaid = totalchargeprepaid == null ? null : totalchargeprepaid.trim();
}
public BigDecimal getWeighttotalchargeamount() {
return weighttotalchargeamount;
}
public void setWeighttotalchargeamount(BigDecimal weighttotalchargeamount) {
this.weighttotalchargeamount = weighttotalchargeamount;
}
public BigDecimal getValuationtotalcharge() {
return valuationtotalcharge;
}
public void setValuationtotalcharge(BigDecimal valuationtotalcharge) {
this.valuationtotalcharge = valuationtotalcharge;
}
public String getTotaldisbursementprepaid() {
return totaldisbursementprepaid;
}
public void setTotaldisbursementprepaid(String totaldisbursementprepaid) {
this.totaldisbursementprepaid = totaldisbursementprepaid == null ? null : totaldisbursementprepaid.trim();
}
public BigDecimal getTotalprepaidcharge() {
return totalprepaidcharge;
}
public void setTotalprepaidcharge(BigDecimal totalprepaidcharge) {
this.totalprepaidcharge = totalprepaidcharge;
}
public BigDecimal getTotalcollectcharge() {
return totalcollectcharge;
}
public void setTotalcollectcharge(BigDecimal totalcollectcharge) {
this.totalcollectcharge = totalcollectcharge;
}
public BigDecimal getDestinationcurrency() {
return destinationcurrency;
}
public void setDestinationcurrency(BigDecimal destinationcurrency) {
this.destinationcurrency = destinationcurrency;
}
public BigDecimal getIncludedtaregrossweight() {
return includedtaregrossweight;
}
public void setIncludedtaregrossweight(BigDecimal includedtaregrossweight) {
this.includedtaregrossweight = includedtaregrossweight;
}
public BigDecimal getNetweightmeasure() {
return netweightmeasure;
}
public void setNetweightmeasure(BigDecimal netweightmeasure) {
this.netweightmeasure = netweightmeasure;
}
public BigDecimal getGrossvolumemeasure() {
return grossvolumemeasure;
}
public void setGrossvolumemeasure(BigDecimal grossvolumemeasure) {
this.grossvolumemeasure = grossvolumemeasure;
}
public BigDecimal getTotalchargeableweight() {
return totalchargeableweight;
}
public void setTotalchargeableweight(BigDecimal totalchargeableweight) {
this.totalchargeableweight = totalchargeableweight;
}
public BigDecimal getConsignmentitemquantity() {
return consignmentitemquantity;
}
public void setConsignmentitemquantity(BigDecimal consignmentitemquantity) {
this.consignmentitemquantity = consignmentitemquantity;
}
public BigDecimal getTotalpiecequantity() {
return totalpiecequantity;
}
public void setTotalpiecequantity(BigDecimal totalpiecequantity) {
this.totalpiecequantity = totalpiecequantity;
}
public BigDecimal getTotalloadedpackage() {
return totalloadedpackage;
}
public void setTotalloadedpackage(BigDecimal totalloadedpackage) {
this.totalloadedpackage = totalloadedpackage;
}
public String getPackageinfo() {
return packageinfo;
}
public void setPackageinfo(String packageinfo) {
this.packageinfo = packageinfo == null ? null : packageinfo.trim();
}
public String getFreightratetypecode() {
return freightratetypecode;
}
public void setFreightratetypecode(String freightratetypecode) {
this.freightratetypecode = freightratetypecode == null ? null : freightratetypecode.trim();
}
public String getCrpPrimaryid() {
return crpPrimaryid;
}
public void setCrpPrimaryid(String crpPrimaryid) {
this.crpPrimaryid = crpPrimaryid == null ? null : crpPrimaryid.trim();
}
public String getCrpName() {
return crpName;
}
public void setCrpName(String crpName) {
this.crpName = crpName == null ? null : crpName.trim();
}
public String getCrpAccountid() {
return crpAccountid;
}
public void setCrpAccountid(String crpAccountid) {
this.crpAccountid = crpAccountid == null ? null : crpAccountid.trim();
}
public String getPsaStreetname() {
return psaStreetname;
}
public void setPsaStreetname(String psaStreetname) {
this.psaStreetname = psaStreetname == null ? null : psaStreetname.trim();
}
public String getPsaCityname() {
return psaCityname;
}
public void setPsaCityname(String psaCityname) {
this.psaCityname = psaCityname == null ? null : psaCityname.trim();
}
public String getPsaCountryid() {
return psaCountryid;
}
public void setPsaCountryid(String psaCountryid) {
this.psaCountryid = psaCountryid == null ? null : psaCountryid.trim();
}
public String getPsaSpecifiedaddress() {
return psaSpecifiedaddress;
}
public void setPsaSpecifiedaddress(String psaSpecifiedaddress) {
this.psaSpecifiedaddress = psaSpecifiedaddress == null ? null : psaSpecifiedaddress.trim();
}
public String getDtcCompletenumber() {
return dtcCompletenumber;
}
public void setDtcCompletenumber(String dtcCompletenumber) {
this.dtcCompletenumber = dtcCompletenumber == null ? null : dtcCompletenumber.trim();
}
public String getCepPrimaryid() {
return cepPrimaryid;
}
public void setCepPrimaryid(String cepPrimaryid) {
this.cepPrimaryid = cepPrimaryid == null ? null : cepPrimaryid.trim();
}
public String getCepName() {
return cepName;
}
public void setCepName(String cepName) {
this.cepName = cepName == null ? null : cepName.trim();
}
public String getCepAccountid() {
return cepAccountid;
}
public void setCepAccountid(String cepAccountid) {
this.cepAccountid = cepAccountid == null ? null : cepAccountid.trim();
}
public String getPsStreetname() {
return psStreetname;
}
public void setPsStreetname(String psStreetname) {
this.psStreetname = psStreetname == null ? null : psStreetname.trim();
}
public String getPsCityname() {
return psCityname;
}
public void setPsCityname(String psCityname) {
this.psCityname = psCityname == null ? null : psCityname.trim();
}
public String getPsCountryid() {
return psCountryid;
}
public void setPsCountryid(String psCountryid) {
this.psCountryid = psCountryid == null ? null : psCountryid.trim();
}
public String getPsSpecifiedaddress() {
return psSpecifiedaddress;
}
public void setPsSpecifiedaddress(String psSpecifiedaddress) {
this.psSpecifiedaddress = psSpecifiedaddress == null ? null : psSpecifiedaddress.trim();
}
public String getDtCompletenumber() {
return dtCompletenumber;
}
public void setDtCompletenumber(String dtCompletenumber) {
this.dtCompletenumber = dtCompletenumber == null ? null : dtCompletenumber.trim();
}
public String getFfpName() {
return ffpName;
}
public void setFfpName(String ffpName) {
this.ffpName = ffpName == null ? null : ffpName.trim();
}
public String getFfpAccountid() {
return ffpAccountid;
}
public void setFfpAccountid(String ffpAccountid) {
this.ffpAccountid = ffpAccountid == null ? null : ffpAccountid.trim();
}
public String getFfpCityname() {
return ffpCityname;
}
public void setFfpCityname(String ffpCityname) {
this.ffpCityname = ffpCityname == null ? null : ffpCityname.trim();
}
public String getFfpCountryid() {
return ffpCountryid;
}
public void setFfpCountryid(String ffpCountryid) {
this.ffpCountryid = ffpCountryid == null ? null : ffpCountryid.trim();
}
public String getFfpSpecifiedaddress() {
return ffpSpecifiedaddress;
}
public void setFfpSpecifiedaddress(String ffpSpecifiedaddress) {
this.ffpSpecifiedaddress = ffpSpecifiedaddress == null ? null : ffpSpecifiedaddress.trim();
}
public String getOlId() {
return olId;
}
public void setOlId(String olId) {
this.olId = olId == null ? null : olId.trim();
}
public String getFdId() {
return fdId;
}
public void setFdId(String fdId) {
this.fdId = fdId == null ? null : fdId.trim();
}
public String getSlStagecode() {
return slStagecode;
}
public void setSlStagecode(String slStagecode) {
this.slStagecode = slStagecode == null ? null : slStagecode.trim();
}
public String getSlModecode() {
return slModecode;
}
public void setSlModecode(String slModecode) {
this.slModecode = slModecode == null ? null : slModecode.trim();
}
public String getSlMode() {
return slMode;
}
public void setSlMode(String slMode) {
this.slMode = slMode == null ? null : slMode.trim();
}
public String getSlId() {
return slId;
}
public void setSlId(String slId) {
this.slId = slId == null ? null : slId.trim();
}
public String getSlSequencenumeric() {
return slSequencenumeric;
}
public void setSlSequencenumeric(String slSequencenumeric) {
this.slSequencenumeric = slSequencenumeric == null ? null : slSequencenumeric.trim();
}
public String getSlUsedlogisticstransport() {
return slUsedlogisticstransport;
}
public void setSlUsedlogisticstransport(String slUsedlogisticstransport) {
this.slUsedlogisticstransport = slUsedlogisticstransport == null ? null : slUsedlogisticstransport.trim();
}
public String getOaId() {
return oaId;
}
public void setOaId(String oaId) {
this.oaId = oaId == null ? null : oaId.trim();
}
public Date getDeDatetime() {
return deDatetime;
}
public void setDeDatetime(Date deDatetime) {
this.deDatetime = deDatetime;
}
public String getOdId() {
return odId;
}
public void setOdId(String odId) {
this.odId = odId == null ? null : odId.trim();
}
public String getAtcSourcecurrencycode() {
return atcSourcecurrencycode;
}
public void setAtcSourcecurrencycode(String atcSourcecurrencycode) {
this.atcSourcecurrencycode = atcSourcecurrencycode == null ? null : atcSourcecurrencycode.trim();
}
public String getAtcTargetcurrencycode() {
return atcTargetcurrencycode;
}
public void setAtcTargetcurrencycode(String atcTargetcurrencycode) {
this.atcTargetcurrencycode = atcTargetcurrencycode == null ? null : atcTargetcurrencycode.trim();
}
public String getAtcMarketid() {
return atcMarketid;
}
public void setAtcMarketid(String atcMarketid) {
this.atcMarketid = atcMarketid == null ? null : atcMarketid.trim();
}
public BigDecimal getAtcConversionrate() {
return atcConversionrate;
}
public void setAtcConversionrate(BigDecimal atcConversionrate) {
this.atcConversionrate = atcConversionrate;
}
public String getAlaId() {
return alaId;
}
public void setAlaId(String alaId) {
this.alaId = alaId == null ? null : alaId.trim();
}
public String getAlaReason() {
return alaReason;
}
public void setAlaReason(String alaReason) {
this.alaReason = alaReason == null ? null : alaReason.trim();
}
public BigDecimal getAlaActualamount() {
return alaActualamount;
}
public void setAlaActualamount(BigDecimal alaActualamount) {
this.alaActualamount = alaActualamount;
}
public String getAlaPartytypecode() {
return alaPartytypecode;
}
public void setAlaPartytypecode(String alaPartytypecode) {
this.alaPartytypecode = alaPartytypecode == null ? null : alaPartytypecode.trim();
}
public Date getScaActualdatetime() {
return scaActualdatetime;
}
public void setScaActualdatetime(Date scaActualdatetime) {
this.scaActualdatetime = scaActualdatetime;
}
public String getScaSignatory() {
return scaSignatory;
}
public void setScaSignatory(String scaSignatory) {
this.scaSignatory = scaSignatory == null ? null : scaSignatory.trim();
}
public String getIlName() {
return ilName;
}
public void setIlName(String ilName) {
this.ilName = ilName == null ? null : ilName.trim();
}
public String getImciSequencenumeric() {
return imciSequencenumeric;
}
public void setImciSequencenumeric(String imciSequencenumeric) {
this.imciSequencenumeric = imciSequencenumeric == null ? null : imciSequencenumeric.trim();
}
public String getImciTypecode() {
return imciTypecode;
}
public void setImciTypecode(String imciTypecode) {
this.imciTypecode = imciTypecode == null ? null : imciTypecode.trim();
}
public BigDecimal getImciGrossweightmeasure() {
return imciGrossweightmeasure;
}
public void setImciGrossweightmeasure(BigDecimal imciGrossweightmeasure) {
this.imciGrossweightmeasure = imciGrossweightmeasure;
}
public BigDecimal getImciGrossvolumemeasure() {
return imciGrossvolumemeasure;
}
public void setImciGrossvolumemeasure(BigDecimal imciGrossvolumemeasure) {
this.imciGrossvolumemeasure = imciGrossvolumemeasure;
}
public BigDecimal getImciPiecequantity() {
return imciPiecequantity;
}
public void setImciPiecequantity(BigDecimal imciPiecequantity) {
this.imciPiecequantity = imciPiecequantity;
}
public BigDecimal getImciTareweightmeasure() {
return imciTareweightmeasure;
}
public void setImciTareweightmeasure(BigDecimal imciTareweightmeasure) {
this.imciTareweightmeasure = imciTareweightmeasure;
}
public String getNitIdentification() {
return nitIdentification;
}
public void setNitIdentification(String nitIdentification) {
this.nitIdentification = nitIdentification == null ? null : nitIdentification.trim();
}
public String getAultOperatingparty() {
return aultOperatingparty;
}
public void setAultOperatingparty(String aultOperatingparty) {
this.aultOperatingparty = aultOperatingparty == null ? null : aultOperatingparty.trim();
}
public BigDecimal getTlpItemquantity() {
return tlpItemquantity;
}
public void setTlpItemquantity(BigDecimal tlpItemquantity) {
this.tlpItemquantity = tlpItemquantity;
}
public String getLsdDescription() {
return lsdDescription;
}
public void setLsdDescription(String lsdDescription) {
this.lsdDescription = lsdDescription == null ? null : lsdDescription.trim();
}
public BigDecimal getLsdWidthmeasure() {
return lsdWidthmeasure;
}
public void setLsdWidthmeasure(BigDecimal lsdWidthmeasure) {
this.lsdWidthmeasure = lsdWidthmeasure;
}
public BigDecimal getLsdLengthmeasure() {
return lsdLengthmeasure;
}
public void setLsdLengthmeasure(BigDecimal lsdLengthmeasure) {
this.lsdLengthmeasure = lsdLengthmeasure;
}
public BigDecimal getLsdHeightmeasure() {
return lsdHeightmeasure;
}
public void setLsdHeightmeasure(BigDecimal lsdHeightmeasure) {
this.lsdHeightmeasure = lsdHeightmeasure;
}
public String getAfrCategorycode() {
return afrCategorycode;
}
public void setAfrCategorycode(String afrCategorycode) {
this.afrCategorycode = afrCategorycode == null ? null : afrCategorycode.trim();
}
public String getAfrCommodityitemid() {
return afrCommodityitemid;
}
public void setAfrCommodityitemid(String afrCommodityitemid) {
this.afrCommodityitemid = afrCommodityitemid == null ? null : afrCommodityitemid.trim();
}
public BigDecimal getAfrChargeableweightmeasure() {
return afrChargeableweightmeasure;
}
public void setAfrChargeableweightmeasure(BigDecimal afrChargeableweightmeasure) {
this.afrChargeableweightmeasure = afrChargeableweightmeasure;
}
public BigDecimal getAfrAppliedrate() {
return afrAppliedrate;
}
public void setAfrAppliedrate(BigDecimal afrAppliedrate) {
this.afrAppliedrate = afrAppliedrate;
}
public BigDecimal getAfrAppliedamoun() {
return afrAppliedamoun;
}
public void setAfrAppliedamoun(BigDecimal afrAppliedamoun) {
this.afrAppliedamoun = afrAppliedamoun;
}
public BigDecimal getMessageBakId() {
return messageBakId;
}
public void setMessageBakId(BigDecimal messageBakId) {
this.messageBakId = messageBakId;
}
}
\ No newline at end of file
... ...
package com.example.demo.model;
import java.time.LocalDate;
import java.math.BigDecimal;
public class FWBAssociatedParty {
private Integer id;
public class T_TXD_FWBPARTY {
private BigDecimal fid;
private String primaryid;
... ... @@ -20,18 +19,20 @@ public class FWBAssociatedParty {
private String countryid;
private String awbnumber;
private String specifiedaddresslocation;
private String specifiedcargoagentlocation;
private LocalDate flightdate;
private String definedtradecontact;
private String flightnumber;
private BigDecimal txdFwbId;
public Integer getId() {
return id;
public BigDecimal getFid() {
return fid;
}
public void setId(Integer id) {
this.id = id;
public void setFid(BigDecimal fid) {
this.fid = fid;
}
public String getPrimaryid() {
... ... @@ -90,27 +91,35 @@ public class FWBAssociatedParty {
this.countryid = countryid == null ? null : countryid.trim();
}
public String getAwbnumber() {
return awbnumber;
public String getSpecifiedaddresslocation() {
return specifiedaddresslocation;
}
public void setSpecifiedaddresslocation(String specifiedaddresslocation) {
this.specifiedaddresslocation = specifiedaddresslocation == null ? null : specifiedaddresslocation.trim();
}
public String getSpecifiedcargoagentlocation() {
return specifiedcargoagentlocation;
}
public void setAwbnumber(String awbnumber) {
this.awbnumber = awbnumber == null ? null : awbnumber.trim();
public void setSpecifiedcargoagentlocation(String specifiedcargoagentlocation) {
this.specifiedcargoagentlocation = specifiedcargoagentlocation == null ? null : specifiedcargoagentlocation.trim();
}
public LocalDate getFlightdate() {
return flightdate;
public String getDefinedtradecontact() {
return definedtradecontact;
}
public void setFlightdate(LocalDate flightdate) {
this.flightdate = flightdate;
public void setDefinedtradecontact(String definedtradecontact) {
this.definedtradecontact = definedtradecontact == null ? null : definedtradecontact.trim();
}
public String getFlightnumber() {
return flightnumber;
public BigDecimal getTxdFwbId() {
return txdFwbId;
}
public void setFlightnumber(String flightnumber) {
this.flightnumber = flightnumber == null ? null : flightnumber.trim();
public void setTxdFwbId(BigDecimal txdFwbId) {
this.txdFwbId = txdFwbId;
}
}
\ No newline at end of file
... ...
package com.example.demo.model;
import java.math.BigDecimal;
import java.util.Date;
public class T_TXD_FWBSTATUS {
private BigDecimal fid;
private String reasoncode;
private Date occurrencedatetime;
private String datetimetypecode;
private String id;
private BigDecimal txdFwbId;
public BigDecimal getFid() {
return fid;
}
public void setFid(BigDecimal fid) {
this.fid = fid;
}
public String getReasoncode() {
return reasoncode;
}
public void setReasoncode(String reasoncode) {
this.reasoncode = reasoncode == null ? null : reasoncode.trim();
}
public Date getOccurrencedatetime() {
return occurrencedatetime;
}
public void setOccurrencedatetime(Date occurrencedatetime) {
this.occurrencedatetime = occurrencedatetime;
}
public String getDatetimetypecode() {
return datetimetypecode;
}
public void setDatetimetypecode(String datetimetypecode) {
this.datetimetypecode = datetimetypecode == null ? null : datetimetypecode.trim();
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id == null ? null : id.trim();
}
public BigDecimal getTxdFwbId() {
return txdFwbId;
}
public void setTxdFwbId(BigDecimal txdFwbId) {
this.txdFwbId = txdFwbId;
}
}
\ No newline at end of file
... ...
package com.example.demo.scheduled;
import com.example.demo.model.FWBAssociatedParty;
import com.example.demo.util.XML.XMLParse;
import com.example.demo.handle.T_ETL_FWB_Handle;
import com.example.demo.model.T_ETL_MESSAGE;
import com.example.demo.model.T_TXD_FWB;
import com.example.demo.model.T_TXD_FWBPARTY;
import com.example.demo.service.T_ETL_MESSAGE_Service;
import com.example.demo.service.T_TXD_FWB_Service;
import com.example.demo.util.XML.XML2ENTITY;
import org.dom4j.Document;
import org.dom4j.DocumentHelper;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.text.SimpleDateFormat;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.ZonedDateTime;
import java.time.format.DateTimeFormatter;
import java.time.format.FormatStyle;
import java.util.Date;
import java.util.List;
import java.util.Locale;
import java.util.Map;
/**
... ... @@ -26,1390 +31,30 @@ public class FWBTask {
private static final Logger logger = LoggerFactory.getLogger(FWBTask.class);
private static final SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
private static final String PFFM= "<MSG>\n" +
"\t<META>\n" +
"\t\t<SNDR>CFPS</SNDR>\n" +
"\t\t<RCVR/>\n" +
"\t\t<DDTM>20181117131437</DDTM>\n" +
"\t\t<TYPE>ICUSTOMS</TYPE>\n" +
"\t\t<STYP>PFFM</STYP>\n" +
"\t\t<SEQN>74321840</SEQN>\n" +
"\t</META>\n" +
"\t<LogisticsTransportManifest>\n" +
"\t\t<LogisticsTransportMovement>\n" +
"\t\t\t<StageCode>CV9765/NOV17</StageCode>\n" +
"\t\t\t<ModeCode>4</ModeCode>\n" +
"\t\t\t<Mode>Air transport</Mode>\n" +
"\t\t\t<ID>CV9765</ID>\n" +
"\t\t\t<SequenceNumeric>1</SequenceNumeric>\n" +
"\t\t\t<TotalGrossWeightMeasure unitCode=\"KGM\">52829</TotalGrossWeightMeasure>\n" +
"\t\t\t<TotalGrossVolumeMeasure unitCode=\"MTQ\">163.94</TotalGrossVolumeMeasure>\n" +
"\t\t\t<TotalPieceQuantity>2249</TotalPieceQuantity>\n" +
"\t\t\t<MasterResponsibleTransportPerson>\n" +
"\t\t\t\t<Name>CV</Name>\n" +
"\t\t\t</MasterResponsibleTransportPerson>\n" +
"\t\t\t<UsedLogisticsTransportMeans>\n" +
"\t\t\t\t<Name>LXVCM</Name>\n" +
"\t\t\t</UsedLogisticsTransportMeans>\n" +
"\t\t\t<DepartureEvent>\n" +
"\t\t\t\t<ScheduledDepartureOccurrenceDateTime>2018-11-17T09:15:00+08:00</ScheduledDepartureOccurrenceDateTime>\n" +
"\t\t\t\t<OccurrenceDepartureLocation>\n" +
"\t\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t\t\t<Name>ZHENGZHOU</Name>\n" +
"\t\t\t\t\t<TypeCode>Airport</TypeCode>\n" +
"\t\t\t\t</OccurrenceDepartureLocation>\n" +
"\t\t\t</DepartureEvent>\n" +
"\t\t\t<IncludedCustomsNote>\n" +
"\t\t\t\t<ContentCode>CD</ContentCode>\n" +
"\t\t\t\t<Content>P-CGOXH-ICUSTOMS0000</Content>\n" +
"\t\t\t\t<SubjectCode/>\n" +
"\t\t\t\t<CountryID/>\n" +
"\t\t\t</IncludedCustomsNote>\n" +
"\t\t</LogisticsTransportMovement>\n" +
"\t\t<ArrivalEvent>\n" +
"\t\t\t<ScheduledArrivalOccurrenceDateTime>2018-11-17T18:00:00+08:00</ScheduledArrivalOccurrenceDateTime>\n" +
"\t\t\t<ScheduledDepartureOccurrenceDateTime>2018-11-17T19:15:00+08:00</ScheduledDepartureOccurrenceDateTime>\n" +
"\t\t\t<OccurrenceArrivalLocation>\n" +
"\t\t\t\t<ID>ANC</ID>\n" +
"\t\t\t\t<Name>Anchorage</Name>\n" +
"\t\t\t\t<TypeCode>Airport</TypeCode>\n" +
"\t\t\t\t<FirstArrivalCountryID>US</FirstArrivalCountryID>\n" +
"\t\t\t</OccurrenceArrivalLocation>\n" +
"\t\t\t<AssociatedTransportCargo>\n" +
"\t\t\t\t<TypeCode>ULD</TypeCode>\n" +
"\t\t\t\t<UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t\t<ID>40442</ID>\n" +
"\t\t\t\t\t<GrossWeightMeasure unitCode=\"KGM\">3139</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">30.64</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<PieceQuantity>170</PieceQuantity>\n" +
"\t\t\t\t\t<CharacteristicCode>PGF</CharacteristicCode>\n" +
"\t\t\t\t\t<PositioningEvent>\n" +
"\t\t\t\t\t\t<OccurrencePositioningLocation>\n" +
"\t\t\t\t\t\t\t<ID>ANC</ID>\n" +
"\t\t\t\t\t\t</OccurrencePositioningLocation>\n" +
"\t\t\t\t\t</PositioningEvent>\n" +
"\t\t\t\t\t<OperatingParty>\n" +
"\t\t\t\t\t\t<PrimaryID schemeAgencyID=\"3\">R7</PrimaryID>\n" +
"\t\t\t\t\t</OperatingParty>\n" +
"\t\t\t\t</UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t<IncludedMasterConsignment>\n" +
"\t\t\t\t\t<GrossWeightMeasure TotalConsignmentWeight=\"3139\" unitCode=\"KGM\">3139</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">30.64</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<DensityGroupCode>MC</DensityGroupCode>\n" +
"\t\t\t\t\t<TotalPieceQuantity TotalConsignmentPieces=\"170\">170</TotalPieceQuantity>\n" +
"\t\t\t\t\t<TransportSplitDescription>T</TransportSplitDescription>\n" +
"\t\t\t\t\t<TransportContractDocument>\n" +
"\t\t\t\t\t\t<ID>172-32625084</ID>\n" +
"\t\t\t\t\t\t<TypeCode>741</TypeCode>\n" +
"\t\t\t\t\t</TransportContractDocument>\n" +
"\t\t\t\t\t<OriginLocation>\n" +
"\t\t\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t\t\t\t<Name>ZHENGZHOU</Name>\n" +
"\t\t\t\t\t</OriginLocation>\n" +
"\t\t\t\t\t<FinalDestinationLocation>\n" +
"\t\t\t\t\t\t<ID>LUX</ID>\n" +
"\t\t\t\t\t\t<Name>Luxembourg </Name>\n" +
"\t\t\t\t\t</FinalDestinationLocation>\n" +
"\t\t\t\t\t<IncludedMasterConsignmentItem>\n" +
"\t\t\t\t\t\t<TypeCode listAgencyID=\"1\">CONSOLIDATION</TypeCode>\n" +
"\t\t\t\t\t</IncludedMasterConsignmentItem>\n" +
"\t\t\t\t</IncludedMasterConsignment>\n" +
"\t\t\t</AssociatedTransportCargo>\n" +
"\t\t\t<AssociatedTransportCargo>\n" +
"\t\t\t\t<TypeCode>ULD</TypeCode>\n" +
"\t\t\t\t<UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t\t<ID>50791</ID>\n" +
"\t\t\t\t\t<GrossWeightMeasure unitCode=\"KGM\">2850</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">10.89</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<PieceQuantity>125</PieceQuantity>\n" +
"\t\t\t\t\t<CharacteristicCode>PMC</CharacteristicCode>\n" +
"\t\t\t\t\t<PositioningEvent>\n" +
"\t\t\t\t\t\t<OccurrencePositioningLocation>\n" +
"\t\t\t\t\t\t\t<ID>ANC</ID>\n" +
"\t\t\t\t\t\t</OccurrencePositioningLocation>\n" +
"\t\t\t\t\t</PositioningEvent>\n" +
"\t\t\t\t\t<OperatingParty>\n" +
"\t\t\t\t\t\t<PrimaryID schemeAgencyID=\"3\">R7</PrimaryID>\n" +
"\t\t\t\t\t</OperatingParty>\n" +
"\t\t\t\t</UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t<IncludedMasterConsignment>\n" +
"\t\t\t\t\t<GrossWeightMeasure TotalConsignmentWeight=\"2850\" unitCode=\"KGM\">2850</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">10.89</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<DensityGroupCode>MC</DensityGroupCode>\n" +
"\t\t\t\t\t<TotalPieceQuantity TotalConsignmentPieces=\"125\">125</TotalPieceQuantity>\n" +
"\t\t\t\t\t<TransportSplitDescription>T</TransportSplitDescription>\n" +
"\t\t\t\t\t<TransportContractDocument>\n" +
"\t\t\t\t\t\t<ID>172-32289946</ID>\n" +
"\t\t\t\t\t\t<TypeCode>741</TypeCode>\n" +
"\t\t\t\t\t</TransportContractDocument>\n" +
"\t\t\t\t\t<OriginLocation>\n" +
"\t\t\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t\t\t\t<Name>ZHENGZHOU</Name>\n" +
"\t\t\t\t\t</OriginLocation>\n" +
"\t\t\t\t\t<FinalDestinationLocation>\n" +
"\t\t\t\t\t\t<ID>BLL</ID>\n" +
"\t\t\t\t\t\t<Name>BILLUND</Name>\n" +
"\t\t\t\t\t</FinalDestinationLocation>\n" +
"\t\t\t\t\t<IncludedMasterConsignmentItem>\n" +
"\t\t\t\t\t\t<TypeCode listAgencyID=\"1\">CONSOLIDATION</TypeCode>\n" +
"\t\t\t\t\t</IncludedMasterConsignmentItem>\n" +
"\t\t\t\t</IncludedMasterConsignment>\n" +
"\t\t\t</AssociatedTransportCargo>\n" +
"\t\t\t<AssociatedTransportCargo>\n" +
"\t\t\t\t<TypeCode>ULD</TypeCode>\n" +
"\t\t\t\t<UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t\t<ID>51397</ID>\n" +
"\t\t\t\t\t<GrossWeightMeasure unitCode=\"KGM\">2748</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">12.430865</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<PieceQuantity>141</PieceQuantity>\n" +
"\t\t\t\t\t<CharacteristicCode>PMC</CharacteristicCode>\n" +
"\t\t\t\t\t<PositioningEvent>\n" +
"\t\t\t\t\t\t<OccurrencePositioningLocation>\n" +
"\t\t\t\t\t\t\t<ID>ANC</ID>\n" +
"\t\t\t\t\t\t</OccurrencePositioningLocation>\n" +
"\t\t\t\t\t</PositioningEvent>\n" +
"\t\t\t\t\t<OperatingParty>\n" +
"\t\t\t\t\t\t<PrimaryID schemeAgencyID=\"3\">R7</PrimaryID>\n" +
"\t\t\t\t\t</OperatingParty>\n" +
"\t\t\t\t</UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t<IncludedMasterConsignment>\n" +
"\t\t\t\t\t<GrossWeightMeasure TotalConsignmentWeight=\"7209\" unitCode=\"KGM\">2748</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">12.43</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<DensityGroupCode>MC</DensityGroupCode>\n" +
"\t\t\t\t\t<TotalPieceQuantity TotalConsignmentPieces=\"370\">141</TotalPieceQuantity>\n" +
"\t\t\t\t\t<TransportSplitDescription>S</TransportSplitDescription>\n" +
"\t\t\t\t\t<TransportContractDocument>\n" +
"\t\t\t\t\t\t<ID>172-32625062</ID>\n" +
"\t\t\t\t\t\t<TypeCode>741</TypeCode>\n" +
"\t\t\t\t\t</TransportContractDocument>\n" +
"\t\t\t\t\t<OriginLocation>\n" +
"\t\t\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t\t\t\t<Name>ZHENGZHOU</Name>\n" +
"\t\t\t\t\t</OriginLocation>\n" +
"\t\t\t\t\t<FinalDestinationLocation>\n" +
"\t\t\t\t\t\t<ID>LUX</ID>\n" +
"\t\t\t\t\t\t<Name>Luxembourg </Name>\n" +
"\t\t\t\t\t</FinalDestinationLocation>\n" +
"\t\t\t\t\t<IncludedMasterConsignmentItem>\n" +
"\t\t\t\t\t\t<TypeCode listAgencyID=\"1\">CONSOLIDATION</TypeCode>\n" +
"\t\t\t\t\t</IncludedMasterConsignmentItem>\n" +
"\t\t\t\t</IncludedMasterConsignment>\n" +
"\t\t\t</AssociatedTransportCargo>\n" +
"\t\t\t<AssociatedTransportCargo>\n" +
"\t\t\t\t<TypeCode>ULD</TypeCode>\n" +
"\t\t\t\t<UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t\t<ID>55378</ID>\n" +
"\t\t\t\t\t<GrossWeightMeasure unitCode=\"KGM\">4364</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">19.748324</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<PieceQuantity>224</PieceQuantity>\n" +
"\t\t\t\t\t<CharacteristicCode>PMC</CharacteristicCode>\n" +
"\t\t\t\t\t<PositioningEvent>\n" +
"\t\t\t\t\t\t<OccurrencePositioningLocation>\n" +
"\t\t\t\t\t\t\t<ID>ANC</ID>\n" +
"\t\t\t\t\t\t</OccurrencePositioningLocation>\n" +
"\t\t\t\t\t</PositioningEvent>\n" +
"\t\t\t\t\t<OperatingParty>\n" +
"\t\t\t\t\t\t<PrimaryID schemeAgencyID=\"3\">R7</PrimaryID>\n" +
"\t\t\t\t\t</OperatingParty>\n" +
"\t\t\t\t</UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t<IncludedMasterConsignment>\n" +
"\t\t\t\t\t<GrossWeightMeasure TotalConsignmentWeight=\"7209\" unitCode=\"KGM\">4364</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">19.75</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<DensityGroupCode>MC</DensityGroupCode>\n" +
"\t\t\t\t\t<TotalPieceQuantity TotalConsignmentPieces=\"370\">224</TotalPieceQuantity>\n" +
"\t\t\t\t\t<TransportSplitDescription>S</TransportSplitDescription>\n" +
"\t\t\t\t\t<TransportContractDocument>\n" +
"\t\t\t\t\t\t<ID>172-32625062</ID>\n" +
"\t\t\t\t\t\t<TypeCode>741</TypeCode>\n" +
"\t\t\t\t\t</TransportContractDocument>\n" +
"\t\t\t\t\t<OriginLocation>\n" +
"\t\t\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t\t\t\t<Name>ZHENGZHOU</Name>\n" +
"\t\t\t\t\t</OriginLocation>\n" +
"\t\t\t\t\t<FinalDestinationLocation>\n" +
"\t\t\t\t\t\t<ID>LUX</ID>\n" +
"\t\t\t\t\t\t<Name>Luxembourg </Name>\n" +
"\t\t\t\t\t</FinalDestinationLocation>\n" +
"\t\t\t\t\t<IncludedMasterConsignmentItem>\n" +
"\t\t\t\t\t\t<TypeCode listAgencyID=\"1\">CONSOLIDATION</TypeCode>\n" +
"\t\t\t\t\t</IncludedMasterConsignmentItem>\n" +
"\t\t\t\t</IncludedMasterConsignment>\n" +
"\t\t\t</AssociatedTransportCargo>\n" +
"\t\t\t<AssociatedTransportCargo>\n" +
"\t\t\t\t<TypeCode>ULD</TypeCode>\n" +
"\t\t\t\t<UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t\t<ID>62668</ID>\n" +
"\t\t\t\t\t<GrossWeightMeasure unitCode=\"KGM\">97</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">0.440811</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<PieceQuantity>5</PieceQuantity>\n" +
"\t\t\t\t\t<CharacteristicCode>PMC</CharacteristicCode>\n" +
"\t\t\t\t\t<PositioningEvent>\n" +
"\t\t\t\t\t\t<OccurrencePositioningLocation>\n" +
"\t\t\t\t\t\t\t<ID>ANC</ID>\n" +
"\t\t\t\t\t\t</OccurrencePositioningLocation>\n" +
"\t\t\t\t\t</PositioningEvent>\n" +
"\t\t\t\t\t<OperatingParty>\n" +
"\t\t\t\t\t\t<PrimaryID schemeAgencyID=\"3\">R7</PrimaryID>\n" +
"\t\t\t\t\t</OperatingParty>\n" +
"\t\t\t\t</UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t<IncludedMasterConsignment>\n" +
"\t\t\t\t\t<GrossWeightMeasure TotalConsignmentWeight=\"7209\" unitCode=\"KGM\">97</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">0.44</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<DensityGroupCode>MC</DensityGroupCode>\n" +
"\t\t\t\t\t<TotalPieceQuantity TotalConsignmentPieces=\"370\">5</TotalPieceQuantity>\n" +
"\t\t\t\t\t<TransportSplitDescription>S</TransportSplitDescription>\n" +
"\t\t\t\t\t<TransportContractDocument>\n" +
"\t\t\t\t\t\t<ID>172-32625062</ID>\n" +
"\t\t\t\t\t\t<TypeCode>741</TypeCode>\n" +
"\t\t\t\t\t</TransportContractDocument>\n" +
"\t\t\t\t\t<OriginLocation>\n" +
"\t\t\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t\t\t\t<Name>ZHENGZHOU</Name>\n" +
"\t\t\t\t\t</OriginLocation>\n" +
"\t\t\t\t\t<FinalDestinationLocation>\n" +
"\t\t\t\t\t\t<ID>LUX</ID>\n" +
"\t\t\t\t\t\t<Name>Luxembourg </Name>\n" +
"\t\t\t\t\t</FinalDestinationLocation>\n" +
"\t\t\t\t\t<IncludedMasterConsignmentItem>\n" +
"\t\t\t\t\t\t<TypeCode listAgencyID=\"1\">CONSOLIDATION</TypeCode>\n" +
"\t\t\t\t\t</IncludedMasterConsignmentItem>\n" +
"\t\t\t\t</IncludedMasterConsignment>\n" +
"\t\t\t</AssociatedTransportCargo>\n" +
"\t\t\t<AssociatedTransportCargo>\n" +
"\t\t\t\t<TypeCode>ULD</TypeCode>\n" +
"\t\t\t\t<UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t\t<ID>86386</ID>\n" +
"\t\t\t\t\t<GrossWeightMeasure unitCode=\"KGM\">2748</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">7.82</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<PieceQuantity>167</PieceQuantity>\n" +
"\t\t\t\t\t<CharacteristicCode>PMC</CharacteristicCode>\n" +
"\t\t\t\t\t<PositioningEvent>\n" +
"\t\t\t\t\t\t<OccurrencePositioningLocation>\n" +
"\t\t\t\t\t\t\t<ID>ANC</ID>\n" +
"\t\t\t\t\t\t</OccurrencePositioningLocation>\n" +
"\t\t\t\t\t</PositioningEvent>\n" +
"\t\t\t\t\t<OperatingParty>\n" +
"\t\t\t\t\t\t<PrimaryID schemeAgencyID=\"3\">R7</PrimaryID>\n" +
"\t\t\t\t\t</OperatingParty>\n" +
"\t\t\t\t</UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t<IncludedMasterConsignment>\n" +
"\t\t\t\t\t<GrossWeightMeasure TotalConsignmentWeight=\"2748\" unitCode=\"KGM\">2748</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">7.82</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<DensityGroupCode>MC</DensityGroupCode>\n" +
"\t\t\t\t\t<TotalPieceQuantity TotalConsignmentPieces=\"167\">167</TotalPieceQuantity>\n" +
"\t\t\t\t\t<TransportSplitDescription>T</TransportSplitDescription>\n" +
"\t\t\t\t\t<TransportContractDocument>\n" +
"\t\t\t\t\t\t<ID>172-32625095</ID>\n" +
"\t\t\t\t\t\t<TypeCode>741</TypeCode>\n" +
"\t\t\t\t\t</TransportContractDocument>\n" +
"\t\t\t\t\t<OriginLocation>\n" +
"\t\t\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t\t\t\t<Name>ZHENGZHOU</Name>\n" +
"\t\t\t\t\t</OriginLocation>\n" +
"\t\t\t\t\t<FinalDestinationLocation>\n" +
"\t\t\t\t\t\t<ID>LUX</ID>\n" +
"\t\t\t\t\t\t<Name>Luxembourg </Name>\n" +
"\t\t\t\t\t</FinalDestinationLocation>\n" +
"\t\t\t\t\t<IncludedMasterConsignmentItem>\n" +
"\t\t\t\t\t\t<TypeCode listAgencyID=\"1\">CONSOLIDATION</TypeCode>\n" +
"\t\t\t\t\t</IncludedMasterConsignmentItem>\n" +
"\t\t\t\t</IncludedMasterConsignment>\n" +
"\t\t\t</AssociatedTransportCargo>\n" +
"\t\t</ArrivalEvent>\n" +
"\t\t<ArrivalEvent>\n" +
"\t\t\t<ScheduledArrivalOccurrenceDateTime>2018-11-18T01:45:00+08:00</ScheduledArrivalOccurrenceDateTime>\n" +
"\t\t\t<ScheduledDepartureOccurrenceDateTime>2018-11-18T04:00:00+08:00</ScheduledDepartureOccurrenceDateTime>\n" +
"\t\t\t<OccurrenceArrivalLocation>\n" +
"\t\t\t\t<ID>ATL</ID>\n" +
"\t\t\t\t<Name>ATLANTA</Name>\n" +
"\t\t\t\t<TypeCode>Airport</TypeCode>\n" +
"\t\t\t\t<FirstArrivalCountryID>US</FirstArrivalCountryID>\n" +
"\t\t\t</OccurrenceArrivalLocation>\n" +
"\t\t\t<AssociatedTransportCargo>\n" +
"\t\t\t\t<TypeCode>ULD</TypeCode>\n" +
"\t\t\t\t<UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t\t<ID>40442</ID>\n" +
"\t\t\t\t\t<GrossWeightMeasure unitCode=\"KGM\">3139</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">30.64</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<PieceQuantity>170</PieceQuantity>\n" +
"\t\t\t\t\t<CharacteristicCode>PGF</CharacteristicCode>\n" +
"\t\t\t\t\t<PositioningEvent>\n" +
"\t\t\t\t\t\t<OccurrencePositioningLocation>\n" +
"\t\t\t\t\t\t\t<ID>ATL</ID>\n" +
"\t\t\t\t\t\t</OccurrencePositioningLocation>\n" +
"\t\t\t\t\t</PositioningEvent>\n" +
"\t\t\t\t\t<OperatingParty>\n" +
"\t\t\t\t\t\t<PrimaryID schemeAgencyID=\"3\">R7</PrimaryID>\n" +
"\t\t\t\t\t</OperatingParty>\n" +
"\t\t\t\t</UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t<IncludedMasterConsignment>\n" +
"\t\t\t\t\t<GrossWeightMeasure TotalConsignmentWeight=\"3139\" unitCode=\"KGM\">3139</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">30.64</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<DensityGroupCode>MC</DensityGroupCode>\n" +
"\t\t\t\t\t<TotalPieceQuantity TotalConsignmentPieces=\"170\">170</TotalPieceQuantity>\n" +
"\t\t\t\t\t<TransportSplitDescription>T</TransportSplitDescription>\n" +
"\t\t\t\t\t<TransportContractDocument>\n" +
"\t\t\t\t\t\t<ID>172-32625084</ID>\n" +
"\t\t\t\t\t\t<TypeCode>741</TypeCode>\n" +
"\t\t\t\t\t</TransportContractDocument>\n" +
"\t\t\t\t\t<OriginLocation>\n" +
"\t\t\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t\t\t\t<Name>ZHENGZHOU</Name>\n" +
"\t\t\t\t\t</OriginLocation>\n" +
"\t\t\t\t\t<FinalDestinationLocation>\n" +
"\t\t\t\t\t\t<ID>LUX</ID>\n" +
"\t\t\t\t\t\t<Name>Luxembourg </Name>\n" +
"\t\t\t\t\t</FinalDestinationLocation>\n" +
"\t\t\t\t\t<IncludedMasterConsignmentItem>\n" +
"\t\t\t\t\t\t<TypeCode listAgencyID=\"1\">CONSOLIDATION</TypeCode>\n" +
"\t\t\t\t\t</IncludedMasterConsignmentItem>\n" +
"\t\t\t\t</IncludedMasterConsignment>\n" +
"\t\t\t</AssociatedTransportCargo>\n" +
"\t\t\t<AssociatedTransportCargo>\n" +
"\t\t\t\t<TypeCode>ULD</TypeCode>\n" +
"\t\t\t\t<UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t\t<ID>52267</ID>\n" +
"\t\t\t\t\t<GrossWeightMeasure unitCode=\"KGM\">4108</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">0</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<PieceQuantity>95</PieceQuantity>\n" +
"\t\t\t\t\t<CharacteristicCode>PGF</CharacteristicCode>\n" +
"\t\t\t\t\t<PositioningEvent>\n" +
"\t\t\t\t\t\t<OccurrencePositioningLocation>\n" +
"\t\t\t\t\t\t\t<ID>ATL</ID>\n" +
"\t\t\t\t\t\t</OccurrencePositioningLocation>\n" +
"\t\t\t\t\t</PositioningEvent>\n" +
"\t\t\t\t\t<OperatingParty>\n" +
"\t\t\t\t\t\t<PrimaryID schemeAgencyID=\"3\">R7</PrimaryID>\n" +
"\t\t\t\t\t</OperatingParty>\n" +
"\t\t\t\t</UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t<IncludedMasterConsignment>\n" +
"\t\t\t\t\t<GrossWeightMeasure TotalConsignmentWeight=\"656\" unitCode=\"KGM\">190</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">0</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<DensityGroupCode>MC</DensityGroupCode>\n" +
"\t\t\t\t\t<TotalPieceQuantity TotalConsignmentPieces=\"3\">1</TotalPieceQuantity>\n" +
"\t\t\t\t\t<TransportSplitDescription>S</TransportSplitDescription>\n" +
"\t\t\t\t\t<TransportContractDocument>\n" +
"\t\t\t\t\t\t<ID>172-28962172</ID>\n" +
"\t\t\t\t\t\t<TypeCode>741</TypeCode>\n" +
"\t\t\t\t\t</TransportContractDocument>\n" +
"\t\t\t\t\t<OriginLocation>\n" +
"\t\t\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t\t\t\t<Name>ZHENGZHOU</Name>\n" +
"\t\t\t\t\t</OriginLocation>\n" +
"\t\t\t\t\t<FinalDestinationLocation>\n" +
"\t\t\t\t\t\t<ID>AMS</ID>\n" +
"\t\t\t\t\t\t<Name>AMSTERDAM</Name>\n" +
"\t\t\t\t\t</FinalDestinationLocation>\n" +
"\t\t\t\t\t<IncludedMasterConsignmentItem>\n" +
"\t\t\t\t\t\t<TypeCode listAgencyID=\"1\">CONSOLIDATION</TypeCode>\n" +
"\t\t\t\t\t</IncludedMasterConsignmentItem>\n" +
"\t\t\t\t</IncludedMasterConsignment>\n" +
"\t\t\t\t<IncludedMasterConsignment>\n" +
"\t\t\t\t\t<GrossWeightMeasure TotalConsignmentWeight=\"3256\" unitCode=\"KGM\">3256</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">0</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<DensityGroupCode>MC</DensityGroupCode>\n" +
"\t\t\t\t\t<TotalPieceQuantity TotalConsignmentPieces=\"3\">3</TotalPieceQuantity>\n" +
"\t\t\t\t\t<TransportSplitDescription>T</TransportSplitDescription>\n" +
"\t\t\t\t\t<TransportContractDocument>\n" +
"\t\t\t\t\t\t<ID>172-32802162</ID>\n" +
"\t\t\t\t\t\t<TypeCode>741</TypeCode>\n" +
"\t\t\t\t\t</TransportContractDocument>\n" +
"\t\t\t\t\t<OriginLocation>\n" +
"\t\t\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t\t\t\t<Name>ZHENGZHOU</Name>\n" +
"\t\t\t\t\t</OriginLocation>\n" +
"\t\t\t\t\t<FinalDestinationLocation>\n" +
"\t\t\t\t\t\t<ID>DUS</ID>\n" +
"\t\t\t\t\t\t<Name>Dusseldorf</Name>\n" +
"\t\t\t\t\t</FinalDestinationLocation>\n" +
"\t\t\t\t\t<IncludedMasterConsignmentItem>\n" +
"\t\t\t\t\t\t<TypeCode listAgencyID=\"1\">CONSOLIDATION</TypeCode>\n" +
"\t\t\t\t\t</IncludedMasterConsignmentItem>\n" +
"\t\t\t\t</IncludedMasterConsignment>\n" +
"\t\t\t\t<IncludedMasterConsignment>\n" +
"\t\t\t\t\t<GrossWeightMeasure TotalConsignmentWeight=\"1988\" unitCode=\"KGM\">662</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">0</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<DensityGroupCode>MC</DensityGroupCode>\n" +
"\t\t\t\t\t<TotalPieceQuantity TotalConsignmentPieces=\"273\">91</TotalPieceQuantity>\n" +
"\t\t\t\t\t<TransportSplitDescription>S</TransportSplitDescription>\n" +
"\t\t\t\t\t<TransportContractDocument>\n" +
"\t\t\t\t\t\t<ID>172-32802210</ID>\n" +
"\t\t\t\t\t\t<TypeCode>741</TypeCode>\n" +
"\t\t\t\t\t</TransportContractDocument>\n" +
"\t\t\t\t\t<OriginLocation>\n" +
"\t\t\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t\t\t\t<Name>ZHENGZHOU</Name>\n" +
"\t\t\t\t\t</OriginLocation>\n" +
"\t\t\t\t\t<FinalDestinationLocation>\n" +
"\t\t\t\t\t\t<ID>STR</ID>\n" +
"\t\t\t\t\t\t<Name>Stuttgart</Name>\n" +
"\t\t\t\t\t</FinalDestinationLocation>\n" +
"\t\t\t\t\t<IncludedMasterConsignmentItem>\n" +
"\t\t\t\t\t\t<TypeCode listAgencyID=\"1\">CONSOLIDATION</TypeCode>\n" +
"\t\t\t\t\t</IncludedMasterConsignmentItem>\n" +
"\t\t\t\t</IncludedMasterConsignment>\n" +
"\t\t\t</AssociatedTransportCargo>\n" +
"\t\t\t<AssociatedTransportCargo>\n" +
"\t\t\t\t<TypeCode>ULD</TypeCode>\n" +
"\t\t\t\t<UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t\t<ID>52774</ID>\n" +
"\t\t\t\t\t<GrossWeightMeasure unitCode=\"KGM\">5435</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">0</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<PieceQuantity>93</PieceQuantity>\n" +
"\t\t\t\t\t<CharacteristicCode>PGF</CharacteristicCode>\n" +
"\t\t\t\t\t<PositioningEvent>\n" +
"\t\t\t\t\t\t<OccurrencePositioningLocation>\n" +
"\t\t\t\t\t\t\t<ID>ATL</ID>\n" +
"\t\t\t\t\t\t</OccurrencePositioningLocation>\n" +
"\t\t\t\t\t</PositioningEvent>\n" +
"\t\t\t\t\t<OperatingParty>\n" +
"\t\t\t\t\t\t<PrimaryID schemeAgencyID=\"3\">R7</PrimaryID>\n" +
"\t\t\t\t\t</OperatingParty>\n" +
"\t\t\t\t</UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t<IncludedMasterConsignment>\n" +
"\t\t\t\t\t<GrossWeightMeasure TotalConsignmentWeight=\"1225\" unitCode=\"KGM\">1225</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">0</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<DensityGroupCode>MC</DensityGroupCode>\n" +
"\t\t\t\t\t<TotalPieceQuantity TotalConsignmentPieces=\"1\">1</TotalPieceQuantity>\n" +
"\t\t\t\t\t<TransportSplitDescription>T</TransportSplitDescription>\n" +
"\t\t\t\t\t<TransportContractDocument>\n" +
"\t\t\t\t\t\t<ID>172-30562033</ID>\n" +
"\t\t\t\t\t\t<TypeCode>741</TypeCode>\n" +
"\t\t\t\t\t</TransportContractDocument>\n" +
"\t\t\t\t\t<OriginLocation>\n" +
"\t\t\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t\t\t\t<Name>ZHENGZHOU</Name>\n" +
"\t\t\t\t\t</OriginLocation>\n" +
"\t\t\t\t\t<FinalDestinationLocation>\n" +
"\t\t\t\t\t\t<ID>MIL</ID>\n" +
"\t\t\t\t\t\t<Name>MILAN</Name>\n" +
"\t\t\t\t\t</FinalDestinationLocation>\n" +
"\t\t\t\t\t<IncludedMasterConsignmentItem>\n" +
"\t\t\t\t\t\t<TypeCode listAgencyID=\"1\">CONSOLIDATION</TypeCode>\n" +
"\t\t\t\t\t</IncludedMasterConsignmentItem>\n" +
"\t\t\t\t</IncludedMasterConsignment>\n" +
"\t\t\t\t<IncludedMasterConsignment>\n" +
"\t\t\t\t\t<GrossWeightMeasure TotalConsignmentWeight=\"1472\" unitCode=\"KGM\">1472</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">0</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<DensityGroupCode>MC</DensityGroupCode>\n" +
"\t\t\t\t\t<TotalPieceQuantity TotalConsignmentPieces=\"1\">1</TotalPieceQuantity>\n" +
"\t\t\t\t\t<TransportSplitDescription>T</TransportSplitDescription>\n" +
"\t\t\t\t\t<TransportContractDocument>\n" +
"\t\t\t\t\t\t<ID>172-30817776</ID>\n" +
"\t\t\t\t\t\t<TypeCode>741</TypeCode>\n" +
"\t\t\t\t\t</TransportContractDocument>\n" +
"\t\t\t\t\t<OriginLocation>\n" +
"\t\t\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t\t\t\t<Name>ZHENGZHOU</Name>\n" +
"\t\t\t\t\t</OriginLocation>\n" +
"\t\t\t\t\t<FinalDestinationLocation>\n" +
"\t\t\t\t\t\t<ID>BGO</ID>\n" +
"\t\t\t\t\t\t<Name>Berlin </Name>\n" +
"\t\t\t\t\t</FinalDestinationLocation>\n" +
"\t\t\t\t\t<IncludedMasterConsignmentItem>\n" +
"\t\t\t\t\t\t<TypeCode listAgencyID=\"1\">CONSOLIDATION</TypeCode>\n" +
"\t\t\t\t\t</IncludedMasterConsignmentItem>\n" +
"\t\t\t\t</IncludedMasterConsignment>\n" +
"\t\t\t\t<IncludedMasterConsignment>\n" +
"\t\t\t\t\t<GrossWeightMeasure TotalConsignmentWeight=\"1896\" unitCode=\"KGM\">1896</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">0</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<DensityGroupCode>MC</DensityGroupCode>\n" +
"\t\t\t\t\t<TotalPieceQuantity TotalConsignmentPieces=\"6\">6</TotalPieceQuantity>\n" +
"\t\t\t\t\t<TransportSplitDescription>T</TransportSplitDescription>\n" +
"\t\t\t\t\t<TransportContractDocument>\n" +
"\t\t\t\t\t\t<ID>172-31997980</ID>\n" +
"\t\t\t\t\t\t<TypeCode>741</TypeCode>\n" +
"\t\t\t\t\t</TransportContractDocument>\n" +
"\t\t\t\t\t<OriginLocation>\n" +
"\t\t\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t\t\t\t<Name>ZHENGZHOU</Name>\n" +
"\t\t\t\t\t</OriginLocation>\n" +
"\t\t\t\t\t<FinalDestinationLocation>\n" +
"\t\t\t\t\t\t<ID>STR</ID>\n" +
"\t\t\t\t\t\t<Name>Stuttgart</Name>\n" +
"\t\t\t\t\t</FinalDestinationLocation>\n" +
"\t\t\t\t\t<IncludedMasterConsignmentItem>\n" +
"\t\t\t\t\t\t<TypeCode listAgencyID=\"1\">CONSOLIDATION</TypeCode>\n" +
"\t\t\t\t\t</IncludedMasterConsignmentItem>\n" +
"\t\t\t\t</IncludedMasterConsignment>\n" +
"\t\t\t\t<IncludedMasterConsignment>\n" +
"\t\t\t\t\t<GrossWeightMeasure TotalConsignmentWeight=\"228\" unitCode=\"KGM\">228</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">0</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<DensityGroupCode>MC</DensityGroupCode>\n" +
"\t\t\t\t\t<TotalPieceQuantity TotalConsignmentPieces=\"1\">1</TotalPieceQuantity>\n" +
"\t\t\t\t\t<TransportSplitDescription>T</TransportSplitDescription>\n" +
"\t\t\t\t\t<TransportContractDocument>\n" +
"\t\t\t\t\t\t<ID>172-32802081</ID>\n" +
"\t\t\t\t\t\t<TypeCode>741</TypeCode>\n" +
"\t\t\t\t\t</TransportContractDocument>\n" +
"\t\t\t\t\t<OriginLocation>\n" +
"\t\t\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t\t\t\t<Name>ZHENGZHOU</Name>\n" +
"\t\t\t\t\t</OriginLocation>\n" +
"\t\t\t\t\t<FinalDestinationLocation>\n" +
"\t\t\t\t\t\t<ID>DUS</ID>\n" +
"\t\t\t\t\t\t<Name>Dusseldorf</Name>\n" +
"\t\t\t\t\t</FinalDestinationLocation>\n" +
"\t\t\t\t\t<HandlingInstructions>\n" +
"\t\t\t\t\t\t<Description>dangerous goods</Description>\n" +
"\t\t\t\t\t\t<DescriptionCode>DGR</DescriptionCode>\n" +
"\t\t\t\t\t</HandlingInstructions>\n" +
"\t\t\t\t\t<IncludedMasterConsignmentItem>\n" +
"\t\t\t\t\t\t<TypeCode listAgencyID=\"1\">CONSOLIDATION</TypeCode>\n" +
"\t\t\t\t\t</IncludedMasterConsignmentItem>\n" +
"\t\t\t\t</IncludedMasterConsignment>\n" +
"\t\t\t\t<IncludedMasterConsignment>\n" +
"\t\t\t\t\t<GrossWeightMeasure TotalConsignmentWeight=\"1988\" unitCode=\"KGM\">614</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">0</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<DensityGroupCode>MC</DensityGroupCode>\n" +
"\t\t\t\t\t<TotalPieceQuantity TotalConsignmentPieces=\"273\">84</TotalPieceQuantity>\n" +
"\t\t\t\t\t<TransportSplitDescription>S</TransportSplitDescription>\n" +
"\t\t\t\t\t<TransportContractDocument>\n" +
"\t\t\t\t\t\t<ID>172-32802210</ID>\n" +
"\t\t\t\t\t\t<TypeCode>741</TypeCode>\n" +
"\t\t\t\t\t</TransportContractDocument>\n" +
"\t\t\t\t\t<OriginLocation>\n" +
"\t\t\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t\t\t\t<Name>ZHENGZHOU</Name>\n" +
"\t\t\t\t\t</OriginLocation>\n" +
"\t\t\t\t\t<FinalDestinationLocation>\n" +
"\t\t\t\t\t\t<ID>STR</ID>\n" +
"\t\t\t\t\t\t<Name>Stuttgart</Name>\n" +
"\t\t\t\t\t</FinalDestinationLocation>\n" +
"\t\t\t\t\t<IncludedMasterConsignmentItem>\n" +
"\t\t\t\t\t\t<TypeCode listAgencyID=\"1\">CONSOLIDATION</TypeCode>\n" +
"\t\t\t\t\t</IncludedMasterConsignmentItem>\n" +
"\t\t\t\t</IncludedMasterConsignment>\n" +
"\t\t\t</AssociatedTransportCargo>\n" +
"\t\t\t<AssociatedTransportCargo>\n" +
"\t\t\t\t<TypeCode>ULD</TypeCode>\n" +
"\t\t\t\t<UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t\t<ID>21947</ID>\n" +
"\t\t\t\t\t<GrossWeightMeasure unitCode=\"KGM\">2067</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">0</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<PieceQuantity>77</PieceQuantity>\n" +
"\t\t\t\t\t<CharacteristicCode>PMC</CharacteristicCode>\n" +
"\t\t\t\t\t<PositioningEvent>\n" +
"\t\t\t\t\t\t<OccurrencePositioningLocation>\n" +
"\t\t\t\t\t\t\t<ID>ATL</ID>\n" +
"\t\t\t\t\t\t</OccurrencePositioningLocation>\n" +
"\t\t\t\t\t</PositioningEvent>\n" +
"\t\t\t\t\t<OperatingParty>\n" +
"\t\t\t\t\t\t<PrimaryID schemeAgencyID=\"3\">C6</PrimaryID>\n" +
"\t\t\t\t\t</OperatingParty>\n" +
"\t\t\t\t</UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t<IncludedMasterConsignment>\n" +
"\t\t\t\t\t<GrossWeightMeasure TotalConsignmentWeight=\"8765\" unitCode=\"KGM\">1580</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">0</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<DensityGroupCode>MC</DensityGroupCode>\n" +
"\t\t\t\t\t<TotalPieceQuantity TotalConsignmentPieces=\"256\">10</TotalPieceQuantity>\n" +
"\t\t\t\t\t<TransportSplitDescription>S</TransportSplitDescription>\n" +
"\t\t\t\t\t<TransportContractDocument>\n" +
"\t\t\t\t\t\t<ID>172-22896414</ID>\n" +
"\t\t\t\t\t\t<TypeCode>741</TypeCode>\n" +
"\t\t\t\t\t</TransportContractDocument>\n" +
"\t\t\t\t\t<OriginLocation>\n" +
"\t\t\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t\t\t\t<Name>ZHENGZHOU</Name>\n" +
"\t\t\t\t\t</OriginLocation>\n" +
"\t\t\t\t\t<FinalDestinationLocation>\n" +
"\t\t\t\t\t\t<ID>LUX</ID>\n" +
"\t\t\t\t\t\t<Name>Luxembourg </Name>\n" +
"\t\t\t\t\t</FinalDestinationLocation>\n" +
"\t\t\t\t\t<IncludedMasterConsignmentItem>\n" +
"\t\t\t\t\t\t<TypeCode listAgencyID=\"1\">CONSOLIDATION</TypeCode>\n" +
"\t\t\t\t\t</IncludedMasterConsignmentItem>\n" +
"\t\t\t\t</IncludedMasterConsignment>\n" +
"\t\t\t\t<IncludedMasterConsignment>\n" +
"\t\t\t\t\t<GrossWeightMeasure TotalConsignmentWeight=\"1988\" unitCode=\"KGM\">487</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">0</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<DensityGroupCode>MC</DensityGroupCode>\n" +
"\t\t\t\t\t<TotalPieceQuantity TotalConsignmentPieces=\"273\">67</TotalPieceQuantity>\n" +
"\t\t\t\t\t<TransportSplitDescription>S</TransportSplitDescription>\n" +
"\t\t\t\t\t<TransportContractDocument>\n" +
"\t\t\t\t\t\t<ID>172-32802210</ID>\n" +
"\t\t\t\t\t\t<TypeCode>741</TypeCode>\n" +
"\t\t\t\t\t</TransportContractDocument>\n" +
"\t\t\t\t\t<OriginLocation>\n" +
"\t\t\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t\t\t\t<Name>ZHENGZHOU</Name>\n" +
"\t\t\t\t\t</OriginLocation>\n" +
"\t\t\t\t\t<FinalDestinationLocation>\n" +
"\t\t\t\t\t\t<ID>STR</ID>\n" +
"\t\t\t\t\t\t<Name>Stuttgart</Name>\n" +
"\t\t\t\t\t</FinalDestinationLocation>\n" +
"\t\t\t\t\t<IncludedMasterConsignmentItem>\n" +
"\t\t\t\t\t\t<TypeCode listAgencyID=\"1\">CONSOLIDATION</TypeCode>\n" +
"\t\t\t\t\t</IncludedMasterConsignmentItem>\n" +
"\t\t\t\t</IncludedMasterConsignment>\n" +
"\t\t\t</AssociatedTransportCargo>\n" +
"\t\t\t<AssociatedTransportCargo>\n" +
"\t\t\t\t<TypeCode>ULD</TypeCode>\n" +
"\t\t\t\t<UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t\t<ID>33877</ID>\n" +
"\t\t\t\t\t<GrossWeightMeasure unitCode=\"KGM\">980</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">0</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<PieceQuantity>77</PieceQuantity>\n" +
"\t\t\t\t\t<CharacteristicCode>PMC</CharacteristicCode>\n" +
"\t\t\t\t\t<PositioningEvent>\n" +
"\t\t\t\t\t\t<OccurrencePositioningLocation>\n" +
"\t\t\t\t\t\t\t<ID>ATL</ID>\n" +
"\t\t\t\t\t\t</OccurrencePositioningLocation>\n" +
"\t\t\t\t\t</PositioningEvent>\n" +
"\t\t\t\t\t<OperatingParty>\n" +
"\t\t\t\t\t\t<PrimaryID schemeAgencyID=\"3\">R7</PrimaryID>\n" +
"\t\t\t\t\t</OperatingParty>\n" +
"\t\t\t\t</UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t<IncludedMasterConsignment>\n" +
"\t\t\t\t\t<GrossWeightMeasure TotalConsignmentWeight=\"8765\" unitCode=\"KGM\">980</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">0</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<DensityGroupCode>MC</DensityGroupCode>\n" +
"\t\t\t\t\t<TotalPieceQuantity TotalConsignmentPieces=\"256\">77</TotalPieceQuantity>\n" +
"\t\t\t\t\t<TransportSplitDescription>S</TransportSplitDescription>\n" +
"\t\t\t\t\t<TransportContractDocument>\n" +
"\t\t\t\t\t\t<ID>172-22896414</ID>\n" +
"\t\t\t\t\t\t<TypeCode>741</TypeCode>\n" +
"\t\t\t\t\t</TransportContractDocument>\n" +
"\t\t\t\t\t<OriginLocation>\n" +
"\t\t\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t\t\t\t<Name>ZHENGZHOU</Name>\n" +
"\t\t\t\t\t</OriginLocation>\n" +
"\t\t\t\t\t<FinalDestinationLocation>\n" +
"\t\t\t\t\t\t<ID>LUX</ID>\n" +
"\t\t\t\t\t\t<Name>Luxembourg </Name>\n" +
"\t\t\t\t\t</FinalDestinationLocation>\n" +
"\t\t\t\t\t<IncludedMasterConsignmentItem>\n" +
"\t\t\t\t\t\t<TypeCode listAgencyID=\"1\">CONSOLIDATION</TypeCode>\n" +
"\t\t\t\t\t</IncludedMasterConsignmentItem>\n" +
"\t\t\t\t</IncludedMasterConsignment>\n" +
"\t\t\t</AssociatedTransportCargo>\n" +
"\t\t\t<AssociatedTransportCargo>\n" +
"\t\t\t\t<TypeCode>ULD</TypeCode>\n" +
"\t\t\t\t<UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t\t<ID>41626</ID>\n" +
"\t\t\t\t\t<GrossWeightMeasure unitCode=\"KGM\">2142</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">0</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<PieceQuantity>74</PieceQuantity>\n" +
"\t\t\t\t\t<CharacteristicCode>PMC</CharacteristicCode>\n" +
"\t\t\t\t\t<PositioningEvent>\n" +
"\t\t\t\t\t\t<OccurrencePositioningLocation>\n" +
"\t\t\t\t\t\t\t<ID>ATL</ID>\n" +
"\t\t\t\t\t\t</OccurrencePositioningLocation>\n" +
"\t\t\t\t\t</PositioningEvent>\n" +
"\t\t\t\t\t<OperatingParty>\n" +
"\t\t\t\t\t\t<PrimaryID schemeAgencyID=\"3\">R7</PrimaryID>\n" +
"\t\t\t\t\t</OperatingParty>\n" +
"\t\t\t\t</UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t<IncludedMasterConsignment>\n" +
"\t\t\t\t\t<GrossWeightMeasure TotalConsignmentWeight=\"656\" unitCode=\"KGM\">466</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">0</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<DensityGroupCode>MC</DensityGroupCode>\n" +
"\t\t\t\t\t<TotalPieceQuantity TotalConsignmentPieces=\"3\">2</TotalPieceQuantity>\n" +
"\t\t\t\t\t<TransportSplitDescription>S</TransportSplitDescription>\n" +
"\t\t\t\t\t<TransportContractDocument>\n" +
"\t\t\t\t\t\t<ID>172-28962172</ID>\n" +
"\t\t\t\t\t\t<TypeCode>741</TypeCode>\n" +
"\t\t\t\t\t</TransportContractDocument>\n" +
"\t\t\t\t\t<OriginLocation>\n" +
"\t\t\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t\t\t\t<Name>ZHENGZHOU</Name>\n" +
"\t\t\t\t\t</OriginLocation>\n" +
"\t\t\t\t\t<FinalDestinationLocation>\n" +
"\t\t\t\t\t\t<ID>AMS</ID>\n" +
"\t\t\t\t\t\t<Name>AMSTERDAM</Name>\n" +
"\t\t\t\t\t</FinalDestinationLocation>\n" +
"\t\t\t\t\t<IncludedMasterConsignmentItem>\n" +
"\t\t\t\t\t\t<TypeCode listAgencyID=\"1\">CONSOLIDATION</TypeCode>\n" +
"\t\t\t\t\t</IncludedMasterConsignmentItem>\n" +
"\t\t\t\t</IncludedMasterConsignment>\n" +
"\t\t\t\t<IncludedMasterConsignment>\n" +
"\t\t\t\t\t<GrossWeightMeasure TotalConsignmentWeight=\"594\" unitCode=\"KGM\">594</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">0</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<DensityGroupCode>MC</DensityGroupCode>\n" +
"\t\t\t\t\t<TotalPieceQuantity TotalConsignmentPieces=\"2\">2</TotalPieceQuantity>\n" +
"\t\t\t\t\t<TransportSplitDescription>T</TransportSplitDescription>\n" +
"\t\t\t\t\t<TransportContractDocument>\n" +
"\t\t\t\t\t\t<ID>172-28962776</ID>\n" +
"\t\t\t\t\t\t<TypeCode>741</TypeCode>\n" +
"\t\t\t\t\t</TransportContractDocument>\n" +
"\t\t\t\t\t<OriginLocation>\n" +
"\t\t\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t\t\t\t<Name>ZHENGZHOU</Name>\n" +
"\t\t\t\t\t</OriginLocation>\n" +
"\t\t\t\t\t<FinalDestinationLocation>\n" +
"\t\t\t\t\t\t<ID>OPO</ID>\n" +
"\t\t\t\t\t\t<Name>PORTO</Name>\n" +
"\t\t\t\t\t</FinalDestinationLocation>\n" +
"\t\t\t\t\t<IncludedMasterConsignmentItem>\n" +
"\t\t\t\t\t\t<TypeCode listAgencyID=\"1\">CONSOLIDATION</TypeCode>\n" +
"\t\t\t\t\t</IncludedMasterConsignmentItem>\n" +
"\t\t\t\t</IncludedMasterConsignment>\n" +
"\t\t\t\t<IncludedMasterConsignment>\n" +
"\t\t\t\t\t<GrossWeightMeasure TotalConsignmentWeight=\"592\" unitCode=\"KGM\">592</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">0</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<DensityGroupCode>MC</DensityGroupCode>\n" +
"\t\t\t\t\t<TotalPieceQuantity TotalConsignmentPieces=\"25\">25</TotalPieceQuantity>\n" +
"\t\t\t\t\t<TransportSplitDescription>T</TransportSplitDescription>\n" +
"\t\t\t\t\t<TransportContractDocument>\n" +
"\t\t\t\t\t\t<ID>172-30560961</ID>\n" +
"\t\t\t\t\t\t<TypeCode>741</TypeCode>\n" +
"\t\t\t\t\t</TransportContractDocument>\n" +
"\t\t\t\t\t<OriginLocation>\n" +
"\t\t\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t\t\t\t<Name>ZHENGZHOU</Name>\n" +
"\t\t\t\t\t</OriginLocation>\n" +
"\t\t\t\t\t<FinalDestinationLocation>\n" +
"\t\t\t\t\t\t<ID>MXP</ID>\n" +
"\t\t\t\t\t\t<Name>MILAN</Name>\n" +
"\t\t\t\t\t</FinalDestinationLocation>\n" +
"\t\t\t\t\t<IncludedMasterConsignmentItem>\n" +
"\t\t\t\t\t\t<TypeCode listAgencyID=\"1\">CONSOLIDATION</TypeCode>\n" +
"\t\t\t\t\t</IncludedMasterConsignmentItem>\n" +
"\t\t\t\t</IncludedMasterConsignment>\n" +
"\t\t\t\t<IncludedMasterConsignment>\n" +
"\t\t\t\t\t<GrossWeightMeasure TotalConsignmentWeight=\"5\" unitCode=\"KGM\">5</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">0</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<DensityGroupCode>MC</DensityGroupCode>\n" +
"\t\t\t\t\t<TotalPieceQuantity TotalConsignmentPieces=\"2\">2</TotalPieceQuantity>\n" +
"\t\t\t\t\t<TransportSplitDescription>T</TransportSplitDescription>\n" +
"\t\t\t\t\t<TransportContractDocument>\n" +
"\t\t\t\t\t\t<ID>172-31920744</ID>\n" +
"\t\t\t\t\t\t<TypeCode>741</TypeCode>\n" +
"\t\t\t\t\t</TransportContractDocument>\n" +
"\t\t\t\t\t<OriginLocation>\n" +
"\t\t\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t\t\t\t<Name>ZHENGZHOU</Name>\n" +
"\t\t\t\t\t</OriginLocation>\n" +
"\t\t\t\t\t<FinalDestinationLocation>\n" +
"\t\t\t\t\t\t<ID>CDG</ID>\n" +
"\t\t\t\t\t\t<Name>Paris</Name>\n" +
"\t\t\t\t\t</FinalDestinationLocation>\n" +
"\t\t\t\t\t<IncludedMasterConsignmentItem>\n" +
"\t\t\t\t\t\t<TypeCode listAgencyID=\"1\">CONSOLIDATION</TypeCode>\n" +
"\t\t\t\t\t</IncludedMasterConsignmentItem>\n" +
"\t\t\t\t</IncludedMasterConsignment>\n" +
"\t\t\t\t<IncludedMasterConsignment>\n" +
"\t\t\t\t\t<GrossWeightMeasure TotalConsignmentWeight=\"260\" unitCode=\"KGM\">260</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">0</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<DensityGroupCode>MC</DensityGroupCode>\n" +
"\t\t\t\t\t<TotalPieceQuantity TotalConsignmentPieces=\"12\">12</TotalPieceQuantity>\n" +
"\t\t\t\t\t<TransportSplitDescription>T</TransportSplitDescription>\n" +
"\t\t\t\t\t<TransportContractDocument>\n" +
"\t\t\t\t\t\t<ID>172-32802184</ID>\n" +
"\t\t\t\t\t\t<TypeCode>741</TypeCode>\n" +
"\t\t\t\t\t</TransportContractDocument>\n" +
"\t\t\t\t\t<OriginLocation>\n" +
"\t\t\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t\t\t\t<Name>ZHENGZHOU</Name>\n" +
"\t\t\t\t\t</OriginLocation>\n" +
"\t\t\t\t\t<FinalDestinationLocation>\n" +
"\t\t\t\t\t\t<ID>HAM</ID>\n" +
"\t\t\t\t\t\t<Name>HAMBURG</Name>\n" +
"\t\t\t\t\t</FinalDestinationLocation>\n" +
"\t\t\t\t\t<IncludedMasterConsignmentItem>\n" +
"\t\t\t\t\t\t<TypeCode listAgencyID=\"1\">CONSOLIDATION</TypeCode>\n" +
"\t\t\t\t\t</IncludedMasterConsignmentItem>\n" +
"\t\t\t\t</IncludedMasterConsignment>\n" +
"\t\t\t\t<IncludedMasterConsignment>\n" +
"\t\t\t\t\t<GrossWeightMeasure TotalConsignmentWeight=\"1988\" unitCode=\"KGM\">225</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">0</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<DensityGroupCode>MC</DensityGroupCode>\n" +
"\t\t\t\t\t<TotalPieceQuantity TotalConsignmentPieces=\"273\">31</TotalPieceQuantity>\n" +
"\t\t\t\t\t<TransportSplitDescription>S</TransportSplitDescription>\n" +
"\t\t\t\t\t<TransportContractDocument>\n" +
"\t\t\t\t\t\t<ID>172-32802210</ID>\n" +
"\t\t\t\t\t\t<TypeCode>741</TypeCode>\n" +
"\t\t\t\t\t</TransportContractDocument>\n" +
"\t\t\t\t\t<OriginLocation>\n" +
"\t\t\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t\t\t\t<Name>ZHENGZHOU</Name>\n" +
"\t\t\t\t\t</OriginLocation>\n" +
"\t\t\t\t\t<FinalDestinationLocation>\n" +
"\t\t\t\t\t\t<ID>STR</ID>\n" +
"\t\t\t\t\t\t<Name>Stuttgart</Name>\n" +
"\t\t\t\t\t</FinalDestinationLocation>\n" +
"\t\t\t\t\t<IncludedMasterConsignmentItem>\n" +
"\t\t\t\t\t\t<TypeCode listAgencyID=\"1\">CONSOLIDATION</TypeCode>\n" +
"\t\t\t\t\t</IncludedMasterConsignmentItem>\n" +
"\t\t\t\t</IncludedMasterConsignment>\n" +
"\t\t\t</AssociatedTransportCargo>\n" +
"\t\t\t<AssociatedTransportCargo>\n" +
"\t\t\t\t<TypeCode>ULD</TypeCode>\n" +
"\t\t\t\t<UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t\t<ID>50791</ID>\n" +
"\t\t\t\t\t<GrossWeightMeasure unitCode=\"KGM\">2850</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">10.89</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<PieceQuantity>125</PieceQuantity>\n" +
"\t\t\t\t\t<CharacteristicCode>PMC</CharacteristicCode>\n" +
"\t\t\t\t\t<PositioningEvent>\n" +
"\t\t\t\t\t\t<OccurrencePositioningLocation>\n" +
"\t\t\t\t\t\t\t<ID>ATL</ID>\n" +
"\t\t\t\t\t\t</OccurrencePositioningLocation>\n" +
"\t\t\t\t\t</PositioningEvent>\n" +
"\t\t\t\t\t<OperatingParty>\n" +
"\t\t\t\t\t\t<PrimaryID schemeAgencyID=\"3\">R7</PrimaryID>\n" +
"\t\t\t\t\t</OperatingParty>\n" +
"\t\t\t\t</UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t<IncludedMasterConsignment>\n" +
"\t\t\t\t\t<GrossWeightMeasure TotalConsignmentWeight=\"2850\" unitCode=\"KGM\">2850</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">10.89</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<DensityGroupCode>MC</DensityGroupCode>\n" +
"\t\t\t\t\t<TotalPieceQuantity TotalConsignmentPieces=\"125\">125</TotalPieceQuantity>\n" +
"\t\t\t\t\t<TransportSplitDescription>T</TransportSplitDescription>\n" +
"\t\t\t\t\t<TransportContractDocument>\n" +
"\t\t\t\t\t\t<ID>172-32289946</ID>\n" +
"\t\t\t\t\t\t<TypeCode>741</TypeCode>\n" +
"\t\t\t\t\t</TransportContractDocument>\n" +
"\t\t\t\t\t<OriginLocation>\n" +
"\t\t\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t\t\t\t<Name>ZHENGZHOU</Name>\n" +
"\t\t\t\t\t</OriginLocation>\n" +
"\t\t\t\t\t<FinalDestinationLocation>\n" +
"\t\t\t\t\t\t<ID>BLL</ID>\n" +
"\t\t\t\t\t\t<Name>BILLUND</Name>\n" +
"\t\t\t\t\t</FinalDestinationLocation>\n" +
"\t\t\t\t\t<IncludedMasterConsignmentItem>\n" +
"\t\t\t\t\t\t<TypeCode listAgencyID=\"1\">CONSOLIDATION</TypeCode>\n" +
"\t\t\t\t\t</IncludedMasterConsignmentItem>\n" +
"\t\t\t\t</IncludedMasterConsignment>\n" +
"\t\t\t</AssociatedTransportCargo>\n" +
"\t\t\t<AssociatedTransportCargo>\n" +
"\t\t\t\t<TypeCode>ULD</TypeCode>\n" +
"\t\t\t\t<UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t\t<ID>51397</ID>\n" +
"\t\t\t\t\t<GrossWeightMeasure unitCode=\"KGM\">2748</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">12.430865</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<PieceQuantity>141</PieceQuantity>\n" +
"\t\t\t\t\t<CharacteristicCode>PMC</CharacteristicCode>\n" +
"\t\t\t\t\t<PositioningEvent>\n" +
"\t\t\t\t\t\t<OccurrencePositioningLocation>\n" +
"\t\t\t\t\t\t\t<ID>ATL</ID>\n" +
"\t\t\t\t\t\t</OccurrencePositioningLocation>\n" +
"\t\t\t\t\t</PositioningEvent>\n" +
"\t\t\t\t\t<OperatingParty>\n" +
"\t\t\t\t\t\t<PrimaryID schemeAgencyID=\"3\">R7</PrimaryID>\n" +
"\t\t\t\t\t</OperatingParty>\n" +
"\t\t\t\t</UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t<IncludedMasterConsignment>\n" +
"\t\t\t\t\t<GrossWeightMeasure TotalConsignmentWeight=\"7209\" unitCode=\"KGM\">2748</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">12.43</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<DensityGroupCode>MC</DensityGroupCode>\n" +
"\t\t\t\t\t<TotalPieceQuantity TotalConsignmentPieces=\"370\">141</TotalPieceQuantity>\n" +
"\t\t\t\t\t<TransportSplitDescription>S</TransportSplitDescription>\n" +
"\t\t\t\t\t<TransportContractDocument>\n" +
"\t\t\t\t\t\t<ID>172-32625062</ID>\n" +
"\t\t\t\t\t\t<TypeCode>741</TypeCode>\n" +
"\t\t\t\t\t</TransportContractDocument>\n" +
"\t\t\t\t\t<OriginLocation>\n" +
"\t\t\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t\t\t\t<Name>ZHENGZHOU</Name>\n" +
"\t\t\t\t\t</OriginLocation>\n" +
"\t\t\t\t\t<FinalDestinationLocation>\n" +
"\t\t\t\t\t\t<ID>LUX</ID>\n" +
"\t\t\t\t\t\t<Name>Luxembourg </Name>\n" +
"\t\t\t\t\t</FinalDestinationLocation>\n" +
"\t\t\t\t\t<IncludedMasterConsignmentItem>\n" +
"\t\t\t\t\t\t<TypeCode listAgencyID=\"1\">CONSOLIDATION</TypeCode>\n" +
"\t\t\t\t\t</IncludedMasterConsignmentItem>\n" +
"\t\t\t\t</IncludedMasterConsignment>\n" +
"\t\t\t</AssociatedTransportCargo>\n" +
"\t\t\t<AssociatedTransportCargo>\n" +
"\t\t\t\t<TypeCode>ULD</TypeCode>\n" +
"\t\t\t\t<UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t\t<ID>54652</ID>\n" +
"\t\t\t\t\t<GrossWeightMeasure unitCode=\"KGM\">2490</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">0</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<PieceQuantity>85</PieceQuantity>\n" +
"\t\t\t\t\t<CharacteristicCode>PMC</CharacteristicCode>\n" +
"\t\t\t\t\t<PositioningEvent>\n" +
"\t\t\t\t\t\t<OccurrencePositioningLocation>\n" +
"\t\t\t\t\t\t\t<ID>ATL</ID>\n" +
"\t\t\t\t\t\t</OccurrencePositioningLocation>\n" +
"\t\t\t\t\t</PositioningEvent>\n" +
"\t\t\t\t\t<OperatingParty>\n" +
"\t\t\t\t\t\t<PrimaryID schemeAgencyID=\"3\">R7</PrimaryID>\n" +
"\t\t\t\t\t</OperatingParty>\n" +
"\t\t\t\t</UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t<IncludedMasterConsignment>\n" +
"\t\t\t\t\t<GrossWeightMeasure TotalConsignmentWeight=\"8765\" unitCode=\"KGM\">2490</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">0</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<DensityGroupCode>MC</DensityGroupCode>\n" +
"\t\t\t\t\t<TotalPieceQuantity TotalConsignmentPieces=\"256\">85</TotalPieceQuantity>\n" +
"\t\t\t\t\t<TransportSplitDescription>S</TransportSplitDescription>\n" +
"\t\t\t\t\t<TransportContractDocument>\n" +
"\t\t\t\t\t\t<ID>172-22896414</ID>\n" +
"\t\t\t\t\t\t<TypeCode>741</TypeCode>\n" +
"\t\t\t\t\t</TransportContractDocument>\n" +
"\t\t\t\t\t<OriginLocation>\n" +
"\t\t\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t\t\t\t<Name>ZHENGZHOU</Name>\n" +
"\t\t\t\t\t</OriginLocation>\n" +
"\t\t\t\t\t<FinalDestinationLocation>\n" +
"\t\t\t\t\t\t<ID>LUX</ID>\n" +
"\t\t\t\t\t\t<Name>Luxembourg </Name>\n" +
"\t\t\t\t\t</FinalDestinationLocation>\n" +
"\t\t\t\t\t<IncludedMasterConsignmentItem>\n" +
"\t\t\t\t\t\t<TypeCode listAgencyID=\"1\">CONSOLIDATION</TypeCode>\n" +
"\t\t\t\t\t</IncludedMasterConsignmentItem>\n" +
"\t\t\t\t</IncludedMasterConsignment>\n" +
"\t\t\t</AssociatedTransportCargo>\n" +
"\t\t\t<AssociatedTransportCargo>\n" +
"\t\t\t\t<TypeCode>ULD</TypeCode>\n" +
"\t\t\t\t<UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t\t<ID>55378</ID>\n" +
"\t\t\t\t\t<GrossWeightMeasure unitCode=\"KGM\">4364</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">19.748324</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<PieceQuantity>224</PieceQuantity>\n" +
"\t\t\t\t\t<CharacteristicCode>PMC</CharacteristicCode>\n" +
"\t\t\t\t\t<PositioningEvent>\n" +
"\t\t\t\t\t\t<OccurrencePositioningLocation>\n" +
"\t\t\t\t\t\t\t<ID>ATL</ID>\n" +
"\t\t\t\t\t\t</OccurrencePositioningLocation>\n" +
"\t\t\t\t\t</PositioningEvent>\n" +
"\t\t\t\t\t<OperatingParty>\n" +
"\t\t\t\t\t\t<PrimaryID schemeAgencyID=\"3\">R7</PrimaryID>\n" +
"\t\t\t\t\t</OperatingParty>\n" +
"\t\t\t\t</UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t<IncludedMasterConsignment>\n" +
"\t\t\t\t\t<GrossWeightMeasure TotalConsignmentWeight=\"7209\" unitCode=\"KGM\">4364</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">19.75</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<DensityGroupCode>MC</DensityGroupCode>\n" +
"\t\t\t\t\t<TotalPieceQuantity TotalConsignmentPieces=\"370\">224</TotalPieceQuantity>\n" +
"\t\t\t\t\t<TransportSplitDescription>S</TransportSplitDescription>\n" +
"\t\t\t\t\t<TransportContractDocument>\n" +
"\t\t\t\t\t\t<ID>172-32625062</ID>\n" +
"\t\t\t\t\t\t<TypeCode>741</TypeCode>\n" +
"\t\t\t\t\t</TransportContractDocument>\n" +
"\t\t\t\t\t<OriginLocation>\n" +
"\t\t\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t\t\t\t<Name>ZHENGZHOU</Name>\n" +
"\t\t\t\t\t</OriginLocation>\n" +
"\t\t\t\t\t<FinalDestinationLocation>\n" +
"\t\t\t\t\t\t<ID>LUX</ID>\n" +
"\t\t\t\t\t\t<Name>Luxembourg </Name>\n" +
"\t\t\t\t\t</FinalDestinationLocation>\n" +
"\t\t\t\t\t<IncludedMasterConsignmentItem>\n" +
"\t\t\t\t\t\t<TypeCode listAgencyID=\"1\">CONSOLIDATION</TypeCode>\n" +
"\t\t\t\t\t</IncludedMasterConsignmentItem>\n" +
"\t\t\t\t</IncludedMasterConsignment>\n" +
"\t\t\t</AssociatedTransportCargo>\n" +
"\t\t\t<AssociatedTransportCargo>\n" +
"\t\t\t\t<TypeCode>ULD</TypeCode>\n" +
"\t\t\t\t<UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t\t<ID>60364</ID>\n" +
"\t\t\t\t\t<GrossWeightMeasure unitCode=\"KGM\">2415</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">0</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<PieceQuantity>76</PieceQuantity>\n" +
"\t\t\t\t\t<CharacteristicCode>PMC</CharacteristicCode>\n" +
"\t\t\t\t\t<PositioningEvent>\n" +
"\t\t\t\t\t\t<OccurrencePositioningLocation>\n" +
"\t\t\t\t\t\t\t<ID>ATL</ID>\n" +
"\t\t\t\t\t\t</OccurrencePositioningLocation>\n" +
"\t\t\t\t\t</PositioningEvent>\n" +
"\t\t\t\t\t<OperatingParty>\n" +
"\t\t\t\t\t\t<PrimaryID schemeAgencyID=\"3\">R7</PrimaryID>\n" +
"\t\t\t\t\t</OperatingParty>\n" +
"\t\t\t\t</UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t<IncludedMasterConsignment>\n" +
"\t\t\t\t\t<GrossWeightMeasure TotalConsignmentWeight=\"8765\" unitCode=\"KGM\">2415</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">0</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<DensityGroupCode>MC</DensityGroupCode>\n" +
"\t\t\t\t\t<TotalPieceQuantity TotalConsignmentPieces=\"256\">76</TotalPieceQuantity>\n" +
"\t\t\t\t\t<TransportSplitDescription>S</TransportSplitDescription>\n" +
"\t\t\t\t\t<TransportContractDocument>\n" +
"\t\t\t\t\t\t<ID>172-22896414</ID>\n" +
"\t\t\t\t\t\t<TypeCode>741</TypeCode>\n" +
"\t\t\t\t\t</TransportContractDocument>\n" +
"\t\t\t\t\t<OriginLocation>\n" +
"\t\t\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t\t\t\t<Name>ZHENGZHOU</Name>\n" +
"\t\t\t\t\t</OriginLocation>\n" +
"\t\t\t\t\t<FinalDestinationLocation>\n" +
"\t\t\t\t\t\t<ID>LUX</ID>\n" +
"\t\t\t\t\t\t<Name>Luxembourg </Name>\n" +
"\t\t\t\t\t</FinalDestinationLocation>\n" +
"\t\t\t\t\t<IncludedMasterConsignmentItem>\n" +
"\t\t\t\t\t\t<TypeCode listAgencyID=\"1\">CONSOLIDATION</TypeCode>\n" +
"\t\t\t\t\t</IncludedMasterConsignmentItem>\n" +
"\t\t\t\t</IncludedMasterConsignment>\n" +
"\t\t\t</AssociatedTransportCargo>\n" +
"\t\t\t<AssociatedTransportCargo>\n" +
"\t\t\t\t<TypeCode>ULD</TypeCode>\n" +
"\t\t\t\t<UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t\t<ID>62668</ID>\n" +
"\t\t\t\t\t<GrossWeightMeasure unitCode=\"KGM\">97</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">0.440811</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<PieceQuantity>5</PieceQuantity>\n" +
"\t\t\t\t\t<CharacteristicCode>PMC</CharacteristicCode>\n" +
"\t\t\t\t\t<PositioningEvent>\n" +
"\t\t\t\t\t\t<OccurrencePositioningLocation>\n" +
"\t\t\t\t\t\t\t<ID>ATL</ID>\n" +
"\t\t\t\t\t\t</OccurrencePositioningLocation>\n" +
"\t\t\t\t\t</PositioningEvent>\n" +
"\t\t\t\t\t<OperatingParty>\n" +
"\t\t\t\t\t\t<PrimaryID schemeAgencyID=\"3\">R7</PrimaryID>\n" +
"\t\t\t\t\t</OperatingParty>\n" +
"\t\t\t\t</UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t<IncludedMasterConsignment>\n" +
"\t\t\t\t\t<GrossWeightMeasure TotalConsignmentWeight=\"7209\" unitCode=\"KGM\">97</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">0.44</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<DensityGroupCode>MC</DensityGroupCode>\n" +
"\t\t\t\t\t<TotalPieceQuantity TotalConsignmentPieces=\"370\">5</TotalPieceQuantity>\n" +
"\t\t\t\t\t<TransportSplitDescription>S</TransportSplitDescription>\n" +
"\t\t\t\t\t<TransportContractDocument>\n" +
"\t\t\t\t\t\t<ID>172-32625062</ID>\n" +
"\t\t\t\t\t\t<TypeCode>741</TypeCode>\n" +
"\t\t\t\t\t</TransportContractDocument>\n" +
"\t\t\t\t\t<OriginLocation>\n" +
"\t\t\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t\t\t\t<Name>ZHENGZHOU</Name>\n" +
"\t\t\t\t\t</OriginLocation>\n" +
"\t\t\t\t\t<FinalDestinationLocation>\n" +
"\t\t\t\t\t\t<ID>LUX</ID>\n" +
"\t\t\t\t\t\t<Name>Luxembourg </Name>\n" +
"\t\t\t\t\t</FinalDestinationLocation>\n" +
"\t\t\t\t\t<IncludedMasterConsignmentItem>\n" +
"\t\t\t\t\t\t<TypeCode listAgencyID=\"1\">CONSOLIDATION</TypeCode>\n" +
"\t\t\t\t\t</IncludedMasterConsignmentItem>\n" +
"\t\t\t\t</IncludedMasterConsignment>\n" +
"\t\t\t</AssociatedTransportCargo>\n" +
"\t\t\t<AssociatedTransportCargo>\n" +
"\t\t\t\t<TypeCode>ULD</TypeCode>\n" +
"\t\t\t\t<UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t\t<ID>71695</ID>\n" +
"\t\t\t\t\t<GrossWeightMeasure unitCode=\"KGM\">1300</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">0</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<PieceQuantity>8</PieceQuantity>\n" +
"\t\t\t\t\t<CharacteristicCode>PMC</CharacteristicCode>\n" +
"\t\t\t\t\t<PositioningEvent>\n" +
"\t\t\t\t\t\t<OccurrencePositioningLocation>\n" +
"\t\t\t\t\t\t\t<ID>ATL</ID>\n" +
"\t\t\t\t\t\t</OccurrencePositioningLocation>\n" +
"\t\t\t\t\t</PositioningEvent>\n" +
"\t\t\t\t\t<OperatingParty>\n" +
"\t\t\t\t\t\t<PrimaryID schemeAgencyID=\"3\">R7</PrimaryID>\n" +
"\t\t\t\t\t</OperatingParty>\n" +
"\t\t\t\t</UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t<IncludedMasterConsignment>\n" +
"\t\t\t\t\t<GrossWeightMeasure TotalConsignmentWeight=\"8765\" unitCode=\"KGM\">1300</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">0</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<DensityGroupCode>MC</DensityGroupCode>\n" +
"\t\t\t\t\t<TotalPieceQuantity TotalConsignmentPieces=\"256\">8</TotalPieceQuantity>\n" +
"\t\t\t\t\t<TransportSplitDescription>S</TransportSplitDescription>\n" +
"\t\t\t\t\t<TransportContractDocument>\n" +
"\t\t\t\t\t\t<ID>172-22896414</ID>\n" +
"\t\t\t\t\t\t<TypeCode>741</TypeCode>\n" +
"\t\t\t\t\t</TransportContractDocument>\n" +
"\t\t\t\t\t<OriginLocation>\n" +
"\t\t\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t\t\t\t<Name>ZHENGZHOU</Name>\n" +
"\t\t\t\t\t</OriginLocation>\n" +
"\t\t\t\t\t<FinalDestinationLocation>\n" +
"\t\t\t\t\t\t<ID>LUX</ID>\n" +
"\t\t\t\t\t\t<Name>Luxembourg </Name>\n" +
"\t\t\t\t\t</FinalDestinationLocation>\n" +
"\t\t\t\t\t<IncludedMasterConsignmentItem>\n" +
"\t\t\t\t\t\t<TypeCode listAgencyID=\"1\">CONSOLIDATION</TypeCode>\n" +
"\t\t\t\t\t</IncludedMasterConsignmentItem>\n" +
"\t\t\t\t</IncludedMasterConsignment>\n" +
"\t\t\t</AssociatedTransportCargo>\n" +
"\t\t\t<AssociatedTransportCargo>\n" +
"\t\t\t\t<TypeCode>ULD</TypeCode>\n" +
"\t\t\t\t<UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t\t<ID>86386</ID>\n" +
"\t\t\t\t\t<GrossWeightMeasure unitCode=\"KGM\">2748</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">7.82</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<PieceQuantity>167</PieceQuantity>\n" +
"\t\t\t\t\t<CharacteristicCode>PMC</CharacteristicCode>\n" +
"\t\t\t\t\t<PositioningEvent>\n" +
"\t\t\t\t\t\t<OccurrencePositioningLocation>\n" +
"\t\t\t\t\t\t\t<ID>ATL</ID>\n" +
"\t\t\t\t\t\t</OccurrencePositioningLocation>\n" +
"\t\t\t\t\t</PositioningEvent>\n" +
"\t\t\t\t\t<OperatingParty>\n" +
"\t\t\t\t\t\t<PrimaryID schemeAgencyID=\"3\">R7</PrimaryID>\n" +
"\t\t\t\t\t</OperatingParty>\n" +
"\t\t\t\t</UtilizedUnitLoadTransportEquipment>\n" +
"\t\t\t\t<IncludedMasterConsignment>\n" +
"\t\t\t\t\t<GrossWeightMeasure TotalConsignmentWeight=\"2748\" unitCode=\"KGM\">2748</GrossWeightMeasure>\n" +
"\t\t\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">7.82</GrossVolumeMeasure>\n" +
"\t\t\t\t\t<DensityGroupCode>MC</DensityGroupCode>\n" +
"\t\t\t\t\t<TotalPieceQuantity TotalConsignmentPieces=\"167\">167</TotalPieceQuantity>\n" +
"\t\t\t\t\t<TransportSplitDescription>T</TransportSplitDescription>\n" +
"\t\t\t\t\t<TransportContractDocument>\n" +
"\t\t\t\t\t\t<ID>172-32625095</ID>\n" +
"\t\t\t\t\t\t<TypeCode>741</TypeCode>\n" +
"\t\t\t\t\t</TransportContractDocument>\n" +
"\t\t\t\t\t<OriginLocation>\n" +
"\t\t\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t\t\t\t<Name>ZHENGZHOU</Name>\n" +
"\t\t\t\t\t</OriginLocation>\n" +
"\t\t\t\t\t<FinalDestinationLocation>\n" +
"\t\t\t\t\t\t<ID>LUX</ID>\n" +
"\t\t\t\t\t\t<Name>Luxembourg </Name>\n" +
"\t\t\t\t\t</FinalDestinationLocation>\n" +
"\t\t\t\t\t<IncludedMasterConsignmentItem>\n" +
"\t\t\t\t\t\t<TypeCode listAgencyID=\"1\">CONSOLIDATION</TypeCode>\n" +
"\t\t\t\t\t</IncludedMasterConsignmentItem>\n" +
"\t\t\t\t</IncludedMasterConsignment>\n" +
"\t\t\t</AssociatedTransportCargo>\n" +
"\t\t</ArrivalEvent>\n" +
"\t\t<ArrivalEvent>\n" +
"\t\t\t<ScheduledArrivalOccurrenceDateTime>2018-11-18T06:00:00+08:00</ScheduledArrivalOccurrenceDateTime>\n" +
"\t\t\t<ScheduledDepartureOccurrenceDateTime/>\n" +
"\t\t\t<OccurrenceArrivalLocation>\n" +
"\t\t\t\t<ID>ORD</ID>\n" +
"\t\t\t\t<Name>Chicago</Name>\n" +
"\t\t\t\t<TypeCode>Airport</TypeCode>\n" +
"\t\t\t\t<FirstArrivalCountryID>US</FirstArrivalCountryID>\n" +
"\t\t\t</OccurrenceArrivalLocation>\n" +
"\t\t\t<AssociatedTransportCargo>\n" +
"\t\t\t\t<TypeCode>NIL</TypeCode>\n" +
"\t\t\t</AssociatedTransportCargo>\n" +
"\t\t</ArrivalEvent>\n" +
"\t</LogisticsTransportManifest>\n" +
"</MSG>";
@Autowired
private T_ETL_MESSAGE_Service message_service;
// @Scheduled(fixedRate = 5000)
@Scheduled(cron="0/10 * * * * ?")
public void FWB_analysis(){
logger.info("scheduled - fixedRate - print time every 5 seconds:{}", format.format(new Date()) );
String testMsg= "<MSG>\n" +
"\t<META>\n" +
"\t\t<SNDR>TXD</SNDR>\n" +
"\t\t<DDTM>20181114040536</DDTM>\n" +
"\t\t<TYPE>DFME</TYPE>\n" +
"\t\t<STYP>FWB</STYP>\n" +
"\t\t<SEQN>4643187</SEQN>\n" +
"\t</META>\n" +
"\t<MasterConsignment>\n" +
"\t\t<ID>880-83213594</ID>\n" +
"\t\t<TypeCode>741</TypeCode>\n" +
"\t\t<NilCarriageValueIndicator>false</NilCarriageValueIndicator>\n" +
"\t\t<DeclaredValueForCarriageAmount currencyID=\"CNY\">0</DeclaredValueForCarriageAmount>\n" +
"\t\t<NilCustomsValueIndicator>true</NilCustomsValueIndicator>\n" +
"\t\t<DeclaredValueForCustomsAmount currencyID=\"CNY\">NCV</DeclaredValueForCustomsAmount>\n" +
"\t\t<NilInsuranceValueIndicator>true</NilInsuranceValueIndicator>\n" +
"\t\t<InsuranceValueAmount currencyID=\"CNY\">XXX</InsuranceValueAmount>\n" +
"\t\t<TotalChargePrepaidIndicator>true</TotalChargePrepaidIndicator>\n" +
"\t\t<WeightTotalChargeAmount currencyID=\"CNY\">502</WeightTotalChargeAmount>\n" +
"\t\t<ValuationTotalChargeAmount currencyID=\"CNY\">0.00</ValuationTotalChargeAmount>\n" +
"\t\t<TotalDisbursementPrepaidIndicator>true</TotalDisbursementPrepaidIndicator>\n" +
"\t\t<TotalPrepaidChargeAmount currencyID=\"CNY\">613.60</TotalPrepaidChargeAmount>\n" +
"\t\t<TotalCollectChargeAmount currencyID=\"CNY\">0</TotalCollectChargeAmount>\n" +
"\t\t<DestinationCurrencyTotalCollectChargeAmount currencyID=\"CNY\">0</DestinationCurrencyTotalCollectChargeAmount>\n" +
"\t\t<IncludedTareGrossWeightMeasure unitCode=\"KGM\">558.0</IncludedTareGrossWeightMeasure>\n" +
"\t\t<NetWeightMeasure/>\n" +
"\t\t<GrossVolumeMeasure unitCode=\"MTQ\">4.44</GrossVolumeMeasure>\n" +
"\t\t<TotalChargeableWeightMeasure unitCode=\"KGM\">558.0</TotalChargeableWeightMeasure>\n" +
"\t\t<ConsignmentItemQuantity>1</ConsignmentItemQuantity>\n" +
"\t\t<TotalPieceQuantity>74</TotalPieceQuantity>\n" +
"\t\t<TotalLoadedPackageQuantity>74</TotalLoadedPackageQuantity>\n" +
"\t\t<PackageInfo>编织袋</PackageInfo>\n" +
"\t\t<FreightRateTypeCode>Q</FreightRateTypeCode>\n" +
"\t\t<ConsignorParty>\n" +
"\t\t\t<PrimaryID schemeAgencyID=\"1\">HNHH</PrimaryID>\n" +
"\t\t\t<Name>河南汇海物流有限公司</Name>\n" +
"\t\t\t<AccountID>INFOSKY:NULL</AccountID>\n" +
"\t\t\t<PostalStructuredAddress>\n" +
"\t\t\t\t<StreetName>郑州</StreetName>\n" +
"\t\t\t\t<CityName>CGO</CityName>\n" +
"\t\t\t\t<CountryID>CN</CountryID>\n" +
"\t\t\t\t<SpecifiedAddressLocation/>\n" +
"\t\t\t</PostalStructuredAddress>\n" +
"\t\t\t<SpecifiedCargoAgentLocation/>\n" +
"\t\t\t<DefinedTradeContact>\n" +
"\t\t\t\t<DirectTelephoneCommunication>\n" +
"\t\t\t\t\t<CompleteNumber>CGO</CompleteNumber>\n" +
"\t\t\t\t</DirectTelephoneCommunication>\n" +
"\t\t\t</DefinedTradeContact>\n" +
"\t\t</ConsignorParty>\n" +
"\t\t<ConsigneeParty>\n" +
"\t\t\t<PrimaryID schemeAgencyID=\"2\">SK</PrimaryID>\n" +
"\t\t\t<Name>海南顺丰速运有限公司</Name>\n" +
"\t\t\t<AccountID>INFOSKY:NULL</AccountID>\n" +
"\t\t\t<PostalStructuredAddress>\n" +
"\t\t\t\t<StreetName>机场自提</StreetName>\n" +
"\t\t\t\t<CityName>HAK</CityName>\n" +
"\t\t\t\t<CountryID>CN</CountryID>\n" +
"\t\t\t\t<SpecifiedAddressLocation/>\n" +
"\t\t\t</PostalStructuredAddress>\n" +
"\t\t\t<SpecifiedCargoAgentLocation/>\n" +
"\t\t\t<DefinedTradeContact/>\n" +
"\t\t</ConsigneeParty>\n" +
"\t\t<FreightForwarderParty>\n" +
"\t\t\t<Name>CGOSA</Name>\n" +
"\t\t\t<AccountID>INFOSKY:NULL</AccountID>\n" +
"\t\t\t<PostalStructuredAddress>\n" +
"\t\t\t\t<CityName>CGO</CityName>\n" +
"\t\t\t\t<CountryID>CN</CountryID>\n" +
"\t\t\t\t<SpecifiedAddressLocation/>\n" +
"\t\t\t</PostalStructuredAddress>\n" +
"\t\t\t<SpecifiedCargoAgentLocation/>\n" +
"\t\t\t<DefinedTradeContact/>\n" +
"\t\t</FreightForwarderParty>\n" +
"\t\t<AssociatedParty>\n" +
"\t\t\t<PrimaryID/>\n" +
"\t\t\t<Name>CGO</Name>\n" +
"\t\t\t<AccountID>INFOSKY:NULL</AccountID>\n" +
"\t\t\t<RoleCode>AGT</RoleCode>\n" +
"\t\t\t<Role>Agent</Role>\n" +
"\t\t\t<PostalStructuredAddress>\n" +
"\t\t\t\t<CityName>CGO</CityName>\n" +
"\t\t\t\t<CountryID>CN</CountryID>\n" +
"\t\t\t\t<SpecifiedAddressLocation/>\n" +
"\t\t\t</PostalStructuredAddress>\n" +
"\t\t\t<SpecifiedCargoAgentLocation/>\n" +
"\t\t\t<DefinedTradeContact/>\n" +
"\t\t</AssociatedParty>\n" +
"\t\t<AssociatedParty>\n" +
"\t\t\t<PrimaryID/>\n" +
"\t\t\t<Name>CGOHA</Name>\n" +
"\t\t\t<AccountID>INFOSKY:NULL</AccountID>\n" +
"\t\t\t<RoleCode>GHA</RoleCode>\n" +
"\t\t\t<Role>Ground Handling Agent</Role>\n" +
"\t\t\t<PostalStructuredAddress>\n" +
"\t\t\t\t<CityName>CGO</CityName>\n" +
"\t\t\t\t<CountryID>CN</CountryID>\n" +
"\t\t\t\t<SpecifiedAddressLocation/>\n" +
"\t\t\t</PostalStructuredAddress>\n" +
"\t\t\t<SpecifiedCargoAgentLocation/>\n" +
"\t\t\t<DefinedTradeContact/>\n" +
"\t\t</AssociatedParty>\n" +
"\t\t<OriginLocation>\n" +
"\t\t\t<ID>CGO</ID>\n" +
"\t\t</OriginLocation>\n" +
"\t\t<FinalDestinationLocation>\n" +
"\t\t\t<ID>HAK</ID>\n" +
"\t\t</FinalDestinationLocation>\n" +
"\t\t<SpecifiedLogisticsTransportMovement>\n" +
"\t\t\t<StageCode>HU7304/Nov14</StageCode>\n" +
"\t\t\t<ModeCode>4</ModeCode>\n" +
"\t\t\t<Mode>Air Transport</Mode>\n" +
"\t\t\t<ID>HU7304</ID>\n" +
"\t\t\t<SequenceNumeric>1</SequenceNumeric>\n" +
"\t\t\t<UsedLogisticsTransportMeans/>\n" +
"\t\t\t<ArrivalEvent>\n" +
"\t\t\t\t<OccurrenceArrivalLocation>\n" +
"\t\t\t\t\t<ID>HAK</ID>\n" +
"\t\t\t\t</OccurrenceArrivalLocation>\n" +
"\t\t\t</ArrivalEvent>\n" +
"\t\t\t<DepartureEvent>\n" +
"\t\t\t\t<ScheduledOccurrenceDateTime>2018-11-14T00:00:00+08:00</ScheduledOccurrenceDateTime>\n" +
"\t\t\t\t<OccurrenceDepartureLocation>\n" +
"\t\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t\t</OccurrenceDepartureLocation>\n" +
"\t\t\t</DepartureEvent>\n" +
"\t\t</SpecifiedLogisticsTransportMovement>\n" +
"\t\t<IncludedAccountingNote>\n" +
"\t\t\t<ContentCode>20010003普通</ContentCode>\n" +
"\t\t\t<Content>20010003普通</Content>\n" +
"\t\t</IncludedAccountingNote>\n" +
"\t\t<AssociatedConsignmentCustomsProcedure/>\n" +
"\t\t<ApplicableTradeCurrencyExchange>\n" +
"\t\t\t<SourceCurrencyCode>CNY</SourceCurrencyCode>\n" +
"\t\t\t<TargetCurrencyCode>CNY</TargetCurrencyCode>\n" +
"\t\t\t<MarketID>S</MarketID>\n" +
"\t\t\t<ConversionRate>1</ConversionRate>\n" +
"\t\t</ApplicableTradeCurrencyExchange>\n" +
"\t\t<ApplicableLogisticsServiceCharge/>\n" +
"\t\t<ApplicableLogisticsAllowanceCharge>\n" +
"\t\t\t<ID>MY</ID>\n" +
"\t\t\t<Reason>燃油费</Reason>\n" +
"\t\t\t<ActualAmount currencyID=\"CNY\">111.6</ActualAmount>\n" +
"\t\t\t<PartyTypeCode>C</PartyTypeCode>\n" +
"\t\t</ApplicableLogisticsAllowanceCharge>\n" +
"\t\t<SignatoryCarrierAuthentication>\n" +
"\t\t\t<ActualDateTime>2018-11-14T04:02:00</ActualDateTime>\n" +
"\t\t\t<Signatory>牛青</Signatory>\n" +
"\t\t\t<IssueAuthenticationLocation>\n" +
"\t\t\t\t<Name>郑州</Name>\n" +
"\t\t\t</IssueAuthenticationLocation>\n" +
"\t\t</SignatoryCarrierAuthentication>\n" +
"\t\t<IncludedMasterConsignmentItem>\n" +
"\t\t\t<SequenceNumeric>1</SequenceNumeric>\n" +
"\t\t\t<TypeCode listAgencyID=\"1\">PH</TypeCode>\n" +
"\t\t\t<GrossWeightMeasure unitCode=\"KGM\">558.0</GrossWeightMeasure>\n" +
"\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">4.44</GrossVolumeMeasure>\n" +
"\t\t\t<PieceQuantity>74</PieceQuantity>\n" +
"\t\t\t<TareWeightMeasure unitCode=\"KGM\">558.0</TareWeightMeasure>\n" +
"\t\t\t<NatureIdentificationTransportCargo>\n" +
"\t\t\t\t<Identification>手机机头(无电池) 电子主板 上衣 茶叶 大枣 皮带 票证 运动鞋 背包 灯座</Identification>\n" +
"\t\t\t</NatureIdentificationTransportCargo>\n" +
"\t\t\t<OriginCountry/>\n" +
"\t\t\t<AssociatedUnitLoadTransportEquipment>\n" +
"\t\t\t\t<OperatingParty/>\n" +
"\t\t\t</AssociatedUnitLoadTransportEquipment>\n" +
"\t\t\t<TransportLogisticsPackage>\n" +
"\t\t\t\t<ItemQuantity>74</ItemQuantity>\n" +
"\t\t\t\t<LinearSpatialDimension>\n" +
"\t\t\t\t\t<Description>true</Description>\n" +
"\t\t\t\t\t<WidthMeasure unitCode=\"CMT\">40</WidthMeasure>\n" +
"\t\t\t\t\t<LengthMeasure unitCode=\"CMT\">30</LengthMeasure>\n" +
"\t\t\t\t\t<HeightMeasure unitCode=\"CMT\">50</HeightMeasure>\n" +
"\t\t\t\t</LinearSpatialDimension>\n" +
"\t\t\t</TransportLogisticsPackage>\n" +
"\t\t\t<ApplicableFreightRateServiceCharge>\n" +
"\t\t\t\t<CategoryCode>Q</CategoryCode>\n" +
"\t\t\t\t<CommodityItemID>P</CommodityItemID>\n" +
"\t\t\t\t<ChargeableWeightMeasure unitCode=\"KGM\">558.0</ChargeableWeightMeasure>\n" +
"\t\t\t\t<AppliedRate>0.9</AppliedRate>\n" +
"\t\t\t\t<AppliedAmount currencyID=\"CNY\">502</AppliedAmount>\n" +
"\t\t\t</ApplicableFreightRateServiceCharge>\n" +
"\t\t\t<SpecifiedRateCombinationPointLocation/>\n" +
"\t\t</IncludedMasterConsignmentItem>\n" +
"\t\t<ReportedStatus>\n" +
"\t\t\t<ReasonCode>FWB</ReasonCode>\n" +
"\t\t\t<EventTime>\n" +
"\t\t\t\t<OccurrenceDateTime>2018-11-14T04:03:02+08:00</OccurrenceDateTime>\n" +
"\t\t\t\t<DateTimeTypeCode>Actual</DateTimeTypeCode>\n" +
"\t\t\t</EventTime>\n" +
"\t\t\t<SpecifiedLocation>\n" +
"\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t</SpecifiedLocation>\n" +
"\t\t</ReportedStatus>\n" +
"\t</MasterConsignment>\n" +
"</MSG>";
try {
XMLParse xmlParse = new XMLParse(testMsg);
Map resoultMaps = xmlParse.getAllValuesFromXmlString();
logger.info(resoultMaps.toString());
FWBAssociatedParty fwbAssociatedParty = new FWBAssociatedParty();
fwbAssociatedParty.setAwbnumber(xmlParse.getNodeValueFromXmlString( "/MSG/MasterConsignment/ID"));
String[] flight = xmlParse.getNodeValueFromXmlString( "/MSG/MasterConsignment/SpecifiedLogisticsTransportMovement/StageCode").split("/");
String flightDep = xmlParse.getNodeValueFromXmlString( "/MSG/MasterConsignment/SpecifiedLogisticsTransportMovement/DepartureEvent/ScheduledOccurrenceDateTime");
String flight_No = flight[0]; //航班号
String flight_date=flight[1]; //航班日期年月
fwbAssociatedParty.setFlightnumber(flight_No);
//读取fwb报文
List<T_ETL_MESSAGE> messageList = message_service.selectFWB();
for (T_ETL_MESSAGE message : messageList){
String content = message.getContent();
BigDecimal fid = message.getFid();
//根据离港日期取航班日期年份
ZonedDateTime depZoneTime = ZonedDateTime.parse(flightDep);
String year = String.valueOf(depZoneTime.getYear());
//合并航班日期和离港年份,组成完整日期格式
flight_date = flight_date+year;
DateTimeFormatter formatter = DateTimeFormatter.ofLocalizedDate(FormatStyle.FULL);
formatter = DateTimeFormatter.ofPattern("MMMddyyyy",Locale.ENGLISH);
LocalDate date =LocalDate.parse(flight_date,formatter);
//写入对象
fwbAssociatedParty.setFlightdate(date);
//以上关于运单的信息与航班信息已解析完成
T_ETL_FWB_Handle fwb_handle = new T_ETL_FWB_Handle();
fwb_handle.insertHandle(content,fid);
}
//开始读取相同节点数组
List<Map> stype_value =xmlParse.getNodeValuesFromXmlString( "/MSG/MasterConsignment/AssociatedParty");
for (Map map :stype_value){
fwbAssociatedParty.setPrimaryid((String) map.get("PrimaryID"));
fwbAssociatedParty.setName(map.get("Name").toString());
fwbAssociatedParty.setAccountid(map.get("AccountID").toString());
fwbAssociatedParty.setRolecode(map.get("RoleCode").toString());
fwbAssociatedParty.setRole(map.get("Role").toString());
}
//
logger.info(stype_value.toString());
}catch (Exception var7){
logger.error(var7.toString());
}
long beginTime = System.currentTimeMillis();
}
/**
... ... @@ -1431,13 +76,8 @@ public class FWBTask {
logger.info("scheduled - cron - print time every 10 seconds:{}", format.format(new Date()) );
try{
XMLParse xmlParse = new XMLParse(PFFM);
List<Map> stype_value =xmlParse.getNodeValuesFromXmlString( "/MSG/LogisticsTransportManifest/ArrivalEvent");
logger.info(stype_value.toString());
}catch (Exception e){
logger.error(e.toString());
}
}
}
... ...
package com.example.demo.service;
import com.example.demo.model.FWBAssociatedParty;
public interface FWBAsssociatedPartyService {
int insert(FWBAssociatedParty record);
int insertSelective(FWBAssociatedParty record);
}
package com.example.demo.service;
import com.example.demo.model.T_ETL_MESSAGE;
import java.math.BigDecimal;
import java.util.List;
public interface T_ETL_MESSAGE_Service {
T_ETL_MESSAGE selectByPrimaryKey(BigDecimal fid);
List<T_ETL_MESSAGE> selectFWB();
}
... ...
package com.example.demo.service;
import com.example.demo.model.T_TXD_FWBPARTY;
public interface T_TXD_FWBPARTY_Service {
int insert(T_TXD_FWBPARTY record);
}
... ...
package com.example.demo.service;
import com.example.demo.model.T_TXD_FWBSTATUS;
public interface T_TXD_FWBSTATUS_Service {
int insert(T_TXD_FWBSTATUS record);
}
... ...
package com.example.demo.service;
import com.example.demo.model.T_TXD_FWB;
import java.math.BigDecimal;
public interface T_TXD_FWB_Service {
int deleteByPrimaryKey(BigDecimal fid);
int insert(T_TXD_FWB record);
int insertSelective(T_TXD_FWB record);
T_TXD_FWB selectByPrimaryKey(BigDecimal fid);
int updateByPrimaryKeySelective(T_TXD_FWB record);
int updateByPrimaryKey(T_TXD_FWB record);
}
... ...
package com.example.demo.service;
import com.example.demo.model.User;
import com.github.pagehelper.PageInfo;
public interface UserService {
int deleteByPrimaryKey(Integer userId);
int insert(User record);
int insertSelective(User record);
User selectByPrimaryKey(Integer userId);
int updateByPrimaryKeySelective(User record);
int updateByPrimaryKey(User record);
PageInfo<User> findAllUser(int pageNum, int pageSize);
}
package com.example.demo.service.imp;
import com.example.demo.mapper.FWBAssociatedPartyMapper;
import com.example.demo.model.FWBAssociatedParty;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service("fwbAssService")
public class FWBAsssociatedPartyService implements com.example.demo.service.FWBAsssociatedPartyService {
@Autowired
FWBAssociatedPartyMapper fwbAssociatedPartyMapper;
public int insert(FWBAssociatedParty record){
return fwbAssociatedPartyMapper.insert(record);
}
public int insertSelective(FWBAssociatedParty record){
return fwbAssociatedPartyMapper.insertSelective(record);
}
}
package com.example.demo.service.imp;
import com.example.demo.mapper.T_ETL_MESSAGEMapper;
import com.example.demo.model.T_ETL_MESSAGE;
import com.example.demo.service.T_ETL_MESSAGE_Service;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.math.BigDecimal;
import java.util.List;
@Service("etlMessageService")
public class T_ETL_MESSAGE_ServiceImp implements T_ETL_MESSAGE_Service{
@Autowired
private T_ETL_MESSAGEMapper t_etl_messageMapper;
public T_ETL_MESSAGE selectByPrimaryKey(BigDecimal fid){
return t_etl_messageMapper.selectByPrimaryKey(fid);
}
public List<T_ETL_MESSAGE> selectFWB(){
return t_etl_messageMapper.selectFWB();
}
}
... ...
package com.example.demo.service.imp;
import com.example.demo.mapper.T_TXD_FWBPARTYMapper;
import com.example.demo.model.T_TXD_FWBPARTY;
import com.example.demo.service.T_TXD_FWBPARTY_Service;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service("fwbPartyService")
public class T_TXD_FWBPARTY_ServiceImp implements T_TXD_FWBPARTY_Service{
@Autowired
private T_TXD_FWBPARTYMapper fwbpartyMapper;
public int insert(T_TXD_FWBPARTY record){
return fwbpartyMapper.insert(record);
}
}
... ...
package com.example.demo.service.imp;
import com.example.demo.mapper.T_TXD_FWBSTATUSMapper;
import com.example.demo.model.T_TXD_FWBSTATUS;
import com.example.demo.service.T_TXD_FWBSTATUS_Service;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service("fwbStatusService")
public class T_TXD_FWBSTATUS_ServiceImp implements T_TXD_FWBSTATUS_Service{
@Autowired
private T_TXD_FWBSTATUSMapper fwbstatusMapper;
public int insert(T_TXD_FWBSTATUS record){
return fwbstatusMapper.insert(record);
}
}
... ...
package com.example.demo.service.imp;
import com.example.demo.mapper.T_TXD_FWBMapper;
import com.example.demo.model.T_TXD_FWB;
import com.example.demo.service.T_TXD_FWB_Service;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.math.BigDecimal;
@Service("fwbService")
public class T_TXD_FWB_ServiceImp implements T_TXD_FWB_Service{
@Autowired
private T_TXD_FWBMapper t_txd_fwbMapper;
public int deleteByPrimaryKey(BigDecimal fid){
return t_txd_fwbMapper.deleteByPrimaryKey(fid);
}
public int insert(T_TXD_FWB record){
return t_txd_fwbMapper.insert(record);
}
public int insertSelective(T_TXD_FWB record){
return t_txd_fwbMapper.insertSelective(record);
}
public T_TXD_FWB selectByPrimaryKey(BigDecimal fid){
return t_txd_fwbMapper.selectByPrimaryKey(fid);
}
public int updateByPrimaryKeySelective(T_TXD_FWB record){
return t_txd_fwbMapper.updateByPrimaryKeySelective(record);
}
public int updateByPrimaryKey(T_TXD_FWB record){
return t_txd_fwbMapper.updateByPrimaryKey(record);
}
}
... ...
package com.example.demo.service.imp;
import com.example.demo.mapper.UserMapper;
import com.example.demo.model.User;
import com.example.demo.service.UserService;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
@Service(value = "userService")
public class UserServiceImp implements UserService{
@Autowired
private UserMapper userMapper;
public int deleteByPrimaryKey(Integer userId){
return userMapper.deleteByPrimaryKey(userId);
}
public int insert(User record){
return userMapper.insert(record);
}
public int insertSelective(User record){
return userMapper.insertSelective(record);
}
public User selectByPrimaryKey(Integer userId){
return userMapper.selectByPrimaryKey(userId);
}
public int updateByPrimaryKeySelective(User record){
return userMapper.updateByPrimaryKeySelective(record);
}
public int updateByPrimaryKey(User record){
return userMapper.updateByPrimaryKey(record);
}
public PageInfo<User> findAllUser(int pageNum, int pageSize){
PageHelper.startPage(pageNum,pageSize);
List<User> users = userMapper.selectUsers();
PageInfo<User> result = new PageInfo<User>(users);
return result;
}
}
package com.example.demo.util;
import org.springframework.lang.Nullable;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.util.Map;
public class Helper {
/**
* Object转BigDecimal类型-MRZ-2018年5月14日09:56:26
*
* @param value 要转的object类型
* @return 转成的BigDecimal类型数据
*/
static public BigDecimal getBigDecimal(Object value) {
BigDecimal ret = null;
if (value != null) {
if (value instanceof BigDecimal) {
ret = (BigDecimal) value;
} else if (value instanceof String) {
ret = new BigDecimal((String) value);
} else if (value instanceof BigInteger) {
ret = new BigDecimal((BigInteger) value);
} else if (value instanceof Number) {
ret = new BigDecimal(((Number) value).doubleValue());
} else {
throw new ClassCastException("Not possible to coerce [" + value + "] from class " + value.getClass() + " into a BigDecimal.");
}
}
return ret;
}
/**
* 判断map是否包含key,包含返回KEY值,不包含返回NULL
* @param map
* @param key
* @return
*/
@Nullable static public Object CheckMapKey(Map map, String key){
boolean contains = map.containsKey(key); //判断是否包含指定的键值
if (contains) { //如果条件为真
return map.get(key);
} else {
return null;
}
}
}
... ...
... ... @@ -10,10 +10,12 @@ eureka.client.service-url.defaultZone=http://localhost:7001/eureka/
#服务名
spring.application.name=fileServer-01
spring.datasource.name=test
spring.datasource.url=jdbc:mysql://127.0.0.1:3307/statistics
spring.datasource.username=root
spring.datasource.password=
#spring.datasource.name=CGOETL
spring.datasource.type=com.alibaba.druid.pool.DruidDataSource
spring.datasource.driver-class-name=oracle.jdbc.OracleDriver
spring.datasource.url=jdbc:oracle:thin:@10.50.3.68:1521:CGODW
spring.datasource.username=cgoetl
spring.datasource.password=1q2w3e4r
#配置初始化大小/最小/最大
spring.datasource.druid.initial-size=1
spring.datasource.druid.min-idle=1
... ... @@ -24,15 +26,15 @@ spring.datasource.druid.max-wait=60000
spring.datasource.druid.min-evictable-idle-time-millis=300000
#间隔多久进行一次检测,检测需要关闭的空闲连接
spring.datasource.druid.time-between-eviction-runs-millis=60000
spring.datasource.druid.validation-query=SELECT 'x'
spring.datasource.druid.validation-query=SELECT 'x' FROM DUAL
spring.datasource.druid.test-while-idle=true
spring.datasource.druid.test-on-borrow=false
spring.datasource.druid.test-on-return=false
spring.datasource.type=com.alibaba.druid.pool.DruidDataSource
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.druid.default-auto-commit=true
mybatis.mapper-locations=classpath:mapping/*.xml
mybatis.type-aliases-package=com.example.demo.model
logging.level.com.example.demo.mapper=DEBUG
pagehelper.helper-dialect=mysql
pagehelper.reasonable=true
... ...
... ... @@ -4,7 +4,8 @@
"http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">
<generatorConfiguration>
<!-- 数据库驱动:选择你的本地硬盘上面的数据库驱动包-->
<classPathEntry location="/Users/mrz/Downloads/mybatis-generator-core-1.3.2/lib/mysql-connector-java-5.1.25-bin.jar"/>
<!--<classPathEntry location="/Users/mrz/Downloads/mybatis-generator-core-1.3.2/lib/mysql-connector-java-5.1.25-bin.jar"/>-->
<classPathEntry location="/Users/mrz/Documents/maven/ojdbc6.jar"/>
<context id="DB2Tables" targetRuntime="MyBatis3">
<commentGenerator>
<property name="suppressDate" value="true"/>
... ... @@ -12,8 +13,18 @@
<property name="suppressAllComments" value="true"/>
</commentGenerator>
<!--数据库链接URL,用户名、密码 -->
<jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://127.0.0.1:3307/statistics" userId="root" password="">
<!--<jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://127.0.0.1:3307/statistics" userId="root" password="">-->
<!--</jdbcConnection>-->
<jdbcConnection driverClass="oracle.jdbc.driver.OracleDriver"
connectionURL="jdbc:oracle:thin:@10.50.3.68:1521:CGODW"
userId="cgoetl"
password="1q2w3e4r">
</jdbcConnection>
<!-- 默认false,把JDBC DECIMAL 和 NUMERIC 类型解析为 Integer,为 true时把JDBC DECIMAL 和
NUMERIC 类型解析为java.math.BigDecimal -->
<!--<javaTypeResolver>-->
<!--<property name="forceBigDecimals" value="true" />-->
<!--</javaTypeResolver>-->
<javaTypeResolver>
<property name="forceBigDecimals" value="false"/>
</javaTypeResolver>
... ... @@ -31,6 +42,6 @@
<property name="enableSubPackages" value="true"/>
</javaClientGenerator>
<!-- 要生成的表 tableName是数据库中的表名或视图名 domainObjectName是实体类名-->
<table tableName="AssociatedParty" domainObjectName="FWBAssociatedParty" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
<table tableName="T_ETL_MESSAGE" domainObjectName="T_ETL_MESSAGE" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
</context>
</generatorConfiguration>
\ No newline at end of file
... ...
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.example.demo.mapper.FWBAssociatedPartyMapper" >
<resultMap id="BaseResultMap" type="com.example.demo.model.FWBAssociatedParty" >
<id column="ID" property="id" jdbcType="INTEGER" />
<result column="PrimaryID" property="primaryid" jdbcType="VARCHAR" />
<result column="Name" property="name" jdbcType="VARCHAR" />
<result column="AccountID" property="accountid" jdbcType="VARCHAR" />
<result column="RoleCode" property="rolecode" jdbcType="VARCHAR" />
<result column="Role" property="role" jdbcType="VARCHAR" />
<result column="CityName" property="cityname" jdbcType="VARCHAR" />
<result column="CountryID" property="countryid" jdbcType="VARCHAR" />
<result column="AWBNumber" property="awbnumber" jdbcType="VARCHAR" />
<result column="FlightDate" property="flightdate" jdbcType="TIMESTAMP" />
<result column="FlightNumber" property="flightnumber" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List" >
ID, PrimaryID, Name, AccountID, RoleCode, Role, CityName, CountryID, AWBNumber, FlightDate,
FlightNumber
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
select
<include refid="Base_Column_List" />
from AssociatedParty
where ID = #{id,jdbcType=INTEGER}
</select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
delete from AssociatedParty
where ID = #{id,jdbcType=INTEGER}
</delete>
<insert id="insert" parameterType="com.example.demo.model.FWBAssociatedParty" >
insert into AssociatedParty (ID, PrimaryID, Name,
AccountID, RoleCode, Role,
CityName, CountryID, AWBNumber,
FlightDate, FlightNumber)
values (#{id,jdbcType=INTEGER}, #{primaryid,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR},
#{accountid,jdbcType=VARCHAR}, #{rolecode,jdbcType=VARCHAR}, #{role,jdbcType=VARCHAR},
#{cityname,jdbcType=VARCHAR}, #{countryid,jdbcType=VARCHAR}, #{awbnumber,jdbcType=VARCHAR},
#{flightdate,jdbcType=TIMESTAMP}, #{flightnumber,jdbcType=VARCHAR})
</insert>
<insert id="insertSelective" parameterType="com.example.demo.model.FWBAssociatedParty" >
insert into AssociatedParty
<trim prefix="(" suffix=")" suffixOverrides="," >
<if test="id != null" >
ID,
</if>
<if test="primaryid != null" >
PrimaryID,
</if>
<if test="name != null" >
Name,
</if>
<if test="accountid != null" >
AccountID,
</if>
<if test="rolecode != null" >
RoleCode,
</if>
<if test="role != null" >
Role,
</if>
<if test="cityname != null" >
CityName,
</if>
<if test="countryid != null" >
CountryID,
</if>
<if test="awbnumber != null" >
AWBNumber,
</if>
<if test="flightdate != null" >
FlightDate,
</if>
<if test="flightnumber != null" >
FlightNumber,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides="," >
<if test="id != null" >
#{id,jdbcType=INTEGER},
</if>
<if test="primaryid != null" >
#{primaryid,jdbcType=VARCHAR},
</if>
<if test="name != null" >
#{name,jdbcType=VARCHAR},
</if>
<if test="accountid != null" >
#{accountid,jdbcType=VARCHAR},
</if>
<if test="rolecode != null" >
#{rolecode,jdbcType=VARCHAR},
</if>
<if test="role != null" >
#{role,jdbcType=VARCHAR},
</if>
<if test="cityname != null" >
#{cityname,jdbcType=VARCHAR},
</if>
<if test="countryid != null" >
#{countryid,jdbcType=VARCHAR},
</if>
<if test="awbnumber != null" >
#{awbnumber,jdbcType=VARCHAR},
</if>
<if test="flightdate != null" >
#{flightdate,jdbcType=TIMESTAMP},
</if>
<if test="flightnumber != null" >
#{flightnumber,jdbcType=VARCHAR},
</if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective" parameterType="com.example.demo.model.FWBAssociatedParty" >
update AssociatedParty
<set >
<if test="primaryid != null" >
PrimaryID = #{primaryid,jdbcType=VARCHAR},
</if>
<if test="name != null" >
Name = #{name,jdbcType=VARCHAR},
</if>
<if test="accountid != null" >
AccountID = #{accountid,jdbcType=VARCHAR},
</if>
<if test="rolecode != null" >
RoleCode = #{rolecode,jdbcType=VARCHAR},
</if>
<if test="role != null" >
Role = #{role,jdbcType=VARCHAR},
</if>
<if test="cityname != null" >
CityName = #{cityname,jdbcType=VARCHAR},
</if>
<if test="countryid != null" >
CountryID = #{countryid,jdbcType=VARCHAR},
</if>
<if test="awbnumber != null" >
AWBNumber = #{awbnumber,jdbcType=VARCHAR},
</if>
<if test="flightdate != null" >
FlightDate = #{flightdate,jdbcType=TIMESTAMP},
</if>
<if test="flightnumber != null" >
FlightNumber = #{flightnumber,jdbcType=VARCHAR},
</if>
</set>
where ID = #{id,jdbcType=INTEGER}
</update>
<update id="updateByPrimaryKey" parameterType="com.example.demo.model.FWBAssociatedParty" >
update AssociatedParty
set PrimaryID = #{primaryid,jdbcType=VARCHAR},
Name = #{name,jdbcType=VARCHAR},
AccountID = #{accountid,jdbcType=VARCHAR},
RoleCode = #{rolecode,jdbcType=VARCHAR},
Role = #{role,jdbcType=VARCHAR},
CityName = #{cityname,jdbcType=VARCHAR},
CountryID = #{countryid,jdbcType=VARCHAR},
AWBNumber = #{awbnumber,jdbcType=VARCHAR},
FlightDate = #{flightdate,jdbcType=TIMESTAMP},
FlightNumber = #{flightnumber,jdbcType=VARCHAR}
where ID = #{id,jdbcType=INTEGER}
</update>
</mapper>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.example.demo.mapper.T_ETL_MESSAGEMapper">
<resultMap id="BaseResultMap" type="com.example.demo.model.T_ETL_MESSAGE">
<id column="FID" jdbcType="DECIMAL" property="fid" />
<result column="OPER" jdbcType="VARCHAR" property="oper" />
<result column="SNTM" jdbcType="TIMESTAMP" property="sntm" />
<result column="SNDR" jdbcType="VARCHAR" property="sndr" />
<result column="RCVR" jdbcType="VARCHAR" property="rcvr" />
<result column="SEQN" jdbcType="VARCHAR" property="seqn" />
<result column="DDTM" jdbcType="TIMESTAMP" property="ddtm" />
<result column="TYPE" jdbcType="VARCHAR" property="type" />
<result column="STYP" jdbcType="VARCHAR" property="styp" />
<result column="TRANSID" jdbcType="VARCHAR" property="transid" />
<result column="REMARK" jdbcType="OTHER" property="remark" />
<result column="OUTTM" jdbcType="TIMESTAMP" property="outtm" />
<result column="OUTFLAG" jdbcType="DECIMAL" property="outflag" />
<result column="ETLTIM" jdbcType="TIMESTAMP" property="etltim" />
<result column="ETLFLAG" jdbcType="DECIMAL" property="etlflag" />
<result column="ERRTM" jdbcType="TIMESTAMP" property="errtm" />
<result column="ERRFLAG" jdbcType="DECIMAL" property="errflag" />
<result column="ERRLOG" jdbcType="OTHER" property="errlog" />
<result column="APPID" jdbcType="VARCHAR" property="appid" />
</resultMap>
<resultMap extends="BaseResultMap" id="ResultMapWithBLOBs" type="com.example.demo.model.T_ETL_MESSAGE">
<result column="CONTENT" jdbcType="CLOB" property="content" />
</resultMap>
<sql id="Base_Column_List">
FID, OPER, SNTM, SNDR, RCVR, SEQN, DDTM, TYPE, STYP, TRANSID, REMARK, OUTTM, OUTFLAG,
ETLTIM, ETLFLAG, ERRTM, ERRFLAG, ERRLOG, APPID
</sql>
<sql id="Blob_Column_List">
CONTENT
</sql>
<select id="selectByPrimaryKey" parameterType="java.math.BigDecimal" resultMap="ResultMapWithBLOBs">
select
<include refid="Base_Column_List" />
,
<include refid="Blob_Column_List" />
from T_ETL_MESSAGE
where FID = #{fid,jdbcType=DECIMAL}
</select>
<select id="selectFWB" resultMap="ResultMapWithBLOBs">
select FID,
<include refid="Blob_Column_List" />
from T_ETL_MESSAGE
<where>
<trim prefixOverrides="and">
STYP='FWB' AND SNDR='TXD' AND TYPE='DFME' AND FID=11191192
</trim>
</where>
</select>
<delete id="deleteByPrimaryKey" parameterType="java.math.BigDecimal">
delete from T_ETL_MESSAGE
where FID = #{fid,jdbcType=DECIMAL}
</delete>
<insert id="insert" parameterType="com.example.demo.model.T_ETL_MESSAGE">
insert into T_ETL_MESSAGE (FID, OPER, SNTM,
SNDR, RCVR, SEQN, DDTM,
TYPE, STYP, TRANSID,
REMARK, OUTTM, OUTFLAG,
ETLTIM, ETLFLAG, ERRTM,
ERRFLAG, ERRLOG, APPID,
CONTENT)
values (#{fid,jdbcType=DECIMAL}, #{oper,jdbcType=VARCHAR}, #{sntm,jdbcType=TIMESTAMP},
#{sndr,jdbcType=VARCHAR}, #{rcvr,jdbcType=VARCHAR}, #{seqn,jdbcType=VARCHAR}, #{ddtm,jdbcType=TIMESTAMP},
#{type,jdbcType=VARCHAR}, #{styp,jdbcType=VARCHAR}, #{transid,jdbcType=VARCHAR},
#{remark,jdbcType=OTHER}, #{outtm,jdbcType=TIMESTAMP}, #{outflag,jdbcType=DECIMAL},
#{etltim,jdbcType=TIMESTAMP}, #{etlflag,jdbcType=DECIMAL}, #{errtm,jdbcType=TIMESTAMP},
#{errflag,jdbcType=DECIMAL}, #{errlog,jdbcType=OTHER}, #{appid,jdbcType=VARCHAR},
#{content,jdbcType=CLOB})
</insert>
<insert id="insertSelective" parameterType="com.example.demo.model.T_ETL_MESSAGE">
insert into T_ETL_MESSAGE
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="fid != null">
FID,
</if>
<if test="oper != null">
OPER,
</if>
<if test="sntm != null">
SNTM,
</if>
<if test="sndr != null">
SNDR,
</if>
<if test="rcvr != null">
RCVR,
</if>
<if test="seqn != null">
SEQN,
</if>
<if test="ddtm != null">
DDTM,
</if>
<if test="type != null">
TYPE,
</if>
<if test="styp != null">
STYP,
</if>
<if test="transid != null">
TRANSID,
</if>
<if test="remark != null">
REMARK,
</if>
<if test="outtm != null">
OUTTM,
</if>
<if test="outflag != null">
OUTFLAG,
</if>
<if test="etltim != null">
ETLTIM,
</if>
<if test="etlflag != null">
ETLFLAG,
</if>
<if test="errtm != null">
ERRTM,
</if>
<if test="errflag != null">
ERRFLAG,
</if>
<if test="errlog != null">
ERRLOG,
</if>
<if test="appid != null">
APPID,
</if>
<if test="content != null">
CONTENT,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="fid != null">
#{fid,jdbcType=DECIMAL},
</if>
<if test="oper != null">
#{oper,jdbcType=VARCHAR},
</if>
<if test="sntm != null">
#{sntm,jdbcType=TIMESTAMP},
</if>
<if test="sndr != null">
#{sndr,jdbcType=VARCHAR},
</if>
<if test="rcvr != null">
#{rcvr,jdbcType=VARCHAR},
</if>
<if test="seqn != null">
#{seqn,jdbcType=VARCHAR},
</if>
<if test="ddtm != null">
#{ddtm,jdbcType=TIMESTAMP},
</if>
<if test="type != null">
#{type,jdbcType=VARCHAR},
</if>
<if test="styp != null">
#{styp,jdbcType=VARCHAR},
</if>
<if test="transid != null">
#{transid,jdbcType=VARCHAR},
</if>
<if test="remark != null">
#{remark,jdbcType=OTHER},
</if>
<if test="outtm != null">
#{outtm,jdbcType=TIMESTAMP},
</if>
<if test="outflag != null">
#{outflag,jdbcType=DECIMAL},
</if>
<if test="etltim != null">
#{etltim,jdbcType=TIMESTAMP},
</if>
<if test="etlflag != null">
#{etlflag,jdbcType=DECIMAL},
</if>
<if test="errtm != null">
#{errtm,jdbcType=TIMESTAMP},
</if>
<if test="errflag != null">
#{errflag,jdbcType=DECIMAL},
</if>
<if test="errlog != null">
#{errlog,jdbcType=OTHER},
</if>
<if test="appid != null">
#{appid,jdbcType=VARCHAR},
</if>
<if test="content != null">
#{content,jdbcType=CLOB},
</if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective" parameterType="com.example.demo.model.T_ETL_MESSAGE">
update T_ETL_MESSAGE
<set>
<if test="oper != null">
OPER = #{oper,jdbcType=VARCHAR},
</if>
<if test="sntm != null">
SNTM = #{sntm,jdbcType=TIMESTAMP},
</if>
<if test="sndr != null">
SNDR = #{sndr,jdbcType=VARCHAR},
</if>
<if test="rcvr != null">
RCVR = #{rcvr,jdbcType=VARCHAR},
</if>
<if test="seqn != null">
SEQN = #{seqn,jdbcType=VARCHAR},
</if>
<if test="ddtm != null">
DDTM = #{ddtm,jdbcType=TIMESTAMP},
</if>
<if test="type != null">
TYPE = #{type,jdbcType=VARCHAR},
</if>
<if test="styp != null">
STYP = #{styp,jdbcType=VARCHAR},
</if>
<if test="transid != null">
TRANSID = #{transid,jdbcType=VARCHAR},
</if>
<if test="remark != null">
REMARK = #{remark,jdbcType=OTHER},
</if>
<if test="outtm != null">
OUTTM = #{outtm,jdbcType=TIMESTAMP},
</if>
<if test="outflag != null">
OUTFLAG = #{outflag,jdbcType=DECIMAL},
</if>
<if test="etltim != null">
ETLTIM = #{etltim,jdbcType=TIMESTAMP},
</if>
<if test="etlflag != null">
ETLFLAG = #{etlflag,jdbcType=DECIMAL},
</if>
<if test="errtm != null">
ERRTM = #{errtm,jdbcType=TIMESTAMP},
</if>
<if test="errflag != null">
ERRFLAG = #{errflag,jdbcType=DECIMAL},
</if>
<if test="errlog != null">
ERRLOG = #{errlog,jdbcType=OTHER},
</if>
<if test="appid != null">
APPID = #{appid,jdbcType=VARCHAR},
</if>
<if test="content != null">
CONTENT = #{content,jdbcType=CLOB},
</if>
</set>
where FID = #{fid,jdbcType=DECIMAL}
</update>
<update id="updateByPrimaryKeyWithBLOBs" parameterType="com.example.demo.model.T_ETL_MESSAGE">
update T_ETL_MESSAGE
set OPER = #{oper,jdbcType=VARCHAR},
SNTM = #{sntm,jdbcType=TIMESTAMP},
SNDR = #{sndr,jdbcType=VARCHAR},
RCVR = #{rcvr,jdbcType=VARCHAR},
SEQN = #{seqn,jdbcType=VARCHAR},
DDTM = #{ddtm,jdbcType=TIMESTAMP},
TYPE = #{type,jdbcType=VARCHAR},
STYP = #{styp,jdbcType=VARCHAR},
TRANSID = #{transid,jdbcType=VARCHAR},
REMARK = #{remark,jdbcType=OTHER},
OUTTM = #{outtm,jdbcType=TIMESTAMP},
OUTFLAG = #{outflag,jdbcType=DECIMAL},
ETLTIM = #{etltim,jdbcType=TIMESTAMP},
ETLFLAG = #{etlflag,jdbcType=DECIMAL},
ERRTM = #{errtm,jdbcType=TIMESTAMP},
ERRFLAG = #{errflag,jdbcType=DECIMAL},
ERRLOG = #{errlog,jdbcType=OTHER},
APPID = #{appid,jdbcType=VARCHAR},
CONTENT = #{content,jdbcType=CLOB}
where FID = #{fid,jdbcType=DECIMAL}
</update>
<update id="updateByPrimaryKey" parameterType="com.example.demo.model.T_ETL_MESSAGE">
update T_ETL_MESSAGE
set OPER = #{oper,jdbcType=VARCHAR},
SNTM = #{sntm,jdbcType=TIMESTAMP},
SNDR = #{sndr,jdbcType=VARCHAR},
RCVR = #{rcvr,jdbcType=VARCHAR},
SEQN = #{seqn,jdbcType=VARCHAR},
DDTM = #{ddtm,jdbcType=TIMESTAMP},
TYPE = #{type,jdbcType=VARCHAR},
STYP = #{styp,jdbcType=VARCHAR},
TRANSID = #{transid,jdbcType=VARCHAR},
REMARK = #{remark,jdbcType=OTHER},
OUTTM = #{outtm,jdbcType=TIMESTAMP},
OUTFLAG = #{outflag,jdbcType=DECIMAL},
ETLTIM = #{etltim,jdbcType=TIMESTAMP},
ETLFLAG = #{etlflag,jdbcType=DECIMAL},
ERRTM = #{errtm,jdbcType=TIMESTAMP},
ERRFLAG = #{errflag,jdbcType=DECIMAL},
ERRLOG = #{errlog,jdbcType=OTHER},
APPID = #{appid,jdbcType=VARCHAR}
where FID = #{fid,jdbcType=DECIMAL}
</update>
</mapper>
\ No newline at end of file
... ...
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.example.demo.mapper.T_TXD_FWBMapper" >
<resultMap id="BaseResultMap" type="com.example.demo.model.T_TXD_FWB" >
<id column="FID" property="fid" jdbcType="DECIMAL" />
<result column="ID" property="id" jdbcType="VARCHAR" />
<result column="TYPECODE" property="typecode" jdbcType="VARCHAR" />
<result column="NILCARRIAGEVALUECARRIAGE" property="nilcarriagevaluecarriage" jdbcType="VARCHAR" />
<result column="DECLAREDVALUE" property="declaredvalue" jdbcType="DECIMAL" />
<result column="NILCUSTOMSVALUECUSTOMS" property="nilcustomsvaluecustoms" jdbcType="VARCHAR" />
<result column="DECLAREDVALUECUSTOMS" property="declaredvaluecustoms" jdbcType="VARCHAR" />
<result column="NILINSURANCEVALUE" property="nilinsurancevalue" jdbcType="VARCHAR" />
<result column="INSURANCEVALUE" property="insurancevalue" jdbcType="VARCHAR" />
<result column="TOTALCHARGEPREPAID" property="totalchargeprepaid" jdbcType="VARCHAR" />
<result column="WEIGHTTOTALCHARGEAMOUNT" property="weighttotalchargeamount" jdbcType="DECIMAL" />
<result column="VALUATIONTOTALCHARGE" property="valuationtotalcharge" jdbcType="DECIMAL" />
<result column="TOTALDISBURSEMENTPREPAID" property="totaldisbursementprepaid" jdbcType="VARCHAR" />
<result column="TOTALPREPAIDCHARGE" property="totalprepaidcharge" jdbcType="DECIMAL" />
<result column="TOTALCOLLECTCHARGE" property="totalcollectcharge" jdbcType="DECIMAL" />
<result column="DESTINATIONCURRENCY" property="destinationcurrency" jdbcType="DECIMAL" />
<result column="INCLUDEDTAREGROSSWEIGHT" property="includedtaregrossweight" jdbcType="DECIMAL" />
<result column="NETWEIGHTMEASURE" property="netweightmeasure" jdbcType="DECIMAL" />
<result column="GROSSVOLUMEMEASURE" property="grossvolumemeasure" jdbcType="DECIMAL" />
<result column="TOTALCHARGEABLEWEIGHT" property="totalchargeableweight" jdbcType="DECIMAL" />
<result column="CONSIGNMENTITEMQUANTITY" property="consignmentitemquantity" jdbcType="DECIMAL" />
<result column="TOTALPIECEQUANTITY" property="totalpiecequantity" jdbcType="DECIMAL" />
<result column="TOTALLOADEDPACKAGE" property="totalloadedpackage" jdbcType="DECIMAL" />
<result column="PACKAGEINFO" property="packageinfo" jdbcType="VARCHAR" />
<result column="FREIGHTRATETYPECODE" property="freightratetypecode" jdbcType="VARCHAR" />
<result column="CRP_PRIMARYID" property="crpPrimaryid" jdbcType="VARCHAR" />
<result column="CRP_NAME" property="crpName" jdbcType="VARCHAR" />
<result column="CRP_ACCOUNTID" property="crpAccountid" jdbcType="VARCHAR" />
<result column="PSA_STREETNAME" property="psaStreetname" jdbcType="VARCHAR" />
<result column="PSA_CITYNAME" property="psaCityname" jdbcType="VARCHAR" />
<result column="PSA_COUNTRYID" property="psaCountryid" jdbcType="VARCHAR" />
<result column="PSA_SPECIFIEDADDRESS" property="psaSpecifiedaddress" jdbcType="VARCHAR" />
<result column="DTC_COMPLETENUMBER" property="dtcCompletenumber" jdbcType="VARCHAR" />
<result column="CEP_PRIMARYID" property="cepPrimaryid" jdbcType="VARCHAR" />
<result column="CEP_NAME" property="cepName" jdbcType="VARCHAR" />
<result column="CEP_ACCOUNTID" property="cepAccountid" jdbcType="VARCHAR" />
<result column="PS_STREETNAME" property="psStreetname" jdbcType="VARCHAR" />
<result column="PS_CITYNAME" property="psCityname" jdbcType="VARCHAR" />
<result column="PS_COUNTRYID" property="psCountryid" jdbcType="VARCHAR" />
<result column="PS_SPECIFIEDADDRESS" property="psSpecifiedaddress" jdbcType="VARCHAR" />
<result column="DT_COMPLETENUMBER" property="dtCompletenumber" jdbcType="VARCHAR" />
<result column="FFP_NAME" property="ffpName" jdbcType="VARCHAR" />
<result column="FFP_ACCOUNTID" property="ffpAccountid" jdbcType="VARCHAR" />
<result column="FFP_CITYNAME" property="ffpCityname" jdbcType="VARCHAR" />
<result column="FFP_COUNTRYID" property="ffpCountryid" jdbcType="VARCHAR" />
<result column="FFP_SPECIFIEDADDRESS" property="ffpSpecifiedaddress" jdbcType="VARCHAR" />
<result column="OL_ID" property="olId" jdbcType="VARCHAR" />
<result column="FD_ID" property="fdId" jdbcType="VARCHAR" />
<result column="SL_STAGECODE" property="slStagecode" jdbcType="VARCHAR" />
<result column="SL_MODECODE" property="slModecode" jdbcType="VARCHAR" />
<result column="SL_MODE" property="slMode" jdbcType="VARCHAR" />
<result column="SL_ID" property="slId" jdbcType="VARCHAR" />
<result column="SL_SEQUENCENUMERIC" property="slSequencenumeric" jdbcType="VARCHAR" />
<result column="SL_USEDLOGISTICSTRANSPORT" property="slUsedlogisticstransport" jdbcType="VARCHAR" />
<result column="OA_ID" property="oaId" jdbcType="VARCHAR" />
<result column="DE_DATETIME" property="deDatetime" jdbcType="TIMESTAMP" />
<result column="OD_ID" property="odId" jdbcType="VARCHAR" />
<result column="ATC_SOURCECURRENCYCODE" property="atcSourcecurrencycode" jdbcType="VARCHAR" />
<result column="ATC_TARGETCURRENCYCODE" property="atcTargetcurrencycode" jdbcType="VARCHAR" />
<result column="ATC_MARKETID" property="atcMarketid" jdbcType="VARCHAR" />
<result column="ATC_CONVERSIONRATE" property="atcConversionrate" jdbcType="DECIMAL" />
<result column="ALA_ID" property="alaId" jdbcType="VARCHAR" />
<result column="ALA_REASON" property="alaReason" jdbcType="VARCHAR" />
<result column="ALA_ACTUALAMOUNT" property="alaActualamount" jdbcType="DECIMAL" />
<result column="ALA_PARTYTYPECODE" property="alaPartytypecode" jdbcType="VARCHAR" />
<result column="SCA_ACTUALDATETIME" property="scaActualdatetime" jdbcType="TIMESTAMP" />
<result column="SCA_SIGNATORY" property="scaSignatory" jdbcType="VARCHAR" />
<result column="IL_NAME" property="ilName" jdbcType="VARCHAR" />
<result column="IMCI_SEQUENCENUMERIC" property="imciSequencenumeric" jdbcType="VARCHAR" />
<result column="IMCI_TYPECODE" property="imciTypecode" jdbcType="VARCHAR" />
<result column="IMCI_GROSSWEIGHTMEASURE" property="imciGrossweightmeasure" jdbcType="DECIMAL" />
<result column="IMCI_GROSSVOLUMEMEASURE" property="imciGrossvolumemeasure" jdbcType="DECIMAL" />
<result column="IMCI_PIECEQUANTITY" property="imciPiecequantity" jdbcType="DECIMAL" />
<result column="IMCI_TAREWEIGHTMEASURE" property="imciTareweightmeasure" jdbcType="DECIMAL" />
<result column="NIT_IDENTIFICATION" property="nitIdentification" jdbcType="VARCHAR" />
<result column="AULT_OPERATINGPARTY" property="aultOperatingparty" jdbcType="VARCHAR" />
<result column="TLP_ITEMQUANTITY" property="tlpItemquantity" jdbcType="DECIMAL" />
<result column="LSD_DESCRIPTION" property="lsdDescription" jdbcType="VARCHAR" />
<result column="LSD_WIDTHMEASURE" property="lsdWidthmeasure" jdbcType="DECIMAL" />
<result column="LSD_LENGTHMEASURE" property="lsdLengthmeasure" jdbcType="DECIMAL" />
<result column="LSD_HEIGHTMEASURE" property="lsdHeightmeasure" jdbcType="DECIMAL" />
<result column="AFR_CATEGORYCODE" property="afrCategorycode" jdbcType="VARCHAR" />
<result column="AFR_COMMODITYITEMID" property="afrCommodityitemid" jdbcType="VARCHAR" />
<result column="AFR_CHARGEABLEWEIGHTMEASURE" property="afrChargeableweightmeasure" jdbcType="DECIMAL" />
<result column="AFR_APPLIEDRATE" property="afrAppliedrate" jdbcType="DECIMAL" />
<result column="AFR_APPLIEDAMOUN" property="afrAppliedamoun" jdbcType="DECIMAL" />
<result column="MESSAGE_BAK_ID" property="messageBakId" jdbcType="DECIMAL" />
</resultMap>
<sql id="Base_Column_List" >
FID, ID, TYPECODE, NILCARRIAGEVALUECARRIAGE, DECLAREDVALUE, NILCUSTOMSVALUECUSTOMS,
DECLAREDVALUECUSTOMS, NILINSURANCEVALUE, INSURANCEVALUE, TOTALCHARGEPREPAID, WEIGHTTOTALCHARGEAMOUNT,
VALUATIONTOTALCHARGE, TOTALDISBURSEMENTPREPAID, TOTALPREPAIDCHARGE, TOTALCOLLECTCHARGE,
DESTINATIONCURRENCY, INCLUDEDTAREGROSSWEIGHT, NETWEIGHTMEASURE, GROSSVOLUMEMEASURE,
TOTALCHARGEABLEWEIGHT, CONSIGNMENTITEMQUANTITY, TOTALPIECEQUANTITY, TOTALLOADEDPACKAGE,
PACKAGEINFO, FREIGHTRATETYPECODE, CRP_PRIMARYID, CRP_NAME, CRP_ACCOUNTID, PSA_STREETNAME,
PSA_CITYNAME, PSA_COUNTRYID, PSA_SPECIFIEDADDRESS, DTC_COMPLETENUMBER, CEP_PRIMARYID,
CEP_NAME, CEP_ACCOUNTID, PS_STREETNAME, PS_CITYNAME, PS_COUNTRYID, PS_SPECIFIEDADDRESS,
DT_COMPLETENUMBER, FFP_NAME, FFP_ACCOUNTID, FFP_CITYNAME, FFP_COUNTRYID, FFP_SPECIFIEDADDRESS,
OL_ID, FD_ID, SL_STAGECODE, SL_MODECODE, SL_MODE, SL_ID, SL_SEQUENCENUMERIC, SL_USEDLOGISTICSTRANSPORT,
OA_ID, DE_DATETIME, OD_ID, ATC_SOURCECURRENCYCODE, ATC_TARGETCURRENCYCODE, ATC_MARKETID,
ATC_CONVERSIONRATE, ALA_ID, ALA_REASON, ALA_ACTUALAMOUNT, ALA_PARTYTYPECODE, SCA_ACTUALDATETIME,
SCA_SIGNATORY, IL_NAME, IMCI_SEQUENCENUMERIC, IMCI_TYPECODE, IMCI_GROSSWEIGHTMEASURE,
IMCI_GROSSVOLUMEMEASURE, IMCI_PIECEQUANTITY, IMCI_TAREWEIGHTMEASURE, NIT_IDENTIFICATION,
AULT_OPERATINGPARTY, TLP_ITEMQUANTITY, LSD_DESCRIPTION, LSD_WIDTHMEASURE, LSD_LENGTHMEASURE,
LSD_HEIGHTMEASURE, AFR_CATEGORYCODE, AFR_COMMODITYITEMID, AFR_CHARGEABLEWEIGHTMEASURE,
AFR_APPLIEDRATE, AFR_APPLIEDAMOUN, MESSAGE_BAK_ID
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.math.BigDecimal" >
select
<include refid="Base_Column_List" />
from T_TXD_FWB
where FID = #{fid,jdbcType=DECIMAL}
</select>
<delete id="deleteByPrimaryKey" parameterType="java.math.BigDecimal" >
delete from T_TXD_FWB
where FID = #{fid,jdbcType=DECIMAL}
</delete>
<insert id="insert" parameterType="com.example.demo.model.T_TXD_FWB" >
insert into T_TXD_FWB (FID, ID, TYPECODE,
NILCARRIAGEVALUECARRIAGE, DECLAREDVALUE,
NILCUSTOMSVALUECUSTOMS, DECLAREDVALUECUSTOMS,
NILINSURANCEVALUE, INSURANCEVALUE, TOTALCHARGEPREPAID,
WEIGHTTOTALCHARGEAMOUNT, VALUATIONTOTALCHARGE,
TOTALDISBURSEMENTPREPAID, TOTALPREPAIDCHARGE,
TOTALCOLLECTCHARGE, DESTINATIONCURRENCY,
INCLUDEDTAREGROSSWEIGHT, NETWEIGHTMEASURE,
GROSSVOLUMEMEASURE, TOTALCHARGEABLEWEIGHT,
CONSIGNMENTITEMQUANTITY, TOTALPIECEQUANTITY,
TOTALLOADEDPACKAGE, PACKAGEINFO, FREIGHTRATETYPECODE,
CRP_PRIMARYID, CRP_NAME, CRP_ACCOUNTID,
PSA_STREETNAME, PSA_CITYNAME, PSA_COUNTRYID,
PSA_SPECIFIEDADDRESS, DTC_COMPLETENUMBER,
CEP_PRIMARYID, CEP_NAME, CEP_ACCOUNTID,
PS_STREETNAME, PS_CITYNAME, PS_COUNTRYID,
PS_SPECIFIEDADDRESS, DT_COMPLETENUMBER, FFP_NAME,
FFP_ACCOUNTID, FFP_CITYNAME, FFP_COUNTRYID,
FFP_SPECIFIEDADDRESS, OL_ID, FD_ID,
SL_STAGECODE, SL_MODECODE, SL_MODE,
SL_ID, SL_SEQUENCENUMERIC, SL_USEDLOGISTICSTRANSPORT,
OA_ID, DE_DATETIME, OD_ID,
ATC_SOURCECURRENCYCODE, ATC_TARGETCURRENCYCODE,
ATC_MARKETID, ATC_CONVERSIONRATE, ALA_ID,
ALA_REASON, ALA_ACTUALAMOUNT, ALA_PARTYTYPECODE,
SCA_ACTUALDATETIME, SCA_SIGNATORY, IL_NAME,
IMCI_SEQUENCENUMERIC, IMCI_TYPECODE, IMCI_GROSSWEIGHTMEASURE,
IMCI_GROSSVOLUMEMEASURE, IMCI_PIECEQUANTITY,
IMCI_TAREWEIGHTMEASURE, NIT_IDENTIFICATION,
AULT_OPERATINGPARTY, TLP_ITEMQUANTITY, LSD_DESCRIPTION,
LSD_WIDTHMEASURE, LSD_LENGTHMEASURE, LSD_HEIGHTMEASURE,
AFR_CATEGORYCODE, AFR_COMMODITYITEMID, AFR_CHARGEABLEWEIGHTMEASURE,
AFR_APPLIEDRATE, AFR_APPLIEDAMOUN, MESSAGE_BAK_ID
)
values (#{fid,jdbcType=DECIMAL}, #{id,jdbcType=VARCHAR}, #{typecode,jdbcType=VARCHAR},
#{nilcarriagevaluecarriage,jdbcType=VARCHAR}, #{declaredvalue,jdbcType=DECIMAL},
#{nilcustomsvaluecustoms,jdbcType=VARCHAR}, #{declaredvaluecustoms,jdbcType=VARCHAR},
#{nilinsurancevalue,jdbcType=VARCHAR}, #{insurancevalue,jdbcType=VARCHAR}, #{totalchargeprepaid,jdbcType=VARCHAR},
#{weighttotalchargeamount,jdbcType=DECIMAL}, #{valuationtotalcharge,jdbcType=DECIMAL},
#{totaldisbursementprepaid,jdbcType=VARCHAR}, #{totalprepaidcharge,jdbcType=DECIMAL},
#{totalcollectcharge,jdbcType=DECIMAL}, #{destinationcurrency,jdbcType=DECIMAL},
#{includedtaregrossweight,jdbcType=DECIMAL}, #{netweightmeasure,jdbcType=DECIMAL},
#{grossvolumemeasure,jdbcType=DECIMAL}, #{totalchargeableweight,jdbcType=DECIMAL},
#{consignmentitemquantity,jdbcType=DECIMAL}, #{totalpiecequantity,jdbcType=DECIMAL},
#{totalloadedpackage,jdbcType=DECIMAL}, #{packageinfo,jdbcType=VARCHAR}, #{freightratetypecode,jdbcType=VARCHAR},
#{crpPrimaryid,jdbcType=VARCHAR}, #{crpName,jdbcType=VARCHAR}, #{crpAccountid,jdbcType=VARCHAR},
#{psaStreetname,jdbcType=VARCHAR}, #{psaCityname,jdbcType=VARCHAR}, #{psaCountryid,jdbcType=VARCHAR},
#{psaSpecifiedaddress,jdbcType=VARCHAR}, #{dtcCompletenumber,jdbcType=VARCHAR},
#{cepPrimaryid,jdbcType=VARCHAR}, #{cepName,jdbcType=VARCHAR}, #{cepAccountid,jdbcType=VARCHAR},
#{psStreetname,jdbcType=VARCHAR}, #{psCityname,jdbcType=VARCHAR}, #{psCountryid,jdbcType=VARCHAR},
#{psSpecifiedaddress,jdbcType=VARCHAR}, #{dtCompletenumber,jdbcType=VARCHAR}, #{ffpName,jdbcType=VARCHAR},
#{ffpAccountid,jdbcType=VARCHAR}, #{ffpCityname,jdbcType=VARCHAR}, #{ffpCountryid,jdbcType=VARCHAR},
#{ffpSpecifiedaddress,jdbcType=VARCHAR}, #{olId,jdbcType=VARCHAR}, #{fdId,jdbcType=VARCHAR},
#{slStagecode,jdbcType=VARCHAR}, #{slModecode,jdbcType=VARCHAR}, #{slMode,jdbcType=VARCHAR},
#{slId,jdbcType=VARCHAR}, #{slSequencenumeric,jdbcType=VARCHAR}, #{slUsedlogisticstransport,jdbcType=VARCHAR},
#{oaId,jdbcType=VARCHAR}, #{deDatetime,jdbcType=TIMESTAMP}, #{odId,jdbcType=VARCHAR},
#{atcSourcecurrencycode,jdbcType=VARCHAR}, #{atcTargetcurrencycode,jdbcType=VARCHAR},
#{atcMarketid,jdbcType=VARCHAR}, #{atcConversionrate,jdbcType=DECIMAL}, #{alaId,jdbcType=VARCHAR},
#{alaReason,jdbcType=VARCHAR}, #{alaActualamount,jdbcType=DECIMAL}, #{alaPartytypecode,jdbcType=VARCHAR},
#{scaActualdatetime,jdbcType=TIMESTAMP}, #{scaSignatory,jdbcType=VARCHAR}, #{ilName,jdbcType=VARCHAR},
#{imciSequencenumeric,jdbcType=VARCHAR}, #{imciTypecode,jdbcType=VARCHAR}, #{imciGrossweightmeasure,jdbcType=DECIMAL},
#{imciGrossvolumemeasure,jdbcType=DECIMAL}, #{imciPiecequantity,jdbcType=DECIMAL},
#{imciTareweightmeasure,jdbcType=DECIMAL}, #{nitIdentification,jdbcType=VARCHAR},
#{aultOperatingparty,jdbcType=VARCHAR}, #{tlpItemquantity,jdbcType=DECIMAL}, #{lsdDescription,jdbcType=VARCHAR},
#{lsdWidthmeasure,jdbcType=DECIMAL}, #{lsdLengthmeasure,jdbcType=DECIMAL}, #{lsdHeightmeasure,jdbcType=DECIMAL},
#{afrCategorycode,jdbcType=VARCHAR}, #{afrCommodityitemid,jdbcType=VARCHAR}, #{afrChargeableweightmeasure,jdbcType=DECIMAL},
#{afrAppliedrate,jdbcType=DECIMAL}, #{afrAppliedamoun,jdbcType=DECIMAL}, #{messageBakId,jdbcType=DECIMAL}
)
</insert>
<insert id="insertSelective" parameterType="com.example.demo.model.T_TXD_FWB" >
insert into T_TXD_FWB
<trim prefix="(" suffix=")" suffixOverrides="," >
<if test="fid != null" >
FID,
</if>
<if test="id != null" >
ID,
</if>
<if test="typecode != null" >
TYPECODE,
</if>
<if test="nilcarriagevaluecarriage != null" >
NILCARRIAGEVALUECARRIAGE,
</if>
<if test="declaredvalue != null" >
DECLAREDVALUE,
</if>
<if test="nilcustomsvaluecustoms != null" >
NILCUSTOMSVALUECUSTOMS,
</if>
<if test="declaredvaluecustoms != null" >
DECLAREDVALUECUSTOMS,
</if>
<if test="nilinsurancevalue != null" >
NILINSURANCEVALUE,
</if>
<if test="insurancevalue != null" >
INSURANCEVALUE,
</if>
<if test="totalchargeprepaid != null" >
TOTALCHARGEPREPAID,
</if>
<if test="weighttotalchargeamount != null" >
WEIGHTTOTALCHARGEAMOUNT,
</if>
<if test="valuationtotalcharge != null" >
VALUATIONTOTALCHARGE,
</if>
<if test="totaldisbursementprepaid != null" >
TOTALDISBURSEMENTPREPAID,
</if>
<if test="totalprepaidcharge != null" >
TOTALPREPAIDCHARGE,
</if>
<if test="totalcollectcharge != null" >
TOTALCOLLECTCHARGE,
</if>
<if test="destinationcurrency != null" >
DESTINATIONCURRENCY,
</if>
<if test="includedtaregrossweight != null" >
INCLUDEDTAREGROSSWEIGHT,
</if>
<if test="netweightmeasure != null" >
NETWEIGHTMEASURE,
</if>
<if test="grossvolumemeasure != null" >
GROSSVOLUMEMEASURE,
</if>
<if test="totalchargeableweight != null" >
TOTALCHARGEABLEWEIGHT,
</if>
<if test="consignmentitemquantity != null" >
CONSIGNMENTITEMQUANTITY,
</if>
<if test="totalpiecequantity != null" >
TOTALPIECEQUANTITY,
</if>
<if test="totalloadedpackage != null" >
TOTALLOADEDPACKAGE,
</if>
<if test="packageinfo != null" >
PACKAGEINFO,
</if>
<if test="freightratetypecode != null" >
FREIGHTRATETYPECODE,
</if>
<if test="crpPrimaryid != null" >
CRP_PRIMARYID,
</if>
<if test="crpName != null" >
CRP_NAME,
</if>
<if test="crpAccountid != null" >
CRP_ACCOUNTID,
</if>
<if test="psaStreetname != null" >
PSA_STREETNAME,
</if>
<if test="psaCityname != null" >
PSA_CITYNAME,
</if>
<if test="psaCountryid != null" >
PSA_COUNTRYID,
</if>
<if test="psaSpecifiedaddress != null" >
PSA_SPECIFIEDADDRESS,
</if>
<if test="dtcCompletenumber != null" >
DTC_COMPLETENUMBER,
</if>
<if test="cepPrimaryid != null" >
CEP_PRIMARYID,
</if>
<if test="cepName != null" >
CEP_NAME,
</if>
<if test="cepAccountid != null" >
CEP_ACCOUNTID,
</if>
<if test="psStreetname != null" >
PS_STREETNAME,
</if>
<if test="psCityname != null" >
PS_CITYNAME,
</if>
<if test="psCountryid != null" >
PS_COUNTRYID,
</if>
<if test="psSpecifiedaddress != null" >
PS_SPECIFIEDADDRESS,
</if>
<if test="dtCompletenumber != null" >
DT_COMPLETENUMBER,
</if>
<if test="ffpName != null" >
FFP_NAME,
</if>
<if test="ffpAccountid != null" >
FFP_ACCOUNTID,
</if>
<if test="ffpCityname != null" >
FFP_CITYNAME,
</if>
<if test="ffpCountryid != null" >
FFP_COUNTRYID,
</if>
<if test="ffpSpecifiedaddress != null" >
FFP_SPECIFIEDADDRESS,
</if>
<if test="olId != null" >
OL_ID,
</if>
<if test="fdId != null" >
FD_ID,
</if>
<if test="slStagecode != null" >
SL_STAGECODE,
</if>
<if test="slModecode != null" >
SL_MODECODE,
</if>
<if test="slMode != null" >
SL_MODE,
</if>
<if test="slId != null" >
SL_ID,
</if>
<if test="slSequencenumeric != null" >
SL_SEQUENCENUMERIC,
</if>
<if test="slUsedlogisticstransport != null" >
SL_USEDLOGISTICSTRANSPORT,
</if>
<if test="oaId != null" >
OA_ID,
</if>
<if test="deDatetime != null" >
DE_DATETIME,
</if>
<if test="odId != null" >
OD_ID,
</if>
<if test="atcSourcecurrencycode != null" >
ATC_SOURCECURRENCYCODE,
</if>
<if test="atcTargetcurrencycode != null" >
ATC_TARGETCURRENCYCODE,
</if>
<if test="atcMarketid != null" >
ATC_MARKETID,
</if>
<if test="atcConversionrate != null" >
ATC_CONVERSIONRATE,
</if>
<if test="alaId != null" >
ALA_ID,
</if>
<if test="alaReason != null" >
ALA_REASON,
</if>
<if test="alaActualamount != null" >
ALA_ACTUALAMOUNT,
</if>
<if test="alaPartytypecode != null" >
ALA_PARTYTYPECODE,
</if>
<if test="scaActualdatetime != null" >
SCA_ACTUALDATETIME,
</if>
<if test="scaSignatory != null" >
SCA_SIGNATORY,
</if>
<if test="ilName != null" >
IL_NAME,
</if>
<if test="imciSequencenumeric != null" >
IMCI_SEQUENCENUMERIC,
</if>
<if test="imciTypecode != null" >
IMCI_TYPECODE,
</if>
<if test="imciGrossweightmeasure != null" >
IMCI_GROSSWEIGHTMEASURE,
</if>
<if test="imciGrossvolumemeasure != null" >
IMCI_GROSSVOLUMEMEASURE,
</if>
<if test="imciPiecequantity != null" >
IMCI_PIECEQUANTITY,
</if>
<if test="imciTareweightmeasure != null" >
IMCI_TAREWEIGHTMEASURE,
</if>
<if test="nitIdentification != null" >
NIT_IDENTIFICATION,
</if>
<if test="aultOperatingparty != null" >
AULT_OPERATINGPARTY,
</if>
<if test="tlpItemquantity != null" >
TLP_ITEMQUANTITY,
</if>
<if test="lsdDescription != null" >
LSD_DESCRIPTION,
</if>
<if test="lsdWidthmeasure != null" >
LSD_WIDTHMEASURE,
</if>
<if test="lsdLengthmeasure != null" >
LSD_LENGTHMEASURE,
</if>
<if test="lsdHeightmeasure != null" >
LSD_HEIGHTMEASURE,
</if>
<if test="afrCategorycode != null" >
AFR_CATEGORYCODE,
</if>
<if test="afrCommodityitemid != null" >
AFR_COMMODITYITEMID,
</if>
<if test="afrChargeableweightmeasure != null" >
AFR_CHARGEABLEWEIGHTMEASURE,
</if>
<if test="afrAppliedrate != null" >
AFR_APPLIEDRATE,
</if>
<if test="afrAppliedamoun != null" >
AFR_APPLIEDAMOUN,
</if>
<if test="messageBakId != null" >
MESSAGE_BAK_ID,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides="," >
<if test="fid != null" >
#{fid,jdbcType=DECIMAL},
</if>
<if test="id != null" >
#{id,jdbcType=VARCHAR},
</if>
<if test="typecode != null" >
#{typecode,jdbcType=VARCHAR},
</if>
<if test="nilcarriagevaluecarriage != null" >
#{nilcarriagevaluecarriage,jdbcType=VARCHAR},
</if>
<if test="declaredvalue != null" >
#{declaredvalue,jdbcType=DECIMAL},
</if>
<if test="nilcustomsvaluecustoms != null" >
#{nilcustomsvaluecustoms,jdbcType=VARCHAR},
</if>
<if test="declaredvaluecustoms != null" >
#{declaredvaluecustoms,jdbcType=VARCHAR},
</if>
<if test="nilinsurancevalue != null" >
#{nilinsurancevalue,jdbcType=VARCHAR},
</if>
<if test="insurancevalue != null" >
#{insurancevalue,jdbcType=VARCHAR},
</if>
<if test="totalchargeprepaid != null" >
#{totalchargeprepaid,jdbcType=VARCHAR},
</if>
<if test="weighttotalchargeamount != null" >
#{weighttotalchargeamount,jdbcType=DECIMAL},
</if>
<if test="valuationtotalcharge != null" >
#{valuationtotalcharge,jdbcType=DECIMAL},
</if>
<if test="totaldisbursementprepaid != null" >
#{totaldisbursementprepaid,jdbcType=VARCHAR},
</if>
<if test="totalprepaidcharge != null" >
#{totalprepaidcharge,jdbcType=DECIMAL},
</if>
<if test="totalcollectcharge != null" >
#{totalcollectcharge,jdbcType=DECIMAL},
</if>
<if test="destinationcurrency != null" >
#{destinationcurrency,jdbcType=DECIMAL},
</if>
<if test="includedtaregrossweight != null" >
#{includedtaregrossweight,jdbcType=DECIMAL},
</if>
<if test="netweightmeasure != null" >
#{netweightmeasure,jdbcType=DECIMAL},
</if>
<if test="grossvolumemeasure != null" >
#{grossvolumemeasure,jdbcType=DECIMAL},
</if>
<if test="totalchargeableweight != null" >
#{totalchargeableweight,jdbcType=DECIMAL},
</if>
<if test="consignmentitemquantity != null" >
#{consignmentitemquantity,jdbcType=DECIMAL},
</if>
<if test="totalpiecequantity != null" >
#{totalpiecequantity,jdbcType=DECIMAL},
</if>
<if test="totalloadedpackage != null" >
#{totalloadedpackage,jdbcType=DECIMAL},
</if>
<if test="packageinfo != null" >
#{packageinfo,jdbcType=VARCHAR},
</if>
<if test="freightratetypecode != null" >
#{freightratetypecode,jdbcType=VARCHAR},
</if>
<if test="crpPrimaryid != null" >
#{crpPrimaryid,jdbcType=VARCHAR},
</if>
<if test="crpName != null" >
#{crpName,jdbcType=VARCHAR},
</if>
<if test="crpAccountid != null" >
#{crpAccountid,jdbcType=VARCHAR},
</if>
<if test="psaStreetname != null" >
#{psaStreetname,jdbcType=VARCHAR},
</if>
<if test="psaCityname != null" >
#{psaCityname,jdbcType=VARCHAR},
</if>
<if test="psaCountryid != null" >
#{psaCountryid,jdbcType=VARCHAR},
</if>
<if test="psaSpecifiedaddress != null" >
#{psaSpecifiedaddress,jdbcType=VARCHAR},
</if>
<if test="dtcCompletenumber != null" >
#{dtcCompletenumber,jdbcType=VARCHAR},
</if>
<if test="cepPrimaryid != null" >
#{cepPrimaryid,jdbcType=VARCHAR},
</if>
<if test="cepName != null" >
#{cepName,jdbcType=VARCHAR},
</if>
<if test="cepAccountid != null" >
#{cepAccountid,jdbcType=VARCHAR},
</if>
<if test="psStreetname != null" >
#{psStreetname,jdbcType=VARCHAR},
</if>
<if test="psCityname != null" >
#{psCityname,jdbcType=VARCHAR},
</if>
<if test="psCountryid != null" >
#{psCountryid,jdbcType=VARCHAR},
</if>
<if test="psSpecifiedaddress != null" >
#{psSpecifiedaddress,jdbcType=VARCHAR},
</if>
<if test="dtCompletenumber != null" >
#{dtCompletenumber,jdbcType=VARCHAR},
</if>
<if test="ffpName != null" >
#{ffpName,jdbcType=VARCHAR},
</if>
<if test="ffpAccountid != null" >
#{ffpAccountid,jdbcType=VARCHAR},
</if>
<if test="ffpCityname != null" >
#{ffpCityname,jdbcType=VARCHAR},
</if>
<if test="ffpCountryid != null" >
#{ffpCountryid,jdbcType=VARCHAR},
</if>
<if test="ffpSpecifiedaddress != null" >
#{ffpSpecifiedaddress,jdbcType=VARCHAR},
</if>
<if test="olId != null" >
#{olId,jdbcType=VARCHAR},
</if>
<if test="fdId != null" >
#{fdId,jdbcType=VARCHAR},
</if>
<if test="slStagecode != null" >
#{slStagecode,jdbcType=VARCHAR},
</if>
<if test="slModecode != null" >
#{slModecode,jdbcType=VARCHAR},
</if>
<if test="slMode != null" >
#{slMode,jdbcType=VARCHAR},
</if>
<if test="slId != null" >
#{slId,jdbcType=VARCHAR},
</if>
<if test="slSequencenumeric != null" >
#{slSequencenumeric,jdbcType=VARCHAR},
</if>
<if test="slUsedlogisticstransport != null" >
#{slUsedlogisticstransport,jdbcType=VARCHAR},
</if>
<if test="oaId != null" >
#{oaId,jdbcType=VARCHAR},
</if>
<if test="deDatetime != null" >
#{deDatetime,jdbcType=TIMESTAMP},
</if>
<if test="odId != null" >
#{odId,jdbcType=VARCHAR},
</if>
<if test="atcSourcecurrencycode != null" >
#{atcSourcecurrencycode,jdbcType=VARCHAR},
</if>
<if test="atcTargetcurrencycode != null" >
#{atcTargetcurrencycode,jdbcType=VARCHAR},
</if>
<if test="atcMarketid != null" >
#{atcMarketid,jdbcType=VARCHAR},
</if>
<if test="atcConversionrate != null" >
#{atcConversionrate,jdbcType=DECIMAL},
</if>
<if test="alaId != null" >
#{alaId,jdbcType=VARCHAR},
</if>
<if test="alaReason != null" >
#{alaReason,jdbcType=VARCHAR},
</if>
<if test="alaActualamount != null" >
#{alaActualamount,jdbcType=DECIMAL},
</if>
<if test="alaPartytypecode != null" >
#{alaPartytypecode,jdbcType=VARCHAR},
</if>
<if test="scaActualdatetime != null" >
#{scaActualdatetime,jdbcType=TIMESTAMP},
</if>
<if test="scaSignatory != null" >
#{scaSignatory,jdbcType=VARCHAR},
</if>
<if test="ilName != null" >
#{ilName,jdbcType=VARCHAR},
</if>
<if test="imciSequencenumeric != null" >
#{imciSequencenumeric,jdbcType=VARCHAR},
</if>
<if test="imciTypecode != null" >
#{imciTypecode,jdbcType=VARCHAR},
</if>
<if test="imciGrossweightmeasure != null" >
#{imciGrossweightmeasure,jdbcType=DECIMAL},
</if>
<if test="imciGrossvolumemeasure != null" >
#{imciGrossvolumemeasure,jdbcType=DECIMAL},
</if>
<if test="imciPiecequantity != null" >
#{imciPiecequantity,jdbcType=DECIMAL},
</if>
<if test="imciTareweightmeasure != null" >
#{imciTareweightmeasure,jdbcType=DECIMAL},
</if>
<if test="nitIdentification != null" >
#{nitIdentification,jdbcType=VARCHAR},
</if>
<if test="aultOperatingparty != null" >
#{aultOperatingparty,jdbcType=VARCHAR},
</if>
<if test="tlpItemquantity != null" >
#{tlpItemquantity,jdbcType=DECIMAL},
</if>
<if test="lsdDescription != null" >
#{lsdDescription,jdbcType=VARCHAR},
</if>
<if test="lsdWidthmeasure != null" >
#{lsdWidthmeasure,jdbcType=DECIMAL},
</if>
<if test="lsdLengthmeasure != null" >
#{lsdLengthmeasure,jdbcType=DECIMAL},
</if>
<if test="lsdHeightmeasure != null" >
#{lsdHeightmeasure,jdbcType=DECIMAL},
</if>
<if test="afrCategorycode != null" >
#{afrCategorycode,jdbcType=VARCHAR},
</if>
<if test="afrCommodityitemid != null" >
#{afrCommodityitemid,jdbcType=VARCHAR},
</if>
<if test="afrChargeableweightmeasure != null" >
#{afrChargeableweightmeasure,jdbcType=DECIMAL},
</if>
<if test="afrAppliedrate != null" >
#{afrAppliedrate,jdbcType=DECIMAL},
</if>
<if test="afrAppliedamoun != null" >
#{afrAppliedamoun,jdbcType=DECIMAL},
</if>
<if test="messageBakId != null" >
#{messageBakId,jdbcType=DECIMAL},
</if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective" parameterType="com.example.demo.model.T_TXD_FWB" >
update T_TXD_FWB
<set >
<if test="id != null" >
ID = #{id,jdbcType=VARCHAR},
</if>
<if test="typecode != null" >
TYPECODE = #{typecode,jdbcType=VARCHAR},
</if>
<if test="nilcarriagevaluecarriage != null" >
NILCARRIAGEVALUECARRIAGE = #{nilcarriagevaluecarriage,jdbcType=VARCHAR},
</if>
<if test="declaredvalue != null" >
DECLAREDVALUE = #{declaredvalue,jdbcType=DECIMAL},
</if>
<if test="nilcustomsvaluecustoms != null" >
NILCUSTOMSVALUECUSTOMS = #{nilcustomsvaluecustoms,jdbcType=VARCHAR},
</if>
<if test="declaredvaluecustoms != null" >
DECLAREDVALUECUSTOMS = #{declaredvaluecustoms,jdbcType=VARCHAR},
</if>
<if test="nilinsurancevalue != null" >
NILINSURANCEVALUE = #{nilinsurancevalue,jdbcType=VARCHAR},
</if>
<if test="insurancevalue != null" >
INSURANCEVALUE = #{insurancevalue,jdbcType=VARCHAR},
</if>
<if test="totalchargeprepaid != null" >
TOTALCHARGEPREPAID = #{totalchargeprepaid,jdbcType=VARCHAR},
</if>
<if test="weighttotalchargeamount != null" >
WEIGHTTOTALCHARGEAMOUNT = #{weighttotalchargeamount,jdbcType=DECIMAL},
</if>
<if test="valuationtotalcharge != null" >
VALUATIONTOTALCHARGE = #{valuationtotalcharge,jdbcType=DECIMAL},
</if>
<if test="totaldisbursementprepaid != null" >
TOTALDISBURSEMENTPREPAID = #{totaldisbursementprepaid,jdbcType=VARCHAR},
</if>
<if test="totalprepaidcharge != null" >
TOTALPREPAIDCHARGE = #{totalprepaidcharge,jdbcType=DECIMAL},
</if>
<if test="totalcollectcharge != null" >
TOTALCOLLECTCHARGE = #{totalcollectcharge,jdbcType=DECIMAL},
</if>
<if test="destinationcurrency != null" >
DESTINATIONCURRENCY = #{destinationcurrency,jdbcType=DECIMAL},
</if>
<if test="includedtaregrossweight != null" >
INCLUDEDTAREGROSSWEIGHT = #{includedtaregrossweight,jdbcType=DECIMAL},
</if>
<if test="netweightmeasure != null" >
NETWEIGHTMEASURE = #{netweightmeasure,jdbcType=DECIMAL},
</if>
<if test="grossvolumemeasure != null" >
GROSSVOLUMEMEASURE = #{grossvolumemeasure,jdbcType=DECIMAL},
</if>
<if test="totalchargeableweight != null" >
TOTALCHARGEABLEWEIGHT = #{totalchargeableweight,jdbcType=DECIMAL},
</if>
<if test="consignmentitemquantity != null" >
CONSIGNMENTITEMQUANTITY = #{consignmentitemquantity,jdbcType=DECIMAL},
</if>
<if test="totalpiecequantity != null" >
TOTALPIECEQUANTITY = #{totalpiecequantity,jdbcType=DECIMAL},
</if>
<if test="totalloadedpackage != null" >
TOTALLOADEDPACKAGE = #{totalloadedpackage,jdbcType=DECIMAL},
</if>
<if test="packageinfo != null" >
PACKAGEINFO = #{packageinfo,jdbcType=VARCHAR},
</if>
<if test="freightratetypecode != null" >
FREIGHTRATETYPECODE = #{freightratetypecode,jdbcType=VARCHAR},
</if>
<if test="crpPrimaryid != null" >
CRP_PRIMARYID = #{crpPrimaryid,jdbcType=VARCHAR},
</if>
<if test="crpName != null" >
CRP_NAME = #{crpName,jdbcType=VARCHAR},
</if>
<if test="crpAccountid != null" >
CRP_ACCOUNTID = #{crpAccountid,jdbcType=VARCHAR},
</if>
<if test="psaStreetname != null" >
PSA_STREETNAME = #{psaStreetname,jdbcType=VARCHAR},
</if>
<if test="psaCityname != null" >
PSA_CITYNAME = #{psaCityname,jdbcType=VARCHAR},
</if>
<if test="psaCountryid != null" >
PSA_COUNTRYID = #{psaCountryid,jdbcType=VARCHAR},
</if>
<if test="psaSpecifiedaddress != null" >
PSA_SPECIFIEDADDRESS = #{psaSpecifiedaddress,jdbcType=VARCHAR},
</if>
<if test="dtcCompletenumber != null" >
DTC_COMPLETENUMBER = #{dtcCompletenumber,jdbcType=VARCHAR},
</if>
<if test="cepPrimaryid != null" >
CEP_PRIMARYID = #{cepPrimaryid,jdbcType=VARCHAR},
</if>
<if test="cepName != null" >
CEP_NAME = #{cepName,jdbcType=VARCHAR},
</if>
<if test="cepAccountid != null" >
CEP_ACCOUNTID = #{cepAccountid,jdbcType=VARCHAR},
</if>
<if test="psStreetname != null" >
PS_STREETNAME = #{psStreetname,jdbcType=VARCHAR},
</if>
<if test="psCityname != null" >
PS_CITYNAME = #{psCityname,jdbcType=VARCHAR},
</if>
<if test="psCountryid != null" >
PS_COUNTRYID = #{psCountryid,jdbcType=VARCHAR},
</if>
<if test="psSpecifiedaddress != null" >
PS_SPECIFIEDADDRESS = #{psSpecifiedaddress,jdbcType=VARCHAR},
</if>
<if test="dtCompletenumber != null" >
DT_COMPLETENUMBER = #{dtCompletenumber,jdbcType=VARCHAR},
</if>
<if test="ffpName != null" >
FFP_NAME = #{ffpName,jdbcType=VARCHAR},
</if>
<if test="ffpAccountid != null" >
FFP_ACCOUNTID = #{ffpAccountid,jdbcType=VARCHAR},
</if>
<if test="ffpCityname != null" >
FFP_CITYNAME = #{ffpCityname,jdbcType=VARCHAR},
</if>
<if test="ffpCountryid != null" >
FFP_COUNTRYID = #{ffpCountryid,jdbcType=VARCHAR},
</if>
<if test="ffpSpecifiedaddress != null" >
FFP_SPECIFIEDADDRESS = #{ffpSpecifiedaddress,jdbcType=VARCHAR},
</if>
<if test="olId != null" >
OL_ID = #{olId,jdbcType=VARCHAR},
</if>
<if test="fdId != null" >
FD_ID = #{fdId,jdbcType=VARCHAR},
</if>
<if test="slStagecode != null" >
SL_STAGECODE = #{slStagecode,jdbcType=VARCHAR},
</if>
<if test="slModecode != null" >
SL_MODECODE = #{slModecode,jdbcType=VARCHAR},
</if>
<if test="slMode != null" >
SL_MODE = #{slMode,jdbcType=VARCHAR},
</if>
<if test="slId != null" >
SL_ID = #{slId,jdbcType=VARCHAR},
</if>
<if test="slSequencenumeric != null" >
SL_SEQUENCENUMERIC = #{slSequencenumeric,jdbcType=VARCHAR},
</if>
<if test="slUsedlogisticstransport != null" >
SL_USEDLOGISTICSTRANSPORT = #{slUsedlogisticstransport,jdbcType=VARCHAR},
</if>
<if test="oaId != null" >
OA_ID = #{oaId,jdbcType=VARCHAR},
</if>
<if test="deDatetime != null" >
DE_DATETIME = #{deDatetime,jdbcType=TIMESTAMP},
</if>
<if test="odId != null" >
OD_ID = #{odId,jdbcType=VARCHAR},
</if>
<if test="atcSourcecurrencycode != null" >
ATC_SOURCECURRENCYCODE = #{atcSourcecurrencycode,jdbcType=VARCHAR},
</if>
<if test="atcTargetcurrencycode != null" >
ATC_TARGETCURRENCYCODE = #{atcTargetcurrencycode,jdbcType=VARCHAR},
</if>
<if test="atcMarketid != null" >
ATC_MARKETID = #{atcMarketid,jdbcType=VARCHAR},
</if>
<if test="atcConversionrate != null" >
ATC_CONVERSIONRATE = #{atcConversionrate,jdbcType=DECIMAL},
</if>
<if test="alaId != null" >
ALA_ID = #{alaId,jdbcType=VARCHAR},
</if>
<if test="alaReason != null" >
ALA_REASON = #{alaReason,jdbcType=VARCHAR},
</if>
<if test="alaActualamount != null" >
ALA_ACTUALAMOUNT = #{alaActualamount,jdbcType=DECIMAL},
</if>
<if test="alaPartytypecode != null" >
ALA_PARTYTYPECODE = #{alaPartytypecode,jdbcType=VARCHAR},
</if>
<if test="scaActualdatetime != null" >
SCA_ACTUALDATETIME = #{scaActualdatetime,jdbcType=TIMESTAMP},
</if>
<if test="scaSignatory != null" >
SCA_SIGNATORY = #{scaSignatory,jdbcType=VARCHAR},
</if>
<if test="ilName != null" >
IL_NAME = #{ilName,jdbcType=VARCHAR},
</if>
<if test="imciSequencenumeric != null" >
IMCI_SEQUENCENUMERIC = #{imciSequencenumeric,jdbcType=VARCHAR},
</if>
<if test="imciTypecode != null" >
IMCI_TYPECODE = #{imciTypecode,jdbcType=VARCHAR},
</if>
<if test="imciGrossweightmeasure != null" >
IMCI_GROSSWEIGHTMEASURE = #{imciGrossweightmeasure,jdbcType=DECIMAL},
</if>
<if test="imciGrossvolumemeasure != null" >
IMCI_GROSSVOLUMEMEASURE = #{imciGrossvolumemeasure,jdbcType=DECIMAL},
</if>
<if test="imciPiecequantity != null" >
IMCI_PIECEQUANTITY = #{imciPiecequantity,jdbcType=DECIMAL},
</if>
<if test="imciTareweightmeasure != null" >
IMCI_TAREWEIGHTMEASURE = #{imciTareweightmeasure,jdbcType=DECIMAL},
</if>
<if test="nitIdentification != null" >
NIT_IDENTIFICATION = #{nitIdentification,jdbcType=VARCHAR},
</if>
<if test="aultOperatingparty != null" >
AULT_OPERATINGPARTY = #{aultOperatingparty,jdbcType=VARCHAR},
</if>
<if test="tlpItemquantity != null" >
TLP_ITEMQUANTITY = #{tlpItemquantity,jdbcType=DECIMAL},
</if>
<if test="lsdDescription != null" >
LSD_DESCRIPTION = #{lsdDescription,jdbcType=VARCHAR},
</if>
<if test="lsdWidthmeasure != null" >
LSD_WIDTHMEASURE = #{lsdWidthmeasure,jdbcType=DECIMAL},
</if>
<if test="lsdLengthmeasure != null" >
LSD_LENGTHMEASURE = #{lsdLengthmeasure,jdbcType=DECIMAL},
</if>
<if test="lsdHeightmeasure != null" >
LSD_HEIGHTMEASURE = #{lsdHeightmeasure,jdbcType=DECIMAL},
</if>
<if test="afrCategorycode != null" >
AFR_CATEGORYCODE = #{afrCategorycode,jdbcType=VARCHAR},
</if>
<if test="afrCommodityitemid != null" >
AFR_COMMODITYITEMID = #{afrCommodityitemid,jdbcType=VARCHAR},
</if>
<if test="afrChargeableweightmeasure != null" >
AFR_CHARGEABLEWEIGHTMEASURE = #{afrChargeableweightmeasure,jdbcType=DECIMAL},
</if>
<if test="afrAppliedrate != null" >
AFR_APPLIEDRATE = #{afrAppliedrate,jdbcType=DECIMAL},
</if>
<if test="afrAppliedamoun != null" >
AFR_APPLIEDAMOUN = #{afrAppliedamoun,jdbcType=DECIMAL},
</if>
<if test="messageBakId != null" >
MESSAGE_BAK_ID = #{messageBakId,jdbcType=DECIMAL},
</if>
</set>
where FID = #{fid,jdbcType=DECIMAL}
</update>
<update id="updateByPrimaryKey" parameterType="com.example.demo.model.T_TXD_FWB" >
update T_TXD_FWB
set ID = #{id,jdbcType=VARCHAR},
TYPECODE = #{typecode,jdbcType=VARCHAR},
NILCARRIAGEVALUECARRIAGE = #{nilcarriagevaluecarriage,jdbcType=VARCHAR},
DECLAREDVALUE = #{declaredvalue,jdbcType=DECIMAL},
NILCUSTOMSVALUECUSTOMS = #{nilcustomsvaluecustoms,jdbcType=VARCHAR},
DECLAREDVALUECUSTOMS = #{declaredvaluecustoms,jdbcType=VARCHAR},
NILINSURANCEVALUE = #{nilinsurancevalue,jdbcType=VARCHAR},
INSURANCEVALUE = #{insurancevalue,jdbcType=VARCHAR},
TOTALCHARGEPREPAID = #{totalchargeprepaid,jdbcType=VARCHAR},
WEIGHTTOTALCHARGEAMOUNT = #{weighttotalchargeamount,jdbcType=DECIMAL},
VALUATIONTOTALCHARGE = #{valuationtotalcharge,jdbcType=DECIMAL},
TOTALDISBURSEMENTPREPAID = #{totaldisbursementprepaid,jdbcType=VARCHAR},
TOTALPREPAIDCHARGE = #{totalprepaidcharge,jdbcType=DECIMAL},
TOTALCOLLECTCHARGE = #{totalcollectcharge,jdbcType=DECIMAL},
DESTINATIONCURRENCY = #{destinationcurrency,jdbcType=DECIMAL},
INCLUDEDTAREGROSSWEIGHT = #{includedtaregrossweight,jdbcType=DECIMAL},
NETWEIGHTMEASURE = #{netweightmeasure,jdbcType=DECIMAL},
GROSSVOLUMEMEASURE = #{grossvolumemeasure,jdbcType=DECIMAL},
TOTALCHARGEABLEWEIGHT = #{totalchargeableweight,jdbcType=DECIMAL},
CONSIGNMENTITEMQUANTITY = #{consignmentitemquantity,jdbcType=DECIMAL},
TOTALPIECEQUANTITY = #{totalpiecequantity,jdbcType=DECIMAL},
TOTALLOADEDPACKAGE = #{totalloadedpackage,jdbcType=DECIMAL},
PACKAGEINFO = #{packageinfo,jdbcType=VARCHAR},
FREIGHTRATETYPECODE = #{freightratetypecode,jdbcType=VARCHAR},
CRP_PRIMARYID = #{crpPrimaryid,jdbcType=VARCHAR},
CRP_NAME = #{crpName,jdbcType=VARCHAR},
CRP_ACCOUNTID = #{crpAccountid,jdbcType=VARCHAR},
PSA_STREETNAME = #{psaStreetname,jdbcType=VARCHAR},
PSA_CITYNAME = #{psaCityname,jdbcType=VARCHAR},
PSA_COUNTRYID = #{psaCountryid,jdbcType=VARCHAR},
PSA_SPECIFIEDADDRESS = #{psaSpecifiedaddress,jdbcType=VARCHAR},
DTC_COMPLETENUMBER = #{dtcCompletenumber,jdbcType=VARCHAR},
CEP_PRIMARYID = #{cepPrimaryid,jdbcType=VARCHAR},
CEP_NAME = #{cepName,jdbcType=VARCHAR},
CEP_ACCOUNTID = #{cepAccountid,jdbcType=VARCHAR},
PS_STREETNAME = #{psStreetname,jdbcType=VARCHAR},
PS_CITYNAME = #{psCityname,jdbcType=VARCHAR},
PS_COUNTRYID = #{psCountryid,jdbcType=VARCHAR},
PS_SPECIFIEDADDRESS = #{psSpecifiedaddress,jdbcType=VARCHAR},
DT_COMPLETENUMBER = #{dtCompletenumber,jdbcType=VARCHAR},
FFP_NAME = #{ffpName,jdbcType=VARCHAR},
FFP_ACCOUNTID = #{ffpAccountid,jdbcType=VARCHAR},
FFP_CITYNAME = #{ffpCityname,jdbcType=VARCHAR},
FFP_COUNTRYID = #{ffpCountryid,jdbcType=VARCHAR},
FFP_SPECIFIEDADDRESS = #{ffpSpecifiedaddress,jdbcType=VARCHAR},
OL_ID = #{olId,jdbcType=VARCHAR},
FD_ID = #{fdId,jdbcType=VARCHAR},
SL_STAGECODE = #{slStagecode,jdbcType=VARCHAR},
SL_MODECODE = #{slModecode,jdbcType=VARCHAR},
SL_MODE = #{slMode,jdbcType=VARCHAR},
SL_ID = #{slId,jdbcType=VARCHAR},
SL_SEQUENCENUMERIC = #{slSequencenumeric,jdbcType=VARCHAR},
SL_USEDLOGISTICSTRANSPORT = #{slUsedlogisticstransport,jdbcType=VARCHAR},
OA_ID = #{oaId,jdbcType=VARCHAR},
DE_DATETIME = #{deDatetime,jdbcType=TIMESTAMP},
OD_ID = #{odId,jdbcType=VARCHAR},
ATC_SOURCECURRENCYCODE = #{atcSourcecurrencycode,jdbcType=VARCHAR},
ATC_TARGETCURRENCYCODE = #{atcTargetcurrencycode,jdbcType=VARCHAR},
ATC_MARKETID = #{atcMarketid,jdbcType=VARCHAR},
ATC_CONVERSIONRATE = #{atcConversionrate,jdbcType=DECIMAL},
ALA_ID = #{alaId,jdbcType=VARCHAR},
ALA_REASON = #{alaReason,jdbcType=VARCHAR},
ALA_ACTUALAMOUNT = #{alaActualamount,jdbcType=DECIMAL},
ALA_PARTYTYPECODE = #{alaPartytypecode,jdbcType=VARCHAR},
SCA_ACTUALDATETIME = #{scaActualdatetime,jdbcType=TIMESTAMP},
SCA_SIGNATORY = #{scaSignatory,jdbcType=VARCHAR},
IL_NAME = #{ilName,jdbcType=VARCHAR},
IMCI_SEQUENCENUMERIC = #{imciSequencenumeric,jdbcType=VARCHAR},
IMCI_TYPECODE = #{imciTypecode,jdbcType=VARCHAR},
IMCI_GROSSWEIGHTMEASURE = #{imciGrossweightmeasure,jdbcType=DECIMAL},
IMCI_GROSSVOLUMEMEASURE = #{imciGrossvolumemeasure,jdbcType=DECIMAL},
IMCI_PIECEQUANTITY = #{imciPiecequantity,jdbcType=DECIMAL},
IMCI_TAREWEIGHTMEASURE = #{imciTareweightmeasure,jdbcType=DECIMAL},
NIT_IDENTIFICATION = #{nitIdentification,jdbcType=VARCHAR},
AULT_OPERATINGPARTY = #{aultOperatingparty,jdbcType=VARCHAR},
TLP_ITEMQUANTITY = #{tlpItemquantity,jdbcType=DECIMAL},
LSD_DESCRIPTION = #{lsdDescription,jdbcType=VARCHAR},
LSD_WIDTHMEASURE = #{lsdWidthmeasure,jdbcType=DECIMAL},
LSD_LENGTHMEASURE = #{lsdLengthmeasure,jdbcType=DECIMAL},
LSD_HEIGHTMEASURE = #{lsdHeightmeasure,jdbcType=DECIMAL},
AFR_CATEGORYCODE = #{afrCategorycode,jdbcType=VARCHAR},
AFR_COMMODITYITEMID = #{afrCommodityitemid,jdbcType=VARCHAR},
AFR_CHARGEABLEWEIGHTMEASURE = #{afrChargeableweightmeasure,jdbcType=DECIMAL},
AFR_APPLIEDRATE = #{afrAppliedrate,jdbcType=DECIMAL},
AFR_APPLIEDAMOUN = #{afrAppliedamoun,jdbcType=DECIMAL},
MESSAGE_BAK_ID = #{messageBakId,jdbcType=DECIMAL}
where FID = #{fid,jdbcType=DECIMAL}
</update>
</mapper>
\ No newline at end of file
... ...
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.example.demo.mapper.T_TXD_FWBPARTYMapper" >
<resultMap id="BaseResultMap" type="com.example.demo.model.T_TXD_FWBPARTY" >
<id column="FID" property="fid" jdbcType="DECIMAL" />
<result column="PRIMARYID" property="primaryid" jdbcType="VARCHAR" />
<result column="NAME" property="name" jdbcType="VARCHAR" />
<result column="ACCOUNTID" property="accountid" jdbcType="VARCHAR" />
<result column="ROLECODE" property="rolecode" jdbcType="VARCHAR" />
<result column="ROLE" property="role" jdbcType="VARCHAR" />
<result column="CITYNAME" property="cityname" jdbcType="VARCHAR" />
<result column="COUNTRYID" property="countryid" jdbcType="VARCHAR" />
<result column="SPECIFIEDADDRESSLOCATION" property="specifiedaddresslocation" jdbcType="VARCHAR" />
<result column="SPECIFIEDCARGOAGENTLOCATION" property="specifiedcargoagentlocation" jdbcType="VARCHAR" />
<result column="DEFINEDTRADECONTACT" property="definedtradecontact" jdbcType="VARCHAR" />
<result column="TXD_FWB_ID" property="txdFwbId" jdbcType="DECIMAL" />
</resultMap>
<sql id="Base_Column_List" >
FID, PRIMARYID, NAME, ACCOUNTID, ROLECODE, ROLE, CITYNAME, COUNTRYID, SPECIFIEDADDRESSLOCATION,
SPECIFIEDCARGOAGENTLOCATION, DEFINEDTRADECONTACT, TXD_FWB_ID
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.math.BigDecimal" >
select
<include refid="Base_Column_List" />
from T_TXD_FWBPARTY
where FID = #{fid,jdbcType=DECIMAL}
</select>
<delete id="deleteByPrimaryKey" parameterType="java.math.BigDecimal" >
delete from T_TXD_FWBPARTY
where FID = #{fid,jdbcType=DECIMAL}
</delete>
<insert id="insert" parameterType="com.example.demo.model.T_TXD_FWBPARTY" >
insert into T_TXD_FWBPARTY (FID, PRIMARYID, NAME,
ACCOUNTID, ROLECODE, ROLE,
CITYNAME, COUNTRYID, SPECIFIEDADDRESSLOCATION,
SPECIFIEDCARGOAGENTLOCATION, DEFINEDTRADECONTACT,
TXD_FWB_ID)
values (#{fid,jdbcType=DECIMAL}, #{primaryid,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR},
#{accountid,jdbcType=VARCHAR}, #{rolecode,jdbcType=VARCHAR}, #{role,jdbcType=VARCHAR},
#{cityname,jdbcType=VARCHAR}, #{countryid,jdbcType=VARCHAR}, #{specifiedaddresslocation,jdbcType=VARCHAR},
#{specifiedcargoagentlocation,jdbcType=VARCHAR}, #{definedtradecontact,jdbcType=VARCHAR},
#{txdFwbId,jdbcType=DECIMAL})
</insert>
<insert id="insertSelective" parameterType="com.example.demo.model.T_TXD_FWBPARTY" >
insert into T_TXD_FWBPARTY
<trim prefix="(" suffix=")" suffixOverrides="," >
<if test="fid != null" >
FID,
</if>
<if test="primaryid != null" >
PRIMARYID,
</if>
<if test="name != null" >
NAME,
</if>
<if test="accountid != null" >
ACCOUNTID,
</if>
<if test="rolecode != null" >
ROLECODE,
</if>
<if test="role != null" >
ROLE,
</if>
<if test="cityname != null" >
CITYNAME,
</if>
<if test="countryid != null" >
COUNTRYID,
</if>
<if test="specifiedaddresslocation != null" >
SPECIFIEDADDRESSLOCATION,
</if>
<if test="specifiedcargoagentlocation != null" >
SPECIFIEDCARGOAGENTLOCATION,
</if>
<if test="definedtradecontact != null" >
DEFINEDTRADECONTACT,
</if>
<if test="txdFwbId != null" >
TXD_FWB_ID,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides="," >
<if test="fid != null" >
#{fid,jdbcType=DECIMAL},
</if>
<if test="primaryid != null" >
#{primaryid,jdbcType=VARCHAR},
</if>
<if test="name != null" >
#{name,jdbcType=VARCHAR},
</if>
<if test="accountid != null" >
#{accountid,jdbcType=VARCHAR},
</if>
<if test="rolecode != null" >
#{rolecode,jdbcType=VARCHAR},
</if>
<if test="role != null" >
#{role,jdbcType=VARCHAR},
</if>
<if test="cityname != null" >
#{cityname,jdbcType=VARCHAR},
</if>
<if test="countryid != null" >
#{countryid,jdbcType=VARCHAR},
</if>
<if test="specifiedaddresslocation != null" >
#{specifiedaddresslocation,jdbcType=VARCHAR},
</if>
<if test="specifiedcargoagentlocation != null" >
#{specifiedcargoagentlocation,jdbcType=VARCHAR},
</if>
<if test="definedtradecontact != null" >
#{definedtradecontact,jdbcType=VARCHAR},
</if>
<if test="txdFwbId != null" >
#{txdFwbId,jdbcType=DECIMAL},
</if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective" parameterType="com.example.demo.model.T_TXD_FWBPARTY" >
update T_TXD_FWBPARTY
<set >
<if test="primaryid != null" >
PRIMARYID = #{primaryid,jdbcType=VARCHAR},
</if>
<if test="name != null" >
NAME = #{name,jdbcType=VARCHAR},
</if>
<if test="accountid != null" >
ACCOUNTID = #{accountid,jdbcType=VARCHAR},
</if>
<if test="rolecode != null" >
ROLECODE = #{rolecode,jdbcType=VARCHAR},
</if>
<if test="role != null" >
ROLE = #{role,jdbcType=VARCHAR},
</if>
<if test="cityname != null" >
CITYNAME = #{cityname,jdbcType=VARCHAR},
</if>
<if test="countryid != null" >
COUNTRYID = #{countryid,jdbcType=VARCHAR},
</if>
<if test="specifiedaddresslocation != null" >
SPECIFIEDADDRESSLOCATION = #{specifiedaddresslocation,jdbcType=VARCHAR},
</if>
<if test="specifiedcargoagentlocation != null" >
SPECIFIEDCARGOAGENTLOCATION = #{specifiedcargoagentlocation,jdbcType=VARCHAR},
</if>
<if test="definedtradecontact != null" >
DEFINEDTRADECONTACT = #{definedtradecontact,jdbcType=VARCHAR},
</if>
<if test="txdFwbId != null" >
TXD_FWB_ID = #{txdFwbId,jdbcType=DECIMAL},
</if>
</set>
where FID = #{fid,jdbcType=DECIMAL}
</update>
<update id="updateByPrimaryKey" parameterType="com.example.demo.model.T_TXD_FWBPARTY" >
update T_TXD_FWBPARTY
set PRIMARYID = #{primaryid,jdbcType=VARCHAR},
NAME = #{name,jdbcType=VARCHAR},
ACCOUNTID = #{accountid,jdbcType=VARCHAR},
ROLECODE = #{rolecode,jdbcType=VARCHAR},
ROLE = #{role,jdbcType=VARCHAR},
CITYNAME = #{cityname,jdbcType=VARCHAR},
COUNTRYID = #{countryid,jdbcType=VARCHAR},
SPECIFIEDADDRESSLOCATION = #{specifiedaddresslocation,jdbcType=VARCHAR},
SPECIFIEDCARGOAGENTLOCATION = #{specifiedcargoagentlocation,jdbcType=VARCHAR},
DEFINEDTRADECONTACT = #{definedtradecontact,jdbcType=VARCHAR},
TXD_FWB_ID = #{txdFwbId,jdbcType=DECIMAL}
where FID = #{fid,jdbcType=DECIMAL}
</update>
</mapper>
\ No newline at end of file
... ...
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.example.demo.mapper.T_TXD_FWBSTATUSMapper" >
<resultMap id="BaseResultMap" type="com.example.demo.model.T_TXD_FWBSTATUS" >
<id column="FID" property="fid" jdbcType="DECIMAL" />
<result column="REASONCODE" property="reasoncode" jdbcType="VARCHAR" />
<result column="OCCURRENCEDATETIME" property="occurrencedatetime" jdbcType="TIMESTAMP" />
<result column="DATETIMETYPECODE" property="datetimetypecode" jdbcType="VARCHAR" />
<result column="ID" property="id" jdbcType="VARCHAR" />
<result column="TXD_FWB_ID" property="txdFwbId" jdbcType="DECIMAL" />
</resultMap>
<sql id="Base_Column_List" >
FID, REASONCODE, OCCURRENCEDATETIME, DATETIMETYPECODE, ID, TXD_FWB_ID
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.math.BigDecimal" >
select
<include refid="Base_Column_List" />
from T_TXD_FWBSTATUS
where FID = #{fid,jdbcType=DECIMAL}
</select>
<delete id="deleteByPrimaryKey" parameterType="java.math.BigDecimal" >
delete from T_TXD_FWBSTATUS
where FID = #{fid,jdbcType=DECIMAL}
</delete>
<insert id="insert" parameterType="com.example.demo.model.T_TXD_FWBSTATUS" >
insert into T_TXD_FWBSTATUS (FID, REASONCODE, OCCURRENCEDATETIME,
DATETIMETYPECODE, ID, TXD_FWB_ID
)
values (#{fid,jdbcType=DECIMAL}, #{reasoncode,jdbcType=VARCHAR}, #{occurrencedatetime,jdbcType=TIMESTAMP},
#{datetimetypecode,jdbcType=VARCHAR}, #{id,jdbcType=VARCHAR}, #{txdFwbId,jdbcType=DECIMAL}
)
</insert>
<insert id="insertSelective" parameterType="com.example.demo.model.T_TXD_FWBSTATUS" >
insert into T_TXD_FWBSTATUS
<trim prefix="(" suffix=")" suffixOverrides="," >
<if test="fid != null" >
FID,
</if>
<if test="reasoncode != null" >
REASONCODE,
</if>
<if test="occurrencedatetime != null" >
OCCURRENCEDATETIME,
</if>
<if test="datetimetypecode != null" >
DATETIMETYPECODE,
</if>
<if test="id != null" >
ID,
</if>
<if test="txdFwbId != null" >
TXD_FWB_ID,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides="," >
<if test="fid != null" >
#{fid,jdbcType=DECIMAL},
</if>
<if test="reasoncode != null" >
#{reasoncode,jdbcType=VARCHAR},
</if>
<if test="occurrencedatetime != null" >
#{occurrencedatetime,jdbcType=TIMESTAMP},
</if>
<if test="datetimetypecode != null" >
#{datetimetypecode,jdbcType=VARCHAR},
</if>
<if test="id != null" >
#{id,jdbcType=VARCHAR},
</if>
<if test="txdFwbId != null" >
#{txdFwbId,jdbcType=DECIMAL},
</if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective" parameterType="com.example.demo.model.T_TXD_FWBSTATUS" >
update T_TXD_FWBSTATUS
<set >
<if test="reasoncode != null" >
REASONCODE = #{reasoncode,jdbcType=VARCHAR},
</if>
<if test="occurrencedatetime != null" >
OCCURRENCEDATETIME = #{occurrencedatetime,jdbcType=TIMESTAMP},
</if>
<if test="datetimetypecode != null" >
DATETIMETYPECODE = #{datetimetypecode,jdbcType=VARCHAR},
</if>
<if test="id != null" >
ID = #{id,jdbcType=VARCHAR},
</if>
<if test="txdFwbId != null" >
TXD_FWB_ID = #{txdFwbId,jdbcType=DECIMAL},
</if>
</set>
where FID = #{fid,jdbcType=DECIMAL}
</update>
<update id="updateByPrimaryKey" parameterType="com.example.demo.model.T_TXD_FWBSTATUS" >
update T_TXD_FWBSTATUS
set REASONCODE = #{reasoncode,jdbcType=VARCHAR},
OCCURRENCEDATETIME = #{occurrencedatetime,jdbcType=TIMESTAMP},
DATETIMETYPECODE = #{datetimetypecode,jdbcType=VARCHAR},
ID = #{id,jdbcType=VARCHAR},
TXD_FWB_ID = #{txdFwbId,jdbcType=DECIMAL}
where FID = #{fid,jdbcType=DECIMAL}
</update>
</mapper>
\ No newline at end of file
... ...
package com.example.demo;
import com.example.demo.model.T_TXD_FWB;
import com.example.demo.model.T_TXD_FWBPARTY;
import com.example.demo.service.T_TXD_FWB_Service;
import com.example.demo.util.XML.XML2ENTITY;
import org.dom4j.Document;
import org.dom4j.DocumentException;
import org.dom4j.DocumentHelper;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import java.io.IOException;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.time.ZonedDateTime;
import java.util.Date;
import java.util.List;
import java.util.Map;
public class FWBDemo {
protected static final Logger logger = LoggerFactory.getLogger(FWBDemo.class);
@Autowired
private static T_TXD_FWB_Service fwb_service;
public static void main(String[] args) throws IOException,
DocumentException {
// FileInputStream fis = new FileInputStream("d://a.xml");
// byte[] b = new byte[fis.available()];
// fis.read(b);
// String str = new String(b);
String xml = "<MSG>\n" +
"\t<META>\n" +
"\t\t<SNDR>TXD</SNDR>\n" +
"\t\t<DDTM>20181114040536</DDTM>\n" +
"\t\t<TYPE>DFME</TYPE>\n" +
"\t\t<STYP>FWB</STYP>\n" +
"\t\t<SEQN>4643187</SEQN>\n" +
"\t</META>\n" +
"\t<MasterConsignment>\n" +
"\t\t<ID>880-83213594</ID>\n" +
"\t\t<TypeCode>741</TypeCode>\n" +
"\t\t<NilCarriageValueIndicator>false</NilCarriageValueIndicator>\n" +
"\t\t<DeclaredValueForCarriageAmount currencyID=\"CNY\">0</DeclaredValueForCarriageAmount>\n" +
"\t\t<NilCustomsValueIndicator>true</NilCustomsValueIndicator>\n" +
"\t\t<DeclaredValueForCustomsAmount currencyID=\"CNY\">NCV</DeclaredValueForCustomsAmount>\n" +
"\t\t<NilInsuranceValueIndicator>true</NilInsuranceValueIndicator>\n" +
"\t\t<InsuranceValueAmount currencyID=\"CNY\">XXX</InsuranceValueAmount>\n" +
"\t\t<TotalChargePrepaidIndicator>true</TotalChargePrepaidIndicator>\n" +
"\t\t<WeightTotalChargeAmount currencyID=\"CNY\">502</WeightTotalChargeAmount>\n" +
"\t\t<ValuationTotalChargeAmount currencyID=\"CNY\">0.00</ValuationTotalChargeAmount>\n" +
"\t\t<TotalDisbursementPrepaidIndicator>true</TotalDisbursementPrepaidIndicator>\n" +
"\t\t<TotalPrepaidChargeAmount currencyID=\"CNY\">613.60</TotalPrepaidChargeAmount>\n" +
"\t\t<TotalCollectChargeAmount currencyID=\"CNY\">0</TotalCollectChargeAmount>\n" +
"\t\t<DestinationCurrencyTotalCollectChargeAmount currencyID=\"CNY\">0</DestinationCurrencyTotalCollectChargeAmount>\n" +
"\t\t<IncludedTareGrossWeightMeasure unitCode=\"KGM\">558.0</IncludedTareGrossWeightMeasure>\n" +
"\t\t<NetWeightMeasure/>\n" +
"\t\t<GrossVolumeMeasure unitCode=\"MTQ\">4.44</GrossVolumeMeasure>\n" +
"\t\t<TotalChargeableWeightMeasure unitCode=\"KGM\">558.0</TotalChargeableWeightMeasure>\n" +
"\t\t<ConsignmentItemQuantity>1</ConsignmentItemQuantity>\n" +
"\t\t<TotalPieceQuantity>74</TotalPieceQuantity>\n" +
"\t\t<TotalLoadedPackageQuantity>74</TotalLoadedPackageQuantity>\n" +
"\t\t<PackageInfo>编织袋</PackageInfo>\n" +
"\t\t<FreightRateTypeCode>Q</FreightRateTypeCode>\n" +
"\t\t<ConsignorParty>\n" +
"\t\t\t<PrimaryID schemeAgencyID=\"1\">HNHH</PrimaryID>\n" +
"\t\t\t<Name>河南汇海物流有限公司</Name>\n" +
"\t\t\t<AccountID>INFOSKY:NULL</AccountID>\n" +
"\t\t\t<PostalStructuredAddress>\n" +
"\t\t\t\t<StreetName>郑州</StreetName>\n" +
"\t\t\t\t<CityName>CGO</CityName>\n" +
"\t\t\t\t<CountryID>CN</CountryID>\n" +
"\t\t\t\t<SpecifiedAddressLocation/>\n" +
"\t\t\t</PostalStructuredAddress>\n" +
"\t\t\t<SpecifiedCargoAgentLocation/>\n" +
"\t\t\t<DefinedTradeContact>\n" +
"\t\t\t\t<DirectTelephoneCommunication>\n" +
"\t\t\t\t\t<CompleteNumber>CGO</CompleteNumber>\n" +
"\t\t\t\t</DirectTelephoneCommunication>\n" +
"\t\t\t</DefinedTradeContact>\n" +
"\t\t</ConsignorParty>\n" +
"\t\t<ConsigneeParty>\n" +
"\t\t\t<PrimaryID schemeAgencyID=\"2\">SK</PrimaryID>\n" +
"\t\t\t<Name>海南顺丰速运有限公司</Name>\n" +
"\t\t\t<AccountID>INFOSKY:NULL</AccountID>\n" +
"\t\t\t<PostalStructuredAddress>\n" +
"\t\t\t\t<StreetName>机场自提</StreetName>\n" +
"\t\t\t\t<CityName>HAK</CityName>\n" +
"\t\t\t\t<CountryID>CN</CountryID>\n" +
"\t\t\t\t<SpecifiedAddressLocation/>\n" +
"\t\t\t</PostalStructuredAddress>\n" +
"\t\t\t<SpecifiedCargoAgentLocation/>\n" +
"\t\t\t<DefinedTradeContact/>\n" +
"\t\t</ConsigneeParty>\n" +
"\t\t<FreightForwarderParty>\n" +
"\t\t\t<Name>CGOSA</Name>\n" +
"\t\t\t<AccountID>INFOSKY:NULL</AccountID>\n" +
"\t\t\t<PostalStructuredAddress>\n" +
"\t\t\t\t<CityName>CGO</CityName>\n" +
"\t\t\t\t<CountryID>CN</CountryID>\n" +
"\t\t\t\t<SpecifiedAddressLocation/>\n" +
"\t\t\t</PostalStructuredAddress>\n" +
"\t\t\t<SpecifiedCargoAgentLocation/>\n" +
"\t\t\t<DefinedTradeContact/>\n" +
"\t\t</FreightForwarderParty>\n" +
"\t\t<AssociatedParty>\n" +
"\t\t\t<PrimaryID/>\n" +
"\t\t\t<Name>CGO</Name>\n" +
"\t\t\t<AccountID>INFOSKY:NULL</AccountID>\n" +
"\t\t\t<RoleCode>AGT</RoleCode>\n" +
"\t\t\t<Role>Agent</Role>\n" +
"\t\t\t<PostalStructuredAddress>\n" +
"\t\t\t\t<CityName>CGO</CityName>\n" +
"\t\t\t\t<CountryID>CN</CountryID>\n" +
"\t\t\t\t<SpecifiedAddressLocation/>\n" +
"\t\t\t</PostalStructuredAddress>\n" +
"\t\t\t<SpecifiedCargoAgentLocation/>\n" +
"\t\t\t<DefinedTradeContact/>\n" +
"\t\t</AssociatedParty>\n" +
"\t\t<AssociatedParty>\n" +
"\t\t\t<PrimaryID/>\n" +
"\t\t\t<Name>CGOHA</Name>\n" +
"\t\t\t<AccountID>INFOSKY:NULL</AccountID>\n" +
"\t\t\t<RoleCode>GHA</RoleCode>\n" +
"\t\t\t<Role>Ground Handling Agent</Role>\n" +
"\t\t\t<PostalStructuredAddress>\n" +
"\t\t\t\t<CityName>CGO</CityName>\n" +
"\t\t\t\t<CountryID>CN</CountryID>\n" +
"\t\t\t\t<SpecifiedAddressLocation/>\n" +
"\t\t\t</PostalStructuredAddress>\n" +
"\t\t\t<SpecifiedCargoAgentLocation/>\n" +
"\t\t\t<DefinedTradeContact/>\n" +
"\t\t</AssociatedParty>\n" +
"\t\t<OriginLocation>\n" +
"\t\t\t<ID>CGO</ID>\n" +
"\t\t</OriginLocation>\n" +
"\t\t<FinalDestinationLocation>\n" +
"\t\t\t<ID>HAK</ID>\n" +
"\t\t</FinalDestinationLocation>\n" +
"\t\t<SpecifiedLogisticsTransportMovement>\n" +
"\t\t\t<StageCode>HU7304/Nov14</StageCode>\n" +
"\t\t\t<ModeCode>4</ModeCode>\n" +
"\t\t\t<Mode>Air Transport</Mode>\n" +
"\t\t\t<ID>HU7304</ID>\n" +
"\t\t\t<SequenceNumeric>1</SequenceNumeric>\n" +
"\t\t\t<UsedLogisticsTransportMeans/>\n" +
"\t\t\t<ArrivalEvent>\n" +
"\t\t\t\t<OccurrenceArrivalLocation>\n" +
"\t\t\t\t\t<ID>HAK</ID>\n" +
"\t\t\t\t</OccurrenceArrivalLocation>\n" +
"\t\t\t</ArrivalEvent>\n" +
"\t\t\t<DepartureEvent>\n" +
"\t\t\t\t<ScheduledOccurrenceDateTime>2018-11-14T00:00:00+08:00</ScheduledOccurrenceDateTime>\n" +
"\t\t\t\t<OccurrenceDepartureLocation>\n" +
"\t\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t\t</OccurrenceDepartureLocation>\n" +
"\t\t\t</DepartureEvent>\n" +
"\t\t</SpecifiedLogisticsTransportMovement>\n" +
"\t\t<IncludedAccountingNote>\n" +
"\t\t\t<ContentCode>20010003普通</ContentCode>\n" +
"\t\t\t<Content>20010003普通</Content>\n" +
"\t\t</IncludedAccountingNote>\n" +
"\t\t<AssociatedConsignmentCustomsProcedure/>\n" +
"\t\t<ApplicableTradeCurrencyExchange>\n" +
"\t\t\t<SourceCurrencyCode>CNY</SourceCurrencyCode>\n" +
"\t\t\t<TargetCurrencyCode>CNY</TargetCurrencyCode>\n" +
"\t\t\t<MarketID>S</MarketID>\n" +
"\t\t\t<ConversionRate>1</ConversionRate>\n" +
"\t\t</ApplicableTradeCurrencyExchange>\n" +
"\t\t<ApplicableLogisticsServiceCharge/>\n" +
"\t\t<ApplicableLogisticsAllowanceCharge>\n" +
"\t\t\t<ID>MY</ID>\n" +
"\t\t\t<Reason>燃油费</Reason>\n" +
"\t\t\t<ActualAmount currencyID=\"CNY\">111.6</ActualAmount>\n" +
"\t\t\t<PartyTypeCode>C</PartyTypeCode>\n" +
"\t\t</ApplicableLogisticsAllowanceCharge>\n" +
"\t\t<SignatoryCarrierAuthentication>\n" +
"\t\t\t<ActualDateTime>2018-11-14T04:02:00</ActualDateTime>\n" +
"\t\t\t<Signatory>牛青</Signatory>\n" +
"\t\t\t<IssueAuthenticationLocation>\n" +
"\t\t\t\t<Name>郑州</Name>\n" +
"\t\t\t</IssueAuthenticationLocation>\n" +
"\t\t</SignatoryCarrierAuthentication>\n" +
"\t\t<IncludedMasterConsignmentItem>\n" +
"\t\t\t<SequenceNumeric>1</SequenceNumeric>\n" +
"\t\t\t<TypeCode listAgencyID=\"1\">PH</TypeCode>\n" +
"\t\t\t<GrossWeightMeasure unitCode=\"KGM\">558.0</GrossWeightMeasure>\n" +
"\t\t\t<GrossVolumeMeasure unitCode=\"MTQ\">4.44</GrossVolumeMeasure>\n" +
"\t\t\t<PieceQuantity>74</PieceQuantity>\n" +
"\t\t\t<TareWeightMeasure unitCode=\"KGM\">558.0</TareWeightMeasure>\n" +
"\t\t\t<NatureIdentificationTransportCargo>\n" +
"\t\t\t\t<Identification>手机机头(无电池) 电子主板 上衣 茶叶 大枣 皮带 票证 运动鞋 背包 灯座</Identification>\n" +
"\t\t\t</NatureIdentificationTransportCargo>\n" +
"\t\t\t<OriginCountry/>\n" +
"\t\t\t<AssociatedUnitLoadTransportEquipment>\n" +
"\t\t\t\t<OperatingParty/>\n" +
"\t\t\t</AssociatedUnitLoadTransportEquipment>\n" +
"\t\t\t<TransportLogisticsPackage>\n" +
"\t\t\t\t<ItemQuantity>74</ItemQuantity>\n" +
"\t\t\t\t<LinearSpatialDimension>\n" +
"\t\t\t\t\t<Description>true</Description>\n" +
"\t\t\t\t\t<WidthMeasure unitCode=\"CMT\">40</WidthMeasure>\n" +
"\t\t\t\t\t<LengthMeasure unitCode=\"CMT\">30</LengthMeasure>\n" +
"\t\t\t\t\t<HeightMeasure unitCode=\"CMT\">50</HeightMeasure>\n" +
"\t\t\t\t</LinearSpatialDimension>\n" +
"\t\t\t</TransportLogisticsPackage>\n" +
"\t\t\t<ApplicableFreightRateServiceCharge>\n" +
"\t\t\t\t<CategoryCode>Q</CategoryCode>\n" +
"\t\t\t\t<CommodityItemID>P</CommodityItemID>\n" +
"\t\t\t\t<ChargeableWeightMeasure unitCode=\"KGM\">558.0</ChargeableWeightMeasure>\n" +
"\t\t\t\t<AppliedRate>0.9</AppliedRate>\n" +
"\t\t\t\t<AppliedAmount currencyID=\"CNY\">502</AppliedAmount>\n" +
"\t\t\t</ApplicableFreightRateServiceCharge>\n" +
"\t\t\t<SpecifiedRateCombinationPointLocation/>\n" +
"\t\t</IncludedMasterConsignmentItem>\n" +
"\t\t<ReportedStatus>\n" +
"\t\t\t<ReasonCode>FWB</ReasonCode>\n" +
"\t\t\t<EventTime>\n" +
"\t\t\t\t<OccurrenceDateTime>2018-11-14T04:03:02+08:00</OccurrenceDateTime>\n" +
"\t\t\t\t<DateTimeTypeCode>Actual</DateTimeTypeCode>\n" +
"\t\t\t</EventTime>\n" +
"\t\t\t<SpecifiedLocation>\n" +
"\t\t\t\t<ID>CGO</ID>\n" +
"\t\t\t</SpecifiedLocation>\n" +
"\t\t</ReportedStatus>\n" +
"\t</MasterConsignment>\n" +
"</MSG>";
Document doc = DocumentHelper.parseText(xml);
long beginTime = System.currentTimeMillis();
try{
Map<String, Object> map = XML2ENTITY.Dom2Map(doc);
T_TXD_FWB fwb= new T_TXD_FWB();
//fwb.setFid(getBigDecimal(1));
fwb.setMessageBakId(getBigDecimal(1));
// 头部解析
Map metamap = (Map) map.get("META");
String SEDR = (String) metamap.get("SNDR");
//报体解析入口
Map MasterConsignment = (Map) map.get("MasterConsignment");
fwb.setId(MasterConsignment.get("ID").toString());
fwb.setTypecode(MasterConsignment.get("TypeCode").toString());
fwb.setNilcarriagevaluecarriage(MasterConsignment.get("NilCarriageValueIndicator").toString());
fwb.setDeclaredvalue(getBigDecimal(MasterConsignment.get("DeclaredValueForCarriageAmount")));
//发货人节点
Map consiger = (Map) MasterConsignment.get("ConsignorParty");
fwb.setCrpPrimaryid(consiger.get("PrimaryID").toString());
fwb.setCrpName(consiger.get("Name").toString());
fwb.setCrpAccountid(consiger.get("AccountID").toString());
fwb.setPsaStreetname(((Map)consiger.get("PostalStructuredAddress")).get("StreetName").toString()); //这个是不是发货人节点名称 库里面没字段注释 插入的时候要核实
fwb.setPsaCityname(((Map)consiger.get("PostalStructuredAddress")).get("CityName").toString());
fwb.setPsaCountryid(((Map)consiger.get("PostalStructuredAddress")).get("CountryID").toString());
fwb.setPsaSpecifiedaddress(((Map)consiger.get("PostalStructuredAddress")).get("SpecifiedAddressLocation").toString());
//收货人节点
//航班节点,表中的航班字段在哪里没找到
Map flight = (Map) MasterConsignment.get("SpecifiedLogisticsTransportMovement");
String flightNo = flight.get("ID").toString();
String flightDevTime = ((Map)flight.get("DepartureEvent")).get("ScheduledOccurrenceDateTime").toString();
ZonedDateTime depZoneTime = ZonedDateTime.parse(flightDevTime);
Date flightDate = Date.from(depZoneTime.toInstant()); //这个是入库航班日期格式
//货物节点
//插入主数据表
int fid = fwb_service.insert(fwb);
//处理字表
//重复的AssociatedParty节点
Object obj_AssociatedParty = MasterConsignment.get("AssociatedParty");
if (obj_AssociatedParty.getClass().getName().equals("java.util.ArrayList")){//多个AssociatedParty
List<Map> list_AssociatedParty = (List<Map>) MasterConsignment.get("AssociatedParty");
for (Map AssociatedParty : list_AssociatedParty){
AssociatedPartyHandle(AssociatedParty);
}
}else if (obj_AssociatedParty.getClass().getName().equals("java.util.HashMap")){ //一个报文,一个ArrivalEvent代表装载只有一个目的地
Map map_AssociatedParty = (Map) MasterConsignment.get("AssociatedParty");
AssociatedPartyHandle(map_AssociatedParty);
}
//重复的ReportedStatus节点
System.out.println(map.toString());
System.out.println("Use time:"+(System.currentTimeMillis()-beginTime));
}catch (Exception e){
logger.info("报文解析异常"+e.toString()+"\n报文内容"+doc.asXML());
}
}
static public void AssociatedPartyHandle(Map AssociatedParty){ //入库AssociatedParty实体处理
T_TXD_FWBPARTY assParty = new T_TXD_FWBPARTY();
assParty.setTxdFwbId(getBigDecimal(1));
}
/**
* Object转BigDecimal类型-MRZ-2018年5月14日09:56:26
*
* @param value 要转的object类型
* @return 转成的BigDecimal类型数据
*/
public static BigDecimal getBigDecimal(Object value) {
BigDecimal ret = null;
if (value != null) {
if (value instanceof BigDecimal) {
ret = (BigDecimal) value;
} else if (value instanceof String) {
ret = new BigDecimal((String) value);
} else if (value instanceof BigInteger) {
ret = new BigDecimal((BigInteger) value);
} else if (value instanceof Number) {
ret = new BigDecimal(((Number) value).doubleValue());
} else {
throw new ClassCastException("Not possible to coerce [" + value + "] from class " + value.getClass() + " into a BigDecimal.");
}
}
return ret;
}
}
... ...