BUG#12231

yun-zuoyi
许心洁 5 years ago
parent 6b9fcb2da9
commit 346a5088ff

@ -16,6 +16,7 @@ import javax.persistence.Table;
import javax.persistence.Transient;
import javax.persistence.Version;
import java.util.List;
import java.util.Map;
/**
* @Description :
@ -169,6 +170,10 @@ public class WmsStockQuan extends BaseBean {
@ApiParam(value = "应有数量")
private Double theoryQty;
@Transient
@ApiParam(value = "差异数量MAP")
private Map<String, Map<String,Double>> differenceQtyMap;
public Integer getIsSnapshot() {
return this.isSnapshot == null ? 0 : this.isSnapshot;
@ -362,4 +367,11 @@ public class WmsStockQuan extends BaseBean {
this.partNameRdd = partNameRdd;
this.qty = qty;
}
public WmsStockQuan(String whNo, String zoneNo, String locateNo, String partNo, String partNameRdd) {
this.whNo = whNo;
this.zoneNo = zoneNo;
this.locateNo = locateNo;
this.partNo = partNo;
this.partNameRdd = partNameRdd;
}
}

Loading…
Cancel
Save