作者 shenhailong

优化联查回执信息 预配 出港理货 出港运抵

... ... @@ -7,6 +7,7 @@ import java.util.Date;
import java.util.List;
public class NMMS_CUSTOM_MT2201 {
private String uuid;
private String awba;
... ... @@ -206,11 +207,11 @@ public class NMMS_CUSTOM_MT2201 {
}
public String getCustomtype() {
return customtype;
return "MT2201";
}
public void setCustomtype(String customtype) {
this.customtype = customtype;
this.customtype = "MT2201";
}
public String getExt2() {
... ...
... ... @@ -44,6 +44,8 @@ public class NMMS_CUSTOM_MT3201 {
private Boolean isdelete;
private String customtype;
private String ext1;
private String ext2;
... ... @@ -243,4 +245,12 @@ public class NMMS_CUSTOM_MT3201 {
public void setChildren(List<NMMS_CUSTOM_MT3201> children) {
this.children = children;
}
public String getCustomtype() {
return "MT3201";
}
public void setCustomtype(String customtype) {
this.customtype = "MT3201";
}
}
... ...