Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
RuoYi Vue
Commits
a0447de0
Commit
a0447de0
authored
Apr 15, 2022
by
RuoYi
Browse files
字典类型必须以字母开头,且只能为(小写字母,数字,下滑线)
parent
46db06a2
Changes
1
Show whitespace changes
Inline
Side-by-side
ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysDictType.java
View file @
a0447de0
package
com.ruoyi.common.core.domain.entity
;
package
com.ruoyi.common.core.domain.entity
;
import
javax.validation.constraints.Pattern
;
import
javax.validation.constraints.NotBlank
;
import
javax.validation.constraints.NotBlank
;
import
javax.validation.constraints.Pattern
;
import
javax.validation.constraints.Size
;
import
javax.validation.constraints.Size
;
import
org.apache.commons.lang3.builder.ToStringBuilder
;
import
org.apache.commons.lang3.builder.ToStringBuilder
;
import
org.apache.commons.lang3.builder.ToStringStyle
;
import
org.apache.commons.lang3.builder.ToStringStyle
;
...
@@ -27,9 +27,6 @@ public class SysDictType extends BaseEntity
...
@@ -27,9 +27,6 @@ public class SysDictType extends BaseEntity
private
String
dictName
;
private
String
dictName
;
/** 字典类型 */
/** 字典类型 */
@NotBlank
(
message
=
"字典类型不能为空"
)
@Pattern
(
regexp
=
"^[a-z][a-z0-9_]*$"
,
message
=
"字典类型必须以字母开头,且字典类型只能由小写字母或加下划线还有数字组成"
)
@Size
(
min
=
2
,
max
=
200
,
message
=
"字典类型长度必须在2-200个字符之间"
)
@Excel
(
name
=
"字典类型"
)
@Excel
(
name
=
"字典类型"
)
private
String
dictType
;
private
String
dictType
;
...
@@ -61,6 +58,7 @@ public class SysDictType extends BaseEntity
...
@@ -61,6 +58,7 @@ public class SysDictType extends BaseEntity
@NotBlank
(
message
=
"字典类型不能为空"
)
@NotBlank
(
message
=
"字典类型不能为空"
)
@Size
(
min
=
0
,
max
=
100
,
message
=
"字典类型类型长度不能超过100个字符"
)
@Size
(
min
=
0
,
max
=
100
,
message
=
"字典类型类型长度不能超过100个字符"
)
@Pattern
(
regexp
=
"^[a-z][a-z0-9_]*$"
,
message
=
"字典类型必须以字母开头,且只能为(小写字母,数字,下滑线)"
)
public
String
getDictType
()
public
String
getDictType
()
{
{
return
dictType
;
return
dictType
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment