Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Sign in
Toggle navigation
T
tamp_fund
Project
Project
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
周鹏
tamp_fund
Commits
e20f4ccd
Commit
e20f4ccd
authored
Feb 23, 2021
by
张亚辉
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
model
parent
9aa05b03
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
ProductApi.java
src/main/java/com/tanpu/fund/api/ProductApi.java
+1
-1
ProductController.java
...ain/java/com/tanpu/fund/controller/ProductController.java
+1
-1
No files found.
src/main/java/com/tanpu/fund/api/ProductApi.java
View file @
e20f4ccd
...
@@ -99,7 +99,7 @@ public interface ProductApi {
...
@@ -99,7 +99,7 @@ public interface ProductApi {
@ApiOperation
(
"私有基金详情"
)
@ApiOperation
(
"私有基金详情"
)
@GetMapping
(
"/privatefund/detail"
)
@GetMapping
(
"/privatefund/detail"
)
CommonResp
<
com
.
tanpu
.
fund
.
api
.
model
.
resp
.
PrivateFundDetailResp
>
getPrivateDetail
(
@RequestParam
(
"id"
)
String
id
);
CommonResp
<
PrivateFundDetailResp
>
getPrivateDetail
(
@RequestParam
(
"id"
)
String
id
);
@ApiOperation
(
"私有基金历史业绩"
)
@ApiOperation
(
"私有基金历史业绩"
)
@GetMapping
(
"/privatefund/historyprofit"
)
@GetMapping
(
"/privatefund/historyprofit"
)
...
...
src/main/java/com/tanpu/fund/controller/ProductController.java
View file @
e20f4ccd
...
@@ -111,7 +111,7 @@ public class ProductController implements ProductApi {
...
@@ -111,7 +111,7 @@ public class ProductController implements ProductApi {
}
}
@Override
@Override
public
CommonResp
<
com
.
tanpu
.
fund
.
api
.
model
.
resp
.
PrivateFundDetailResp
>
getPrivateDetail
(
String
id
)
{
public
CommonResp
<
PrivateFundDetailResp
>
getPrivateDetail
(
String
id
)
{
if
(
StringUtils
.
isEmpty
(
id
))
{
if
(
StringUtils
.
isEmpty
(
id
))
{
return
CommonResp
.
error
(
CommonResp
.
PARAMETER_INVALID_STATUS_CODE
,
CommonResp
.
PARAMETER_INVALID_MESSAGE
);
return
CommonResp
.
error
(
CommonResp
.
PARAMETER_INVALID_STATUS_CODE
,
CommonResp
.
PARAMETER_INVALID_MESSAGE
);
}
}
...
...
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