11-4-标志字典改为字符串

This commit is contained in:
2025-11-04 10:23:14 +08:00
parent f2301264ea
commit b2e1cce667
3 changed files with 6 additions and 6 deletions

View File

@ -74,12 +74,12 @@ public class XzdSupplierSupplement extends BaseEntity {
/**
* 审核标志0未审核1已审核
*/
private Long auditFlag;
private String auditFlag;
/**
* 冻结标志0未冻结1已冻结
*/
private Long freezeFlag;
private String freezeFlag;
/**
* 冻结开始时间

View File

@ -79,13 +79,13 @@ public class XzdSupplierSupplementBo extends BaseEntity {
* 审核标志0未审核1已审核
*/
@NotNull(message = "审核标志0未审核1已审核不能为空", groups = { AddGroup.class, EditGroup.class })
private Long auditFlag;
private String auditFlag;
/**
* 冻结标志0未冻结1已冻结
*/
@NotNull(message = "冻结标志0未冻结1已冻结不能为空", groups = { AddGroup.class, EditGroup.class })
private Long freezeFlag;
private String freezeFlag;
/**
* 冻结开始时间

View File

@ -86,14 +86,14 @@ public class XzdSupplierSupplementVo implements Serializable {
*/
@ExcelProperty(value = "审核标志", converter = ExcelDictConvert.class)
@ExcelDictFormat(readConverterExp = "0=未审核1已审核")
private Long auditFlag;
private String auditFlag;
/**
* 冻结标志0未冻结1已冻结
*/
@ExcelProperty(value = "冻结标志", converter = ExcelDictConvert.class)
@ExcelDictFormat(readConverterExp = "0=未冻结1已冻结")
private Long freezeFlag;
private String freezeFlag;
/**
* 冻结开始时间