|
|
package com.sunyo.wlpt.base.model;
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
|
|
|
|
|
public class NMMS_CUSTOM_MT2201 {
|
|
|
private String uuid;
|
...
|
...
|
@@ -13,21 +17,23 @@ 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;
|
|
|
|
|
|
private String destinationstation;
|
|
|
|
|
|
private Integer piece;
|
|
|
private BigDecimal piece;
|
|
|
|
|
|
private Long weight;
|
|
|
private BigDecimal weight;
|
|
|
|
|
|
private String splitcode;
|
|
|
|
...
|
...
|
@@ -49,12 +55,16 @@ public class NMMS_CUSTOM_MT2201 { |
|
|
|
|
|
private String ext5;
|
|
|
|
|
|
private AWB_AWBINFO awbinfo;
|
|
|
|
|
|
private List<NMMS_CUSTOM_MT2201> children;
|
|
|
|
|
|
public String getUuid() {
|
|
|
return uuid;
|
|
|
}
|
|
|
|
|
|
public void setUuid(String uuid) {
|
|
|
this.uuid = uuid == null ? null : uuid.trim();
|
|
|
this.uuid = uuid;
|
|
|
}
|
|
|
|
|
|
public String getAwba() {
|
...
|
...
|
@@ -62,7 +72,7 @@ public class NMMS_CUSTOM_MT2201 { |
|
|
}
|
|
|
|
|
|
public void setAwba(String awba) {
|
|
|
this.awba = awba == null ? null : awba.trim();
|
|
|
this.awba = awba;
|
|
|
}
|
|
|
|
|
|
public String getAwbh() {
|
...
|
...
|
@@ -70,7 +80,7 @@ public class NMMS_CUSTOM_MT2201 { |
|
|
}
|
|
|
|
|
|
public void setAwbh(String awbh) {
|
|
|
this.awbh = awbh == null ? null : awbh.trim();
|
|
|
this.awbh = awbh;
|
|
|
}
|
|
|
|
|
|
public String getCustomcode() {
|
...
|
...
|
@@ -78,7 +88,7 @@ public class NMMS_CUSTOM_MT2201 { |
|
|
}
|
|
|
|
|
|
public void setCustomcode(String customcode) {
|
|
|
this.customcode = customcode == null ? null : customcode.trim();
|
|
|
this.customcode = customcode;
|
|
|
}
|
|
|
|
|
|
public String getGoodsname() {
|
...
|
...
|
@@ -86,7 +96,7 @@ public class NMMS_CUSTOM_MT2201 { |
|
|
}
|
|
|
|
|
|
public void setGoodsname(String goodsname) {
|
|
|
this.goodsname = goodsname == null ? null : goodsname.trim();
|
|
|
this.goodsname = goodsname;
|
|
|
}
|
|
|
|
|
|
public Date getActime() {
|
...
|
...
|
@@ -102,7 +112,7 @@ public class NMMS_CUSTOM_MT2201 { |
|
|
}
|
|
|
|
|
|
public void setCarrier(String carrier) {
|
|
|
this.carrier = carrier == null ? null : carrier.trim();
|
|
|
this.carrier = carrier;
|
|
|
}
|
|
|
|
|
|
public String getFlightno() {
|
...
|
...
|
@@ -110,7 +120,7 @@ public class NMMS_CUSTOM_MT2201 { |
|
|
}
|
|
|
|
|
|
public void setFlightno(String flightno) {
|
|
|
this.flightno = flightno == null ? null : flightno.trim();
|
|
|
this.flightno = flightno;
|
|
|
}
|
|
|
|
|
|
public Date getFlightdate() {
|
...
|
...
|
@@ -126,7 +136,7 @@ public class NMMS_CUSTOM_MT2201 { |
|
|
}
|
|
|
|
|
|
public void setOriginstation(String originstation) {
|
|
|
this.originstation = originstation == null ? null : originstation.trim();
|
|
|
this.originstation = originstation;
|
|
|
}
|
|
|
|
|
|
public String getDestinationstation() {
|
...
|
...
|
@@ -134,22 +144,22 @@ public class NMMS_CUSTOM_MT2201 { |
|
|
}
|
|
|
|
|
|
public void setDestinationstation(String destinationstation) {
|
|
|
this.destinationstation = destinationstation == null ? null : destinationstation.trim();
|
|
|
this.destinationstation = destinationstation;
|
|
|
}
|
|
|
|
|
|
public Integer getPiece() {
|
|
|
public BigDecimal getPiece() {
|
|
|
return piece;
|
|
|
}
|
|
|
|
|
|
public void setPiece(Integer piece) {
|
|
|
public void setPiece(BigDecimal piece) {
|
|
|
this.piece = piece;
|
|
|
}
|
|
|
|
|
|
public Long getWeight() {
|
|
|
public BigDecimal getWeight() {
|
|
|
return weight;
|
|
|
}
|
|
|
|
|
|
public void setWeight(Long weight) {
|
|
|
public void setWeight(BigDecimal weight) {
|
|
|
this.weight = weight;
|
|
|
}
|
|
|
|
...
|
...
|
@@ -158,7 +168,7 @@ public class NMMS_CUSTOM_MT2201 { |
|
|
}
|
|
|
|
|
|
public void setSplitcode(String splitcode) {
|
|
|
this.splitcode = splitcode == null ? null : splitcode.trim();
|
|
|
this.splitcode = splitcode;
|
|
|
}
|
|
|
|
|
|
public String getStatus() {
|
...
|
...
|
@@ -166,7 +176,7 @@ public class NMMS_CUSTOM_MT2201 { |
|
|
}
|
|
|
|
|
|
public void setStatus(String status) {
|
|
|
this.status = status == null ? null : status.trim();
|
|
|
this.status = status;
|
|
|
}
|
|
|
|
|
|
public String getOffload() {
|
...
|
...
|
@@ -174,7 +184,7 @@ public class NMMS_CUSTOM_MT2201 { |
|
|
}
|
|
|
|
|
|
public void setOffload(String offload) {
|
|
|
this.offload = offload == null ? null : offload.trim();
|
|
|
this.offload = offload;
|
|
|
}
|
|
|
|
|
|
public String getOffloaduuid() {
|
...
|
...
|
@@ -182,7 +192,7 @@ public class NMMS_CUSTOM_MT2201 { |
|
|
}
|
|
|
|
|
|
public void setOffloaduuid(String offloaduuid) {
|
|
|
this.offloaduuid = offloaduuid == null ? null : offloaduuid.trim();
|
|
|
this.offloaduuid = offloaduuid;
|
|
|
}
|
|
|
|
|
|
public Boolean getIsdelete() {
|
...
|
...
|
@@ -198,7 +208,7 @@ public class NMMS_CUSTOM_MT2201 { |
|
|
}
|
|
|
|
|
|
public void setCustomtype(String customtype) {
|
|
|
this.customtype = customtype == null ? null : customtype.trim();
|
|
|
this.customtype = customtype;
|
|
|
}
|
|
|
|
|
|
public String getExt2() {
|
...
|
...
|
@@ -206,7 +216,7 @@ public class NMMS_CUSTOM_MT2201 { |
|
|
}
|
|
|
|
|
|
public void setExt2(String ext2) {
|
|
|
this.ext2 = ext2 == null ? null : ext2.trim();
|
|
|
this.ext2 = ext2;
|
|
|
}
|
|
|
|
|
|
public String getExt3() {
|
...
|
...
|
@@ -214,7 +224,7 @@ public class NMMS_CUSTOM_MT2201 { |
|
|
}
|
|
|
|
|
|
public void setExt3(String ext3) {
|
|
|
this.ext3 = ext3 == null ? null : ext3.trim();
|
|
|
this.ext3 = ext3;
|
|
|
}
|
|
|
|
|
|
public String getExt4() {
|
...
|
...
|
@@ -222,7 +232,7 @@ public class NMMS_CUSTOM_MT2201 { |
|
|
}
|
|
|
|
|
|
public void setExt4(String ext4) {
|
|
|
this.ext4 = ext4 == null ? null : ext4.trim();
|
|
|
this.ext4 = ext4;
|
|
|
}
|
|
|
|
|
|
public String getExt5() {
|
...
|
...
|
@@ -230,6 +240,22 @@ public class NMMS_CUSTOM_MT2201 { |
|
|
}
|
|
|
|
|
|
public void setExt5(String ext5) {
|
|
|
this.ext5 = ext5 == null ? null : ext5.trim();
|
|
|
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;
|
|
|
}
|
|
|
} |
...
|
...
|
|