增加 出库申请销售订单号
parent
89b02db5af
commit
a912e9a6ef
@ -1,42 +1,52 @@
|
|||||||
package com.example.jingyuan_mes.entity.store;
|
package com.example.jingyuan_mes.entity.store;
|
||||||
|
|
||||||
|
import androidx.databinding.BaseObservable;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author wanghao
|
* @author wanghao
|
||||||
* @date 2024/2/27 15:42
|
* @date 2024/2/27 15:42
|
||||||
*/
|
*/
|
||||||
public class ProductOutSubmit {
|
public class ProductOutSubmit extends BaseObservable {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* productOutstockId : 1
|
* productOutstockId : 1
|
||||||
* locationCode : 123
|
* locationCode : 123
|
||||||
* productBarcode : 12
|
* productBarcode : 12
|
||||||
*/
|
*/
|
||||||
|
|
||||||
private int productOutstockId;
|
private int productOutstockId;
|
||||||
private String locationCode;
|
private String locationCode;
|
||||||
private String productBarcode;
|
private String productBarcode;
|
||||||
|
|
||||||
public int getProductOutstockId() {
|
public int getProductOutstockId() {
|
||||||
return productOutstockId;
|
return productOutstockId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setProductOutstockId(int productOutstockId) {
|
public void setProductOutstockId(int productOutstockId) {
|
||||||
this.productOutstockId = productOutstockId;
|
this.productOutstockId = productOutstockId;
|
||||||
}
|
notifyChange();
|
||||||
|
}
|
||||||
public String getLocationCode() {
|
|
||||||
return locationCode;
|
public String getLocationCode() {
|
||||||
}
|
return locationCode;
|
||||||
|
}
|
||||||
public void setLocationCode(String locationCode) {
|
|
||||||
this.locationCode = locationCode;
|
public void setLocationCode(String locationCode) {
|
||||||
}
|
this.locationCode = locationCode;
|
||||||
|
notifyChange();
|
||||||
public String getProductBarcode() {
|
}
|
||||||
return productBarcode;
|
|
||||||
}
|
public String getProductBarcode() {
|
||||||
|
return productBarcode;
|
||||||
public void setProductBarcode(String productBarcode) {
|
}
|
||||||
this.productBarcode = productBarcode;
|
|
||||||
}
|
public void setProductBarcode(String productBarcode) {
|
||||||
|
this.productBarcode = productBarcode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void clear(){
|
||||||
|
this.locationCode = null;
|
||||||
|
this.productBarcode = null;
|
||||||
|
notifyChange();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue