refactor(warehouse-receipt):将字段 user 重命名为 lyuser

- 在 CreateWarehouseReceiptDto、UpdateWarehouseReceiptDto、WarehouseReceiptDto、WarehouseReceiptSimpleDto 和 WarehouseReceiptEntity 类中
- 将表示"领用人"的字段从 user 重命名为 lyuser
-保留了原有的 @Comment 注解内容
This commit is contained in:
2025-03-12 23:05:13 +08:00
parent 375d85afaf
commit e54f58dc72
5 changed files with 5 additions and 5 deletions

View File

@@ -51,6 +51,6 @@ public class CreateWarehouseReceiptDto extends OrgCommonDto {
@Comment("领用人")
private String user;
private String lyuser;
}

View File

@@ -51,5 +51,5 @@ public class UpdateWarehouseReceiptDto extends OrgCommonDto {
@Comment("领用人")
private String user;
private String lyuser;
}

View File

@@ -78,5 +78,5 @@ public class WarehouseReceiptDto extends OrgCommonDto {
@Comment("领用人")
private String user;
private String lyuser;
}

View File

@@ -63,5 +63,5 @@ public class WarehouseReceiptSimpleDto extends OrgCommonDto {
@Comment("领用人")
private String user;
private String lyuser;
}

View File

@@ -76,7 +76,7 @@ public class WarehouseReceiptEntity extends OrgCommonEntity {
@Comment("领用人")
private String user;
private String lyuser;
@Comment("归档状态")
@ColumnDefault("'0'")