Compare commits

..

2 Commits

Author SHA1 Message Date
0a18a0892a Merge remote-tracking branch 'origin/dev' into dev 2025-11-04 10:23:24 +08:00
b2e1cce667 11-4-标志字典改为字符串 2025-11-04 10:23:14 +08:00
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;
/**
* 冻结开始时间