feat(InventoryCheck): add new fields for inventory tracking and estimation

This commit is contained in:
2025-09-08 21:09:48 +08:00
parent feb98cc8f1
commit 8f88f5be94
4 changed files with 66 additions and 0 deletions

View File

@@ -32,5 +32,21 @@ public class CreateInventoryCheckDetailDto extends OrgCommonDto {
private Double amount;
@Comment("上期结余")
private Double sqjy;
@Comment("本期调入")
private Double bqdy;
@Comment("本期调出")
private Double bqdc;
@Comment("估测库存")
private Double gckc;
}

View File

@@ -39,5 +39,21 @@ public class InventoryCheckDetailDto extends OrgCommonDto {
private Double amount;
@Comment("上期结余")
private Double sqjy;
@Comment("本期调入")
private Double bqdy;
@Comment("本期调出")
private Double bqdc;
@Comment("估测库存")
private Double gckc;
}

View File

@@ -30,4 +30,20 @@ public class UpdateInventoryCheckDetailDto extends OrgCommonDto {
private Double amount;
@Comment("上期结余")
private Double sqjy;
@Comment("本期调入")
private Double bqdy;
@Comment("本期调出")
private Double bqdc;
@Comment("估测库存")
private Double gckc;
}

View File

@@ -36,6 +36,24 @@ public class InventoryCheckDetailEntity extends OrgCommonEntity {
@Comment("当前库存")
private Double amount;
@Comment("上期结余")
private Double sqjy;
@Comment("本期调入")
private Double bqdy;
@Comment("本期调出")
private Double bqdc;
@Comment("估测库存")
private Double gckc;
}