作者 zhangFan

change model

... ... @@ -31,4 +31,17 @@
</plugin>
</plugins>
</build>
</project>
\ No newline at end of file
<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.9.5</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.8</version>
</dependency>
</dependencies>
</project>
... ...
... ... @@ -14,4 +14,4 @@ public interface NMMS_CUSTOM_MT1201Mapper {
int updateByPrimaryKeySelective(NMMS_CUSTOM_MT1201 record);
int updateByPrimaryKey(NMMS_CUSTOM_MT1201 record);
}
\ No newline at end of file
}
... ...
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;
... ... @@ -178,6 +181,7 @@ public class AWB_AWBINFO {
private BigDecimal originalvol;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
private Date crtopetime;
private String dlvpriority;
... ... @@ -218,10 +222,12 @@ public class AWB_AWBINFO {
private String endoper;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
private Date endopetime;
private String confirmoper;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
private Date confirmopetime;
private String csgcustomer;
... ... @@ -250,8 +256,17 @@ public class AWB_AWBINFO {
private Boolean isdelete;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
private Date optime;
private String shpcomidpre;
private String shpcomidpno;
private String cnscomidpre;
private String cnscomidno;
public String getBillid() {
return billid;
}
... ... @@ -1243,4 +1258,4 @@ public class AWB_AWBINFO {
public void setOptime(Date optime) {
this.optime = optime;
}
}
\ No newline at end of file
}
... ...
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,15 +25,16 @@ public class NMMS_CUSTOM_MT1201 {
private String flightno;
@JsonFormat(pattern = "yyyy-MM-dd")
private Date flightdate;
private String originstation;
private String destinationstation;
private Integer piece;
private BigDecimal piece;
private Long weight;
private BigDecimal weight;
private String splitcode;
... ... @@ -45,171 +52,12 @@ public class NMMS_CUSTOM_MT1201 {
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 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 == null ? null : uldtype.trim();
}
public String getUldno() {
return uldno;
}
public void setUldno(String uldno) {
this.uldno = uldno == null ? null : uldno.trim();
}
public String getPlaneno() {
return planeno;
}
private String customText;
public void setPlaneno(String planeno) {
this.planeno = planeno == null ? null : planeno.trim();
}
private AWB_AWBINFO awbinfo;
public String getOpeuserid() {
return opeuserid;
}
private List<NMMS_CUSTOM_MT1201> children;
public void setOpeuserid(String opeuserid) {
this.opeuserid = opeuserid == null ? null : opeuserid.trim();
}
public String getExt5() {
return ext5;
}
public void setExt5(String ext5) {
this.ext5 = ext5 == null ? null : ext5.trim();
}
}
\ No newline at end of file
}
... ...
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();
}
}
\ No newline at end of file
}
... ...
package com.sunyo.wlpt.base.model;
import lombok.Data;
import java.util.Date;
import java.util.List;
@Data
public class NMMS_CUSTOM_MT3201 {
private String uuid;
... ... @@ -45,6 +49,11 @@ public class NMMS_CUSTOM_MT3201 {
private String ext5;
private AWB_AWBINFO awbinfo;
private List<NMMS_CUSTOM_MT3201> children;
public String getUuid() {
return uuid;
}
... ... @@ -212,4 +221,4 @@ public class NMMS_CUSTOM_MT3201 {
public void setExt5(String ext5) {
this.ext5 = ext5 == null ? null : ext5.trim();
}
}
\ No newline at end of file
}
... ...
package com.sunyo.wlpt.base.model;
import lombok.Data;
import java.util.Date;
import java.util.List;
@Data
public class NMMS_CUSTOM_MT4201 {
private String uuid;
... ... @@ -47,6 +51,10 @@ public class NMMS_CUSTOM_MT4201 {
private String ext5;
private AWB_AWBINFO awbinfo;
private List<NMMS_CUSTOM_MT4201> children;
public String getUuid() {
return uuid;
}
... ... @@ -222,4 +230,4 @@ public class NMMS_CUSTOM_MT4201 {
public void setExt5(String ext5) {
this.ext5 = ext5 == null ? null : ext5.trim();
}
}
\ No newline at end of file
}
... ...
package com.sunyo.wlpt.base.model;
import lombok.Data;
import java.util.Date;
import java.util.List;
@Data
public class NMMS_CUSTOM_MT520X {
private String uuid;
... ... @@ -49,6 +53,10 @@ public class NMMS_CUSTOM_MT520X {
private String ext5;
private AWB_AWBINFO awbinfo;
private List<NMMS_CUSTOM_MT520X> children;
public String getUuid() {
return uuid;
}
... ... @@ -232,4 +240,4 @@ public class NMMS_CUSTOM_MT520X {
public void setExt5(String ext5) {
this.ext5 = ext5 == null ? null : ext5.trim();
}
}
\ No newline at end of file
}
... ...
package com.sunyo.wlpt.base.model;
import lombok.Data;
import java.util.List;
@Data
public class NMMS_CUSTOM_MT8205 {
private String uuid;
... ... @@ -35,6 +40,11 @@ public class NMMS_CUSTOM_MT8205 {
private String ext5;
private AWB_AWBINFO awbinfo;
private List<NMMS_CUSTOM_MT8205> children;
public String getUuid() {
return uuid;
}
... ... @@ -170,4 +180,4 @@ public class NMMS_CUSTOM_MT8205 {
public void setExt5(String ext5) {
this.ext5 = ext5 == null ? null : ext5.trim();
}
}
\ No newline at end of file
}
... ...