zbj//1.系统配置操作出现两个已激活状态bug修改

This commit is contained in:
zhangbaojian
2023-04-21 14:31:10 +08:00
parent 3e6daa700e
commit f13711161a
5 changed files with 46 additions and 11 deletions

View File

@@ -45,6 +45,15 @@ public class ConfigParam {
@ApiModelProperty("审计日志存储时间1-6个月默认3个月")
private Integer logTime;
/**
* 系统类型
*/
@ApiModelProperty("激活状态0-未激活1-激活")
@NotNull(message = "激活状态不可为空")
@Max(value = 1)
@Min(value = 0)
private Integer state;
/**
* 更新操作实体
*/