|
|
package com.sunyo.wlpt.base.model;
|
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
|
|
|
|
|
@Data
|
|
|
public class NMMS_CUSTOM_MT2201 {
|
|
|
private String uuid;
|
|
|
|
...
|
...
|
@@ -25,9 +30,9 @@ public class NMMS_CUSTOM_MT2201 { |
|
|
|
|
|
private String destinationstation;
|
|
|
|
|
|
private Integer piece;
|
|
|
private BigDecimal piece;
|
|
|
|
|
|
private Long weight;
|
|
|
private BigDecimal weight;
|
|
|
|
|
|
private String splitcode;
|
|
|
|
...
|
...
|
@@ -49,187 +54,8 @@ public class NMMS_CUSTOM_MT2201 { |
|
|
|
|
|
private String ext5;
|
|
|
|
|
|
public String getUuid() {
|
|
|
return uuid;
|
|
|
}
|
|
|
|
|
|
public void setUuid(String uuid) {
|
|
|
this.uuid = uuid == null ? null : uuid.trim();
|
|
|
}
|
|
|
|
|
|
public String getAwba() {
|
|
|
return awba;
|
|
|
}
|
|
|
|
|
|
public void setAwba(String awba) {
|
|
|
this.awba = awba == null ? null : awba.trim();
|
|
|
}
|
|
|
|
|
|
public String getAwbh() {
|
|
|
return awbh;
|
|
|
}
|
|
|
|
|
|
public void setAwbh(String awbh) {
|
|
|
this.awbh = awbh == null ? null : awbh.trim();
|
|
|
}
|
|
|
|
|
|
public String getCustomcode() {
|
|
|
return customcode;
|
|
|
}
|
|
|
|
|
|
public void setCustomcode(String customcode) {
|
|
|
this.customcode = customcode == null ? null : customcode.trim();
|
|
|
}
|
|
|
|
|
|
public String getGoodsname() {
|
|
|
return goodsname;
|
|
|
}
|
|
|
|
|
|
public void setGoodsname(String goodsname) {
|
|
|
this.goodsname = goodsname == null ? null : goodsname.trim();
|
|
|
}
|
|
|
|
|
|
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 == null ? null : carrier.trim();
|
|
|
}
|
|
|
|
|
|
public String getFlightno() {
|
|
|
return flightno;
|
|
|
}
|
|
|
|
|
|
public void setFlightno(String flightno) {
|
|
|
this.flightno = flightno == null ? null : flightno.trim();
|
|
|
}
|
|
|
|
|
|
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 == null ? null : originstation.trim();
|
|
|
}
|
|
|
|
|
|
public String getDestinationstation() {
|
|
|
return destinationstation;
|
|
|
}
|
|
|
|
|
|
public void setDestinationstation(String destinationstation) {
|
|
|
this.destinationstation = destinationstation == null ? null : destinationstation.trim();
|
|
|
}
|
|
|
|
|
|
public Integer getPiece() {
|
|
|
return piece;
|
|
|
}
|
|
|
|
|
|
public void setPiece(Integer piece) {
|
|
|
this.piece = piece;
|
|
|
}
|
|
|
|
|
|
public Long getWeight() {
|
|
|
return weight;
|
|
|
}
|
|
|
|
|
|
public void setWeight(Long weight) {
|
|
|
this.weight = weight;
|
|
|
}
|
|
|
|
|
|
public String getSplitcode() {
|
|
|
return splitcode;
|
|
|
}
|
|
|
|
|
|
public void setSplitcode(String splitcode) {
|
|
|
this.splitcode = splitcode == null ? null : splitcode.trim();
|
|
|
}
|
|
|
|
|
|
public String getStatus() {
|
|
|
return status;
|
|
|
}
|
|
|
|
|
|
public void setStatus(String status) {
|
|
|
this.status = status == null ? null : status.trim();
|
|
|
}
|
|
|
|
|
|
public String getOffload() {
|
|
|
return offload;
|
|
|
}
|
|
|
|
|
|
public void setOffload(String offload) {
|
|
|
this.offload = offload == null ? null : offload.trim();
|
|
|
}
|
|
|
|
|
|
public String getOffloaduuid() {
|
|
|
return offloaduuid;
|
|
|
}
|
|
|
|
|
|
public void setOffloaduuid(String offloaduuid) {
|
|
|
this.offloaduuid = offloaduuid == null ? null : offloaduuid.trim();
|
|
|
}
|
|
|
|
|
|
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 == null ? null : customtype.trim();
|
|
|
}
|
|
|
|
|
|
public String getExt2() {
|
|
|
return ext2;
|
|
|
}
|
|
|
|
|
|
public void setExt2(String ext2) {
|
|
|
this.ext2 = ext2 == null ? null : ext2.trim();
|
|
|
}
|
|
|
|
|
|
public String getExt3() {
|
|
|
return ext3;
|
|
|
}
|
|
|
|
|
|
public void setExt3(String ext3) {
|
|
|
this.ext3 = ext3 == null ? null : ext3.trim();
|
|
|
}
|
|
|
|
|
|
public String getExt4() {
|
|
|
return ext4;
|
|
|
}
|
|
|
|
|
|
public void setExt4(String ext4) {
|
|
|
this.ext4 = ext4 == null ? null : ext4.trim();
|
|
|
}
|
|
|
private AWB_AWBINFO awbinfo;
|
|
|
|
|
|
public String getExt5() {
|
|
|
return ext5;
|
|
|
}
|
|
|
private List<NMMS_CUSTOM_MT2201> children;
|
|
|
|
|
|
public void setExt5(String ext5) {
|
|
|
this.ext5 = ext5 == null ? null : ext5.trim();
|
|
|
}
|
|
|
} |
...
|
...
|
|