...
|
...
|
@@ -250,4 +250,58 @@ public class NMMS_CUSTOM_MT520X { |
|
|
public void setExt5(String ext5) {
|
|
|
this.ext5 = ext5 == null ? null : ext5.trim();
|
|
|
}
|
|
|
|
|
|
public String getCarrierno() {
|
|
|
return carrierno;
|
|
|
}
|
|
|
|
|
|
public void setCarrierno(String carrierno) {
|
|
|
this.carrierno = carrierno;
|
|
|
}
|
|
|
|
|
|
public String getSegment() {
|
|
|
return segment;
|
|
|
}
|
|
|
|
|
|
public void setSegment(String segment) {
|
|
|
this.segment = segment;
|
|
|
}
|
|
|
|
|
|
public String getWaybill() {
|
|
|
return waybill;
|
|
|
}
|
|
|
|
|
|
public void setWaybill(String waybill) {
|
|
|
this.waybill = waybill;
|
|
|
}
|
|
|
|
|
|
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_MT520X> getChildren() {
|
|
|
return children;
|
|
|
}
|
|
|
|
|
|
public void setChildren(List<NMMS_CUSTOM_MT520X> children) {
|
|
|
this.children = children;
|
|
|
}
|
|
|
|
|
|
|
|
|
@Override
|
|
|
public String toString(){
|
|
|
return "Mt520x class";
|
|
|
}
|
|
|
} |
...
|
...
|
|