|  |  | package com.sunyo.wlpt.base.model; | 
|  |  |  | 
|  |  | import lombok.Data; | 
|  |  | import com.fasterxml.jackson.annotation.JsonFormat; | 
|  |  |  | 
|  |  | import java.math.BigDecimal; | 
|  |  | import java.util.Date; | 
|  |  | import java.util.List; | 
|  |  |  | 
|  |  | @Data | 
|  |  | public class NMMS_CUSTOM_MT2201 { | 
|  |  | private String uuid; | 
|  |  |  | 
| ... | ... | @@ -18,12 +17,14 @@ public class NMMS_CUSTOM_MT2201 { | 
|  |  |  | 
|  |  | private String goodsname; | 
|  |  |  | 
|  |  | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") | 
|  |  | private Date actime; | 
|  |  |  | 
|  |  | private String carrier; | 
|  |  |  | 
|  |  | private String flightno; | 
|  |  |  | 
|  |  | @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") | 
|  |  | private Date flightdate; | 
|  |  |  | 
|  |  | private String originstation; | 
| ... | ... | @@ -58,4 +59,203 @@ public class NMMS_CUSTOM_MT2201 { | 
|  |  |  | 
|  |  | private List<NMMS_CUSTOM_MT2201> children; | 
|  |  |  | 
|  |  | public String getUuid() { | 
|  |  | return uuid; | 
|  |  | } | 
|  |  |  | 
|  |  | public void setUuid(String uuid) { | 
|  |  | this.uuid = uuid; | 
|  |  | } | 
|  |  |  | 
|  |  | public String getAwba() { | 
|  |  | return awba; | 
|  |  | } | 
|  |  |  | 
|  |  | public void setAwba(String awba) { | 
|  |  | this.awba = awba; | 
|  |  | } | 
|  |  |  | 
|  |  | public String getAwbh() { | 
|  |  | return awbh; | 
|  |  | } | 
|  |  |  | 
|  |  | public void setAwbh(String awbh) { | 
|  |  | this.awbh = awbh; | 
|  |  | } | 
|  |  |  | 
|  |  | public String getCustomcode() { | 
|  |  | return customcode; | 
|  |  | } | 
|  |  |  | 
|  |  | public void setCustomcode(String customcode) { | 
|  |  | this.customcode = customcode; | 
|  |  | } | 
|  |  |  | 
|  |  | public String getGoodsname() { | 
|  |  | return goodsname; | 
|  |  | } | 
|  |  |  | 
|  |  | public void setGoodsname(String goodsname) { | 
|  |  | this.goodsname = goodsname; | 
|  |  | } | 
|  |  |  | 
|  |  | public Date getActime() { | 
|  |  | return actime; | 
|  |  | } | 
|  |  |  | 
|  |  | public void setActime(Date actime) { | 
|  |  | this.actime = actime; | 
|  |  | } | 
|  |  |  | 
|  |  | public String getCarrier() { | 
|  |  | return carrier; | 
|  |  | } | 
|  |  |  | 
|  |  | public void setCarrier(String carrier) { | 
|  |  | this.carrier = carrier; | 
|  |  | } | 
|  |  |  | 
|  |  | public String getFlightno() { | 
|  |  | return flightno; | 
|  |  | } | 
|  |  |  | 
|  |  | public void setFlightno(String flightno) { | 
|  |  | this.flightno = flightno; | 
|  |  | } | 
|  |  |  | 
|  |  | public Date getFlightdate() { | 
|  |  | return flightdate; | 
|  |  | } | 
|  |  |  | 
|  |  | public void setFlightdate(Date flightdate) { | 
|  |  | this.flightdate = flightdate; | 
|  |  | } | 
|  |  |  | 
|  |  | public String getOriginstation() { | 
|  |  | return originstation; | 
|  |  | } | 
|  |  |  | 
|  |  | public void setOriginstation(String originstation) { | 
|  |  | this.originstation = originstation; | 
|  |  | } | 
|  |  |  | 
|  |  | public String getDestinationstation() { | 
|  |  | return destinationstation; | 
|  |  | } | 
|  |  |  | 
|  |  | public void setDestinationstation(String destinationstation) { | 
|  |  | this.destinationstation = destinationstation; | 
|  |  | } | 
|  |  |  | 
|  |  | public BigDecimal getPiece() { | 
|  |  | return piece; | 
|  |  | } | 
|  |  |  | 
|  |  | public void setPiece(BigDecimal piece) { | 
|  |  | this.piece = piece; | 
|  |  | } | 
|  |  |  | 
|  |  | public BigDecimal getWeight() { | 
|  |  | return weight; | 
|  |  | } | 
|  |  |  | 
|  |  | public void setWeight(BigDecimal weight) { | 
|  |  | this.weight = weight; | 
|  |  | } | 
|  |  |  | 
|  |  | public String getSplitcode() { | 
|  |  | return splitcode; | 
|  |  | } | 
|  |  |  | 
|  |  | public void setSplitcode(String splitcode) { | 
|  |  | this.splitcode = splitcode; | 
|  |  | } | 
|  |  |  | 
|  |  | public String getStatus() { | 
|  |  | return status; | 
|  |  | } | 
|  |  |  | 
|  |  | public void setStatus(String status) { | 
|  |  | this.status = status; | 
|  |  | } | 
|  |  |  | 
|  |  | public String getOffload() { | 
|  |  | return offload; | 
|  |  | } | 
|  |  |  | 
|  |  | public void setOffload(String offload) { | 
|  |  | this.offload = offload; | 
|  |  | } | 
|  |  |  | 
|  |  | public String getOffloaduuid() { | 
|  |  | return offloaduuid; | 
|  |  | } | 
|  |  |  | 
|  |  | public void setOffloaduuid(String offloaduuid) { | 
|  |  | this.offloaduuid = offloaduuid; | 
|  |  | } | 
|  |  |  | 
|  |  | public Boolean getIsdelete() { | 
|  |  | return isdelete; | 
|  |  | } | 
|  |  |  | 
|  |  | public void setIsdelete(Boolean isdelete) { | 
|  |  | this.isdelete = isdelete; | 
|  |  | } | 
|  |  |  | 
|  |  | public String getCustomtype() { | 
|  |  | return customtype; | 
|  |  | } | 
|  |  |  | 
|  |  | public void setCustomtype(String customtype) { | 
|  |  | this.customtype = customtype; | 
|  |  | } | 
|  |  |  | 
|  |  | public String getExt2() { | 
|  |  | return ext2; | 
|  |  | } | 
|  |  |  | 
|  |  | public void setExt2(String ext2) { | 
|  |  | this.ext2 = ext2; | 
|  |  | } | 
|  |  |  | 
|  |  | public String getExt3() { | 
|  |  | return ext3; | 
|  |  | } | 
|  |  |  | 
|  |  | public void setExt3(String ext3) { | 
|  |  | this.ext3 = ext3; | 
|  |  | } | 
|  |  |  | 
|  |  | public String getExt4() { | 
|  |  | return ext4; | 
|  |  | } | 
|  |  |  | 
|  |  | public void setExt4(String ext4) { | 
|  |  | this.ext4 = ext4; | 
|  |  | } | 
|  |  |  | 
|  |  | public String getExt5() { | 
|  |  | return ext5; | 
|  |  | } | 
|  |  |  | 
|  |  | public void setExt5(String ext5) { | 
|  |  | this.ext5 = ext5; | 
|  |  | } | 
|  |  |  | 
|  |  | public AWB_AWBINFO getAwbinfo() { | 
|  |  | return awbinfo; | 
|  |  | } | 
|  |  |  | 
|  |  | public void setAwbinfo(AWB_AWBINFO awbinfo) { | 
|  |  | this.awbinfo = awbinfo; | 
|  |  | } | 
|  |  |  | 
|  |  | public List<NMMS_CUSTOM_MT2201> getChildren() { | 
|  |  | return children; | 
|  |  | } | 
|  |  |  | 
|  |  | public void setChildren(List<NMMS_CUSTOM_MT2201> children) { | 
|  |  | this.children = children; | 
|  |  | } | 
|  |  | } | 
... | ... |  |