mirror of
https://codeup.aliyun.com/64f7d6b8ce01efaafef1e678/coal/coal.git
synced 2026-07-25 15:17:06 +08:00
feat(InventoryCheck): add new fields for inventory tracking and estimation
This commit is contained in:
@@ -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;
|
||||
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user