feat(warehouse-receipt): 添加领用人字段

- 在 CreateWarehouseReceiptDto、UpdateWarehouseReceiptDto、WarehouseReceiptDto 和 WarehouseReceiptSimpleDto 中添加领用人字段
- 在 WarehouseReceiptEntity 中添加领用人字段
This commit is contained in:
2025-03-12 23:02:52 +08:00
parent ab873e1fdc
commit 375d85afaf
5 changed files with 22 additions and 0 deletions

View File

@@ -49,4 +49,8 @@ public class CreateWarehouseReceiptDto extends OrgCommonDto {
@Comment("制单人")
private String creator;
@Comment("领用人")
private String user;
}

View File

@@ -47,4 +47,9 @@ public class UpdateWarehouseReceiptDto extends OrgCommonDto {
@Comment("制单人")
private String creator;
@Comment("领用人")
private String user;
}

View File

@@ -75,4 +75,8 @@ public class WarehouseReceiptDto extends OrgCommonDto {
private String parent;
@Comment("领用人")
private String user;
}

View File

@@ -60,4 +60,8 @@ public class WarehouseReceiptSimpleDto extends OrgCommonDto {
private String parent;
@Comment("领用人")
private String user;
}

View File

@@ -74,7 +74,12 @@ public class WarehouseReceiptEntity extends OrgCommonEntity {
private String location;
@Comment("领用人")
private String user;
@Comment("归档状态")
@ColumnDefault("'0'")
private String archiveStatus = "0";
}