修改 盘点id

master
wanghao 3 weeks ago
parent ee164d53b5
commit 3c927ba3fa

@ -30,6 +30,7 @@
android:roundIcon="@drawable/logo" android:roundIcon="@drawable/logo"
android:supportsRtl="true" android:supportsRtl="true"
android:theme="@style/Theme.Jingyuanmes" android:theme="@style/Theme.Jingyuanmes"
android:usesCleartextTraffic="true" android:usesCleartextTraffic="true"
tools:targetApi="31"> tools:targetApi="31">
<activity <activity

@ -24,9 +24,9 @@ public class InventoryWorkBeen extends BaseObservable {
* materialName : * materialName :
*/ */
private int inventoryCheckDetailId; private Long inventoryCheckDetailId;
private int inventoryCheckId; private Long inventoryCheckId;
private int materialId; private Long materialId;
private String locationCode; private String locationCode;
private String materialBatch; private String materialBatch;
private String stockType; private String stockType;
@ -66,27 +66,27 @@ public class InventoryWorkBeen extends BaseObservable {
this.poNo = poNo; this.poNo = poNo;
} }
public int getInventoryCheckDetailId() { public Long getInventoryCheckDetailId() {
return inventoryCheckDetailId; return inventoryCheckDetailId;
} }
public void setInventoryCheckDetailId(int inventoryCheckDetailId) { public void setInventoryCheckDetailId(Long inventoryCheckDetailId) {
this.inventoryCheckDetailId = inventoryCheckDetailId; this.inventoryCheckDetailId = inventoryCheckDetailId;
} }
public int getInventoryCheckId() { public Long getInventoryCheckId() {
return inventoryCheckId; return inventoryCheckId;
} }
public void setInventoryCheckId(int inventoryCheckId) { public void setInventoryCheckId(Long inventoryCheckId) {
this.inventoryCheckId = inventoryCheckId; this.inventoryCheckId = inventoryCheckId;
} }
public int getMaterialId() { public Long getMaterialId() {
return materialId; return materialId;
} }
public void setMaterialId(int materialId) { public void setMaterialId(Long materialId) {
this.materialId = materialId; this.materialId = materialId;
} }

Loading…
Cancel
Save