mirror of
https://codeup.aliyun.com/64f7d6b8ce01efaafef1e678/coal/coal.git
synced 2026-01-25 07:46:40 +08:00
feat(warehouse-receipt): 添加领用人字段
- 在 CreateWarehouseReceiptDto、UpdateWarehouseReceiptDto、WarehouseReceiptDto 和 WarehouseReceiptSimpleDto 中添加领用人字段 - 在 WarehouseReceiptEntity 中添加领用人字段
This commit is contained in:
@@ -49,4 +49,8 @@ public class CreateWarehouseReceiptDto extends OrgCommonDto {
|
||||
@Comment("制单人")
|
||||
private String creator;
|
||||
|
||||
|
||||
@Comment("领用人")
|
||||
private String user;
|
||||
|
||||
}
|
||||
|
||||
@@ -47,4 +47,9 @@ public class UpdateWarehouseReceiptDto extends OrgCommonDto {
|
||||
|
||||
@Comment("制单人")
|
||||
private String creator;
|
||||
|
||||
|
||||
|
||||
@Comment("领用人")
|
||||
private String user;
|
||||
}
|
||||
|
||||
@@ -75,4 +75,8 @@ public class WarehouseReceiptDto extends OrgCommonDto {
|
||||
|
||||
|
||||
private String parent;
|
||||
|
||||
|
||||
@Comment("领用人")
|
||||
private String user;
|
||||
}
|
||||
|
||||
@@ -60,4 +60,8 @@ public class WarehouseReceiptSimpleDto extends OrgCommonDto {
|
||||
|
||||
|
||||
private String parent;
|
||||
|
||||
|
||||
@Comment("领用人")
|
||||
private String user;
|
||||
}
|
||||
|
||||
@@ -74,7 +74,12 @@ public class WarehouseReceiptEntity extends OrgCommonEntity {
|
||||
|
||||
private String location;
|
||||
|
||||
|
||||
@Comment("领用人")
|
||||
private String user;
|
||||
|
||||
@Comment("归档状态")
|
||||
@ColumnDefault("'0'")
|
||||
private String archiveStatus = "0";
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user