Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
荆蔚杰
/
java.archive
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
1c444455
authored
2021-11-10 16:48:34 +0800
by
荆蔚杰
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
字典字段添加.依赖冲突解决
1 parent
893c3aae
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
0 deletions
pom.xml
src/main/java/com/pashanhoo/dictionary/model/dto/SysDict.java
src/main/java/com/pashanhoo/dictionary/model/vo/GetSysDictParentVo.java
pom.xml
View file @
1c44445
...
...
@@ -249,6 +249,12 @@
<artifactId>
hutool-all
</artifactId>
<version>
5.6.0
</version>
</dependency>
<dependency>
<groupId>
com.github.jsqlparser
</groupId>
<artifactId>
jsqlparser
</artifactId>
<version>
1.4
</version>
</dependency>
</dependencies>
<build>
...
...
src/main/java/com/pashanhoo/dictionary/model/dto/SysDict.java
View file @
1c44445
...
...
@@ -55,6 +55,12 @@ public class SysDict implements Serializable {
@ApiModelProperty
(
value
=
"类型ID"
)
private
String
typeId
;
/**
* 状态(0:禁用 1:启用)默认1
*/
@ApiModelProperty
(
value
=
"状态(0:禁用 1:启用)默认1"
)
private
String
state
;
private
List
<
SysDict
>
children
;
private
static
final
long
serialVersionUID
=
1L
;
...
...
src/main/java/com/pashanhoo/dictionary/model/vo/GetSysDictParentVo.java
View file @
1c44445
...
...
@@ -61,6 +61,12 @@ public class GetSysDictParentVo {
@ApiModelProperty
(
value
=
"序号"
)
private
Integer
rowNum
;
/**
* 状态(0:禁用 1:启用)默认1
*/
@ApiModelProperty
(
value
=
"状态(0:禁用 1:启用)默认1"
)
private
String
state
;
private
List
<
SysDict
>
children
;
private
static
final
long
serialVersionUID
=
1L
;
...
...
Please
register
or
sign in
to post a comment