This commit is contained in:
caozehui
2025-04-22 14:20:21 +08:00
parent aa5f57a856
commit 99d43041cb
3 changed files with 1 additions and 7 deletions

View File

@@ -38,11 +38,6 @@ public class PqErrSysDtlsParam {
@ApiModelProperty(value = "是否包含结束值", required = true)
private Integer endFlag;
// @ApiModelProperty(value = "单位", required = true)
// @NotBlank(message = DeviceValidMessage.UNIT_NOT_BLANK)
// @Pattern(regexp = PatternRegex.SYSTEM_ID, message = DeviceValidMessage.UNIT_FORMAT_ERROR)
// private String unit;
@ApiModelProperty(value = "判断条件值类型", required = true)
private Integer conditionType;

View File

@@ -41,7 +41,6 @@ public class PqErrSysParam {
private Integer enable;
@ApiModelProperty(value = "误差详情列表", required = true)
@Valid
private List<PqErrSysDtlsParam> pqErrSysDtlsList;
@Data

View File

@@ -82,7 +82,7 @@ public interface DetectionValidMessage {
String STANDARD_NAME_NOT_BLANK = "标准号不能为空请检查standardName参数";
String STANDARD_NAME_FORMAT_ERROR = "标准号格式错误只能包含字母、数字、中文、下划线、中划线、点号、空格长度为1-32个字符";
String STANDARD_NAME_FORMAT_ERROR = "标准号格式错误,只能包含字母、数字、中文、下划线、中划线、点号、空格、斜杠、反斜杠长度为1-32个字符";
String STANDARD_TIME_NOT_BLANK = "标准推行年份不能为空请检查standardTime参数";