作者 xudada

1201,5201,进港运单查询 分拨实体增加字段

# Created by .ignore support plugin (hsz.mobi)
... ...
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 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,12 +27,14 @@ 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;
private String goodsname;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
private Date actime;
private String status;
... ... @@ -49,7 +51,6 @@ public class NMMS_CUSTOM_MT3201 {
private String ext5;
private AWB_AWBINFO awbinfo;
private List<NMMS_CUSTOM_MT3201> children;
... ... @@ -221,4 +222,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 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;
... ... @@ -49,6 +55,12 @@ public class NMMS_CUSTOM_RESPONSE {
private String cusrestext;
private String operreason;
private String operperson;
private String opertel;
public String getId() {
return id;
}
... ... @@ -232,4 +244,28 @@ public class NMMS_CUSTOM_RESPONSE {
public void setCusrestext(String cusrestext) {
this.cusrestext = cusrestext == null ? null : cusrestext.trim();
}
}
\ No newline at end of file
public String getOperreason() {
return operreason;
}
public void setOperreason(String operreason) {
this.operreason = operreason;
}
public String getOperperson() {
return operperson;
}
public void setOperperson(String operperson) {
this.operperson = operperson;
}
public String getOpertel() {
return opertel;
}
public void setOpertel(String opertel) {
this.opertel = opertel;
}
}
... ...
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;
... ... @@ -232,4 +236,4 @@ public class NMMS_FFM_INFO {
public void setDealstatus(String dealstatus) {
this.dealstatus = dealstatus == null ? null : dealstatus.trim();
}
}
\ No newline at end of file
}
... ...