|
|
|
@ -1,10 +1,12 @@
|
|
|
|
|
package com.example.jingyuan_mes.entity.store;
|
|
|
|
|
|
|
|
|
|
import androidx.databinding.BaseObservable;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @author wanghao
|
|
|
|
|
* @date 2024/2/27 15:42
|
|
|
|
|
*/
|
|
|
|
|
public class ProductOutSubmit {
|
|
|
|
|
public class ProductOutSubmit extends BaseObservable {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* productOutstockId : 1
|
|
|
|
@ -22,6 +24,7 @@ public class ProductOutSubmit {
|
|
|
|
|
|
|
|
|
|
public void setProductOutstockId(int productOutstockId) {
|
|
|
|
|
this.productOutstockId = productOutstockId;
|
|
|
|
|
notifyChange();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getLocationCode() {
|
|
|
|
@ -30,6 +33,7 @@ public class ProductOutSubmit {
|
|
|
|
|
|
|
|
|
|
public void setLocationCode(String locationCode) {
|
|
|
|
|
this.locationCode = locationCode;
|
|
|
|
|
notifyChange();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getProductBarcode() {
|
|
|
|
@ -39,4 +43,10 @@ public class ProductOutSubmit {
|
|
|
|
|
public void setProductBarcode(String productBarcode) {
|
|
|
|
|
this.productBarcode = productBarcode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void clear(){
|
|
|
|
|
this.locationCode = null;
|
|
|
|
|
this.productBarcode = null;
|
|
|
|
|
notifyChange();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|