作者 zhangFan

change model

package com.sunyo.wlpt.base.model;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import java.math.BigDecimal;
import java.util.Date;
@Data
public class AWB_AWBINFO {
private String billid;
... ... @@ -139,6 +138,7 @@ public class AWB_AWBINFO {
private String cargoowner;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
private Date chargetime;
private String isinstruction;
... ... @@ -194,6 +194,7 @@ public class AWB_AWBINFO {
private String crtagent;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
private Date crtdate;
private BigDecimal extraweight;
... ... @@ -1258,4 +1259,36 @@ public class AWB_AWBINFO {
public void setOptime(Date optime) {
this.optime = optime;
}
public String getShpcomidpre() {
return shpcomidpre;
}
public void setShpcomidpre(String shpcomidpre) {
this.shpcomidpre = shpcomidpre;
}
public String getShpcomidpno() {
return shpcomidpno;
}
public void setShpcomidpno(String shpcomidpno) {
this.shpcomidpno = shpcomidpno;
}
public String getCnscomidpre() {
return cnscomidpre;
}
public void setCnscomidpre(String cnscomidpre) {
this.cnscomidpre = cnscomidpre;
}
public String getCnscomidno() {
return cnscomidno;
}
public void setCnscomidno(String cnscomidno) {
this.cnscomidno = cnscomidno;
}
}
... ...
package com.sunyo.wlpt.base.model;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
@Data
public class NMMS_CUSTOM_MT1201 {
private String uuid;
... ... @@ -19,13 +17,14 @@ public class NMMS_CUSTOM_MT1201 {
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")
@JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
private Date flightdate;
private String originstation;
... ... @@ -58,6 +57,195 @@ public class NMMS_CUSTOM_MT1201 {
private List<NMMS_CUSTOM_MT1201> 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 Boolean getIsdelete() {
return isdelete;
}
public void setIsdelete(Boolean isdelete) {
this.isdelete = isdelete;
}
public String getUldtype() {
return uldtype;
}
public void setUldtype(String uldtype) {
this.uldtype = uldtype;
}
public String getUldno() {
return uldno;
}
public void setUldno(String uldno) {
this.uldno = uldno;
}
public String getPlaneno() {
return planeno;
}
public void setPlaneno(String planeno) {
this.planeno = planeno;
}
public String getOpeuserid() {
return opeuserid;
}
public void setOpeuserid(String opeuserid) {
this.opeuserid = opeuserid;
}
public String getExt5() {
return ext5;
}
public void setExt5(String ext5) {
this.ext5 = ext5;
}
public String getCustomText() {
return customText;
}
public void setCustomText(String customText) {
this.customText = customText;
}
public AWB_AWBINFO getAwbinfo() {
return awbinfo;
}
public void setAwbinfo(AWB_AWBINFO awbinfo) {
this.awbinfo = awbinfo;
}
public List<NMMS_CUSTOM_MT1201> getChildren() {
return children;
}
public void setChildren(List<NMMS_CUSTOM_MT1201> children) {
this.children = children;
}
}
... ...
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;
}
}
... ...
package com.sunyo.wlpt.base.model;
import lombok.Data;
import com.fasterxml.jackson.annotation.JsonFormat;
import java.util.Date;
import java.util.List;
@Data
public class NMMS_CUSTOM_MT3201 {
private String uuid;
... ... @@ -17,6 +16,7 @@ public class NMMS_CUSTOM_MT3201 {
private String flightno;
@JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
private Date flightdate;
private String originstation;
... ... @@ -27,6 +27,7 @@ public class NMMS_CUSTOM_MT3201 {
private Long weight;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
private Date arrivetime;
private String customcode;
... ... @@ -49,7 +50,6 @@ public class NMMS_CUSTOM_MT3201 {
private String ext5;
private AWB_AWBINFO awbinfo;
private List<NMMS_CUSTOM_MT3201> children;
... ... @@ -221,4 +221,20 @@ public class NMMS_CUSTOM_MT3201 {
public void setExt5(String ext5) {
this.ext5 = ext5 == null ? null : ext5.trim();
}
public AWB_AWBINFO getAwbinfo() {
return awbinfo;
}
public void setAwbinfo(AWB_AWBINFO awbinfo) {
this.awbinfo = awbinfo;
}
public List<NMMS_CUSTOM_MT3201> getChildren() {
return children;
}
public void setChildren(List<NMMS_CUSTOM_MT3201> children) {
this.children = children;
}
}
... ...
package com.sunyo.wlpt.base.model;
import lombok.Data;
import com.fasterxml.jackson.annotation.JsonFormat;
import java.util.Date;
import java.util.List;
@Data
public class NMMS_CUSTOM_MT4201 {
private String uuid;
... ... @@ -13,6 +12,7 @@ public class NMMS_CUSTOM_MT4201 {
private String flightno;
@JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
private Date flightdate;
private String originstation;
... ... @@ -31,8 +31,10 @@ public class NMMS_CUSTOM_MT4201 {
private String goodsname;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
private Date actime;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
private Date loadingtime;
private String specialgoods;
... ... @@ -230,4 +232,20 @@ public class NMMS_CUSTOM_MT4201 {
public void setExt5(String ext5) {
this.ext5 = ext5 == null ? null : ext5.trim();
}
public AWB_AWBINFO getAwbinfo() {
return awbinfo;
}
public void setAwbinfo(AWB_AWBINFO awbinfo) {
this.awbinfo = awbinfo;
}
public List<NMMS_CUSTOM_MT4201> getChildren() {
return children;
}
public void setChildren(List<NMMS_CUSTOM_MT4201> children) {
this.children = children;
}
}
... ...
package com.sunyo.wlpt.base.model;
import lombok.Data;
import com.fasterxml.jackson.annotation.JsonFormat;
import java.util.Date;
import java.util.List;
@Data
public class NMMS_CUSTOM_MT520X {
private String uuid;
... ... @@ -17,6 +16,7 @@ public class NMMS_CUSTOM_MT520X {
private String flightno;
@JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
private Date flightdate;
private String originstation;
... ... @@ -27,14 +27,17 @@ public class NMMS_CUSTOM_MT520X {
private Long weight;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
private Date starttime;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
private Date endtime;
private String customcode;
private String goodsname;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
private Date actime;
private String rcfdep;
... ... @@ -240,4 +243,20 @@ public class NMMS_CUSTOM_MT520X {
public void setExt5(String ext5) {
this.ext5 = ext5 == null ? null : ext5.trim();
}
public AWB_AWBINFO getAwbinfo() {
return awbinfo;
}
public void setAwbinfo(AWB_AWBINFO awbinfo) {
this.awbinfo = awbinfo;
}
public List<NMMS_CUSTOM_MT520X> getChildren() {
return children;
}
public void setChildren(List<NMMS_CUSTOM_MT520X> children) {
this.children = children;
}
}
... ...
package com.sunyo.wlpt.base.model;
import lombok.Data;
import java.util.List;
@Data
public class NMMS_CUSTOM_MT8205 {
private String uuid;
... ... @@ -180,4 +177,20 @@ public class NMMS_CUSTOM_MT8205 {
public void setExt5(String ext5) {
this.ext5 = ext5 == null ? null : ext5.trim();
}
public AWB_AWBINFO getAwbinfo() {
return awbinfo;
}
public void setAwbinfo(AWB_AWBINFO awbinfo) {
this.awbinfo = awbinfo;
}
public List<NMMS_CUSTOM_MT8205> getChildren() {
return children;
}
public void setChildren(List<NMMS_CUSTOM_MT8205> children) {
this.children = children;
}
}
... ...
package com.sunyo.wlpt.base.model;
import com.fasterxml.jackson.annotation.JsonFormat;
import java.util.Date;
public class NMMS_CUSTOM_RESPONSE {
private String id;
@JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
private Date flightdate;
private String flightno;
... ... @@ -17,6 +20,7 @@ public class NMMS_CUSTOM_RESPONSE {
private String bustype;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
private Date busdate;
private Long busweight;
... ... @@ -35,8 +39,10 @@ public class NMMS_CUSTOM_RESPONSE {
private String cusfunctioncode;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
private Date cusresrcvtime;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
private Date cusressendtime;
private String cusrescode;
... ...
package com.sunyo.wlpt.base.model;
import com.fasterxml.jackson.annotation.JsonFormat;
import java.util.Date;
public class NMMS_FFM_INFO {
private String autoid;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
private Date createdate;
private String flightno;
@JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
private Date flightdate;
private String waybillnomaster;
... ...