This commit is contained in:
caozehui
2024-12-11 19:40:41 +08:00
parent 208ba4984b
commit 379e4a33ff
25 changed files with 429 additions and 115 deletions

View File

@@ -20,7 +20,7 @@ public class SysTestConfigParam {
@Max(value = 1, message = SystemValidMessage.AUTO_GENERATE_FORMAT_ERROR)
private Integer autoGenerate;
@ApiModelProperty(value = "最大检次数")
@ApiModelProperty(value = "最大检次数")
@NotNull(message = SystemValidMessage.MAX_RECHECK_NOT_NULL)
private Integer maxTime;

View File

@@ -30,7 +30,7 @@ public class SysTestConfig extends BaseEntity implements Serializable {
private Integer autoGenerate;
/**
* 最大检次数默认3次
* 最大检次数默认3次
*/
@TableField("Max_Time")
private Integer maxTime;

View File

@@ -77,7 +77,7 @@ public interface SystemValidMessage {
String AUTO_GENERATE_NOT_NULL = "是否自动生成不能为空请检查autoGenerate参数";
String MAX_RECHECK_NOT_NULL = "最大检次数不能为空请检查maxRecheck参数";
String MAX_RECHECK_NOT_NULL = "最大检次数不能为空请检查maxRecheck参数";
String DATA_RULE_NOT_BLANK = "数据处理规则不能为空请检查dataRule参数";