【11883 20021--北美领料需求变更--1023】

yun-zuoyi
曾贞一 5 years ago
parent 9a350912ea
commit 5e8b023fd5

@ -9,6 +9,7 @@ import io.swagger.annotations.Api;
import io.swagger.annotations.ApiParam;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.apache.commons.lang3.StringUtils;
import org.hibernate.annotations.DynamicInsert;
import org.hibernate.annotations.DynamicUpdate;
@ -114,4 +115,31 @@ public class WmsSuspenStockSync extends BaseBean {
@ApiParam(value = "物料数据Map")
private Map<String, WmsPart> partNameMap;
public String getLocateNoVal() {
return this.locateNo == null ? StringUtils.EMPTY : this.locateNo;
}
public String getPartNoAVal() {
return this.partNoA == null ? StringUtils.EMPTY : this.partNoA;
}
public String getPartNoBVal() {
return this.partNoB == null ? StringUtils.EMPTY : this.partNoB;
}
public Double getQtyAVal() {
return this.qtyA == null ? 0 : this.qtyA;
}
public Double getQtyBVal() {
return this.qtyB == null ? 0 : this.qtyB;
}
public String getLotNoAVal() {
return this.lotNoA == null ? StringUtils.EMPTY : this.lotNoA;
}
public String getLotNoBVal() {
return this.lotNoB == null ? StringUtils.EMPTY : this.lotNoB;
}
}

Loading…
Cancel
Save