人员经费(来源)和维护养护经费(来源)改为String类型

master
yangzhe123 2025-09-11 14:48:54 +08:00
parent beed4398c3
commit aedf93e5b0
1 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@ public class ResMangUnit implements Serializable {
@TableField(value="person_funds_source")
@Schema(description="人员经费来源")
// @Size(max = 0,message = "人员经费来源最大长度要小于 0")
private Integer personFundsSource;
private String personFundsSource;
/**
*
@ -84,7 +84,7 @@ public class ResMangUnit implements Serializable {
@TableField(value="repair_funds_source")
@Schema(description="维修养护经费来源")
// @Size(max = 0,message = "维修养护经费来源最大长度要小于 0")
private Integer repairFundsSource;
private String repairFundsSource;
/**
*