|
|
|
@ -30,7 +30,7 @@ public class InventoryWorkBeen extends BaseObservable {
|
|
|
|
|
private String locationCode;
|
|
|
|
|
private String materialBatch;
|
|
|
|
|
private String stockType;
|
|
|
|
|
private int stockId;
|
|
|
|
|
private Long stockId;
|
|
|
|
|
private double stockAmount;
|
|
|
|
|
private double realAmount;
|
|
|
|
|
private String checkStatus;
|
|
|
|
@ -114,11 +114,11 @@ public class InventoryWorkBeen extends BaseObservable {
|
|
|
|
|
this.stockType = stockType;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int getStockId() {
|
|
|
|
|
public Long getStockId() {
|
|
|
|
|
return stockId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setStockId(int stockId) {
|
|
|
|
|
public void setStockId(Long stockId) {
|
|
|
|
|
this.stockId = stockId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|