Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
project-manage
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
吴迪
project-manage
Commits
32894af0
Commit
32894af0
authored
Jul 16, 2023
by
吴迪
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
【修改】投资计划、字典表相关代码
parent
4fff4212
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
0 deletions
+44
-0
SysDictItemForm.java
...ava/com/wangtian/modules/manage/form/SysDictItemForm.java
+44
-0
No files found.
src/main/java/com/wangtian/modules/manage/form/SysDictItemForm.java
0 → 100644
View file @
32894af0
package
com
.
wangtian
.
modules
.
manage
.
form
;
import
com.wangtian.common.validator.group.AddGroup
;
import
com.wangtian.common.validator.group.UpdateGroup
;
import
lombok.Data
;
import
javax.validation.constraints.NotNull
;
import
java.io.Serializable
;
/**
* @author wudi
* @date 2023/7/16
* @comment
*/
@Data
public
class
SysDictItemForm
implements
Serializable
{
private
static
final
long
serialVersionUID
=
1L
;
/**
*
*/
@NotNull
(
message
=
"字典条目ID不能为空"
,
groups
=
{
UpdateGroup
.
class
})
private
String
id
;
/**
* 字典id
*/
@NotNull
(
message
=
"字典ID不能为空"
,
groups
=
{
UpdateGroup
.
class
,
AddGroup
.
class
})
private
String
dictId
;
/**
* 字典项文本
*/
@NotNull
(
message
=
"字典项文本不能为空"
,
groups
=
{
UpdateGroup
.
class
,
AddGroup
.
class
})
private
String
itemText
;
/**
* 字典项值
*/
@NotNull
(
message
=
"字典项值不能为空"
,
groups
=
{
UpdateGroup
.
class
,
AddGroup
.
class
})
private
String
itemValue
;
/**
* 描述
*/
private
String
description
;
}
Write
Preview
Markdown
is supported
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