修改字典值长度.

This commit is contained in:
lijiahang
2024-07-08 14:44:33 +08:00
parent d34843f90c
commit e9ac9b9f13
9 changed files with 15 additions and 20 deletions

View File

@@ -30,7 +30,6 @@ public class DictValueCreateRequest implements Serializable {
private Long keyId;
@NotBlank
@Size(max = 512)
@Schema(description = "配置值")
private String value;

View File

@@ -28,7 +28,6 @@ public class DictValueQueryRequest extends PageRequest {
@Schema(description = "配置项名称")
private String keyName;
@Size(max = 512)
@Schema(description = "配置值")
private String value;

View File

@@ -34,7 +34,6 @@ public class DictValueUpdateRequest implements Serializable {
private Long keyId;
@NotBlank
@Size(max = 512)
@Schema(description = "配置值")
private String value;