Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
so-operation-api
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
smart-operation
so-operation-api
Commits
9a5e6c16
Commit
9a5e6c16
authored
Jul 06, 2023
by
黄智
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
字典新增内置数据
parent
4bc6f257
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
src/bean/vo/response/dict.go
src/bean/vo/response/dict.go
+1
-0
src/service/component_dict.go
src/service/component_dict.go
+1
-1
No files found.
src/bean/vo/response/dict.go
View file @
9a5e6c16
...
...
@@ -14,6 +14,7 @@ type DictListRes struct {
MaxVal
string
`json:"max_val"`
Unit
string
`json:"unit"`
Sort
int
`json:"sort"`
BuiltIn
int
`json:"built_in"`
Children
[]
*
DictListRes
`json:"children,omitempty"`
}
...
...
src/service/component_dict.go
View file @
9a5e6c16
...
...
@@ -64,7 +64,7 @@ func (c *Dict) List(req request.DictReq) (dictListRes []*response.DictListRes, c
}
session
:=
db
.
NewSession
()
session
.
Select
(
"id,class,name,parent_id,status,min_val,max_val,sort,description,updated_at,unit"
)
.
Table
(
"dict"
)
session
.
Select
(
"id,class,name,parent_id,status,min_val,max_val,sort,description,updated_at,unit
,built_in
"
)
.
Table
(
"dict"
)
session
.
Where
(
"is_delete = 0 "
)
if
req
.
Id
!=
""
{
...
...
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