Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gic-data-cloud
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
base_platform_enterprise
gic-data-cloud
Commits
af27d0b2
Commit
af27d0b2
authored
Sep 08, 2020
by
guojuxing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pmd规范
parent
cdad5ff2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
DataExplainController.java
...cloud/operation/web/controller/DataExplainController.java
+2
-2
IndexController.java
...m/gic/cloud/operation/web/controller/IndexController.java
+6
-6
No files found.
gic-data-cloud-operation-web/src/main/java/com/gic/cloud/operation/web/controller/DataExplainController.java
View file @
af27d0b2
...
...
@@ -65,8 +65,8 @@ public class DataExplainController {
}
@RequestMapping
(
"/list-data-explain"
)
public
RestResponse
listDataExplain
(
DataExplainQo
dataExplainQ
O
)
{
ServiceResponse
<
Page
<
DataExplainDTO
>>
serviceResponse
=
dataExplainApiService
.
listDataExplain
(
dataExplainQ
O
);
public
RestResponse
listDataExplain
(
DataExplainQo
dataExplainQ
o
)
{
ServiceResponse
<
Page
<
DataExplainDTO
>>
serviceResponse
=
dataExplainApiService
.
listDataExplain
(
dataExplainQ
o
);
return
ResultControllerUtils
.
commonResult
(
serviceResponse
);
}
...
...
gic-data-cloud-operation-web/src/main/java/com/gic/cloud/operation/web/controller/IndexController.java
View file @
af27d0b2
...
...
@@ -46,8 +46,8 @@ public class IndexController {
@RequestMapping
(
"/save-index"
)
public
RestResponse
saveIndex
(
IndexQo
indexQ
O
,
String
relModuleIds
)
{
IndexDTO
indexDTO
=
EntityUtil
.
changeEntityByJSON
(
IndexDTO
.
class
,
indexQ
O
);
public
RestResponse
saveIndex
(
IndexQo
indexQ
o
,
String
relModuleIds
)
{
IndexDTO
indexDTO
=
EntityUtil
.
changeEntityByJSON
(
IndexDTO
.
class
,
indexQ
o
);
if
(
indexDTO
.
getClassifyType
()
==
null
||
StringUtils
.
isBlank
(
indexDTO
.
getCode
())
||
StringUtils
.
isBlank
(
indexDTO
.
getName
())
||
...
...
@@ -90,14 +90,14 @@ public class IndexController {
}
@RequestMapping
(
"/list-index"
)
public
RestResponse
listIndex
(
IndexQo
indexQ
O
)
{
ServiceResponse
<
Page
<
IndexDTO
>>
serviceResponse
=
indexApiService
.
listIndex
(
indexQ
O
);
public
RestResponse
listIndex
(
IndexQo
indexQ
o
)
{
ServiceResponse
<
Page
<
IndexDTO
>>
serviceResponse
=
indexApiService
.
listIndex
(
indexQ
o
);
return
ResultControllerUtils
.
commonResult
(
serviceResponse
);
}
@RequestMapping
(
"/list-all-index"
)
public
RestResponse
listAllIndex
(
IndexQo
indexQ
O
)
{
ServiceResponse
<
List
<
IndexDTO
>>
serviceResponse
=
indexApiService
.
listAllIndex
(
indexQ
O
);
public
RestResponse
listAllIndex
(
IndexQo
indexQ
o
)
{
ServiceResponse
<
List
<
IndexDTO
>>
serviceResponse
=
indexApiService
.
listAllIndex
(
indexQ
o
);
return
ResultControllerUtils
.
commonResult
(
serviceResponse
);
}
...
...
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