Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
I
isc-funds
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
isc-v3.1-tmp
isc-funds
Commits
0fd6ec76
Commit
0fd6ec76
authored
Oct 12, 2024
by
xiaotong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
FXTSEL查询后端逻辑调整
parent
4bfc0473
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
0 deletions
+19
-0
FxtselResource.java
.../brilliance/isc/funds/fxtsel/resource/FxtselResource.java
+5
-0
FxtselService.java
...om/brilliance/isc/funds/fxtsel/service/FxtselService.java
+2
-0
FxtselServiceImpl.java
...ance/isc/funds/fxtsel/service/impl/FxtselServiceImpl.java
+12
-0
No files found.
isc-funds-business/src/main/java/com/brilliance/isc/funds/fxtsel/resource/FxtselResource.java
View file @
0fd6ec76
...
@@ -34,6 +34,11 @@ public class FxtselResource {
...
@@ -34,6 +34,11 @@ public class FxtselResource {
return
ResponseSet
.
simpleSuccess
(
fxtselService
.
listjsh
(
fxtselQueryVo
));
return
ResponseSet
.
simpleSuccess
(
fxtselService
.
listjsh
(
fxtselQueryVo
));
}
}
@PostMapping
(
"/listjshpp"
)
public
ResponseSet
listjshpp
(
@RequestBody
FxtselQueryVo
fxtselQueryVo
)
{
return
ResponseSet
.
simpleSuccess
(
fxtselService
.
listjshpp
(
fxtselQueryVo
));
}
@PostMapping
(
"/listdhpp"
)
@PostMapping
(
"/listdhpp"
)
public
ResponseSet
listdhpp
(
@RequestBody
FxtselQueryVo
fxtselQueryVo
)
{
public
ResponseSet
listdhpp
(
@RequestBody
FxtselQueryVo
fxtselQueryVo
)
{
return
ResponseSet
.
simpleSuccess
(
fxtselService
.
listdhpp
(
fxtselQueryVo
));
return
ResponseSet
.
simpleSuccess
(
fxtselService
.
listdhpp
(
fxtselQueryVo
));
...
...
isc-funds-business/src/main/java/com/brilliance/isc/funds/fxtsel/service/FxtselService.java
View file @
0fd6ec76
...
@@ -17,5 +17,7 @@ public interface FxtselService {
...
@@ -17,5 +17,7 @@ public interface FxtselService {
PageInfo
listdhpp
(
FxtselQueryVo
fxtselQueryVo
);
PageInfo
listdhpp
(
FxtselQueryVo
fxtselQueryVo
);
PageInfo
listjshpp
(
FxtselQueryVo
fxtselQueryVo
);
List
<
TrncodVo
>
dealWithByInr
(
TrnCodeQueryVo
trnCodeQueryVo
);
List
<
TrncodVo
>
dealWithByInr
(
TrnCodeQueryVo
trnCodeQueryVo
);
}
}
isc-funds-business/src/main/java/com/brilliance/isc/funds/fxtsel/service/impl/FxtselServiceImpl.java
View file @
0fd6ec76
...
@@ -40,6 +40,18 @@ public class FxtselServiceImpl implements FxtselService {
...
@@ -40,6 +40,18 @@ public class FxtselServiceImpl implements FxtselService {
}
}
@Override
@Override
public
PageInfo
listjshpp
(
FxtselQueryVo
fxtselQueryVo
)
{
//FB+FS
List
<
String
>
fxtypList
=
new
ArrayList
<>();
fxtypList
.
add
(
"LB"
);
fxtypList
.
add
(
"LS"
);
fxtselQueryVo
.
setFxtypList
(
fxtypList
);
PageHelper
.
startPage
(
fxtselQueryVo
.
getPageNumber
(),
fxtselQueryVo
.
getPageSize
()).
setReasonable
(
true
);
List
<
FxdWithPtsCbbResponseVo
>
fxdList
=
fxdMapper
.
queryFxd
(
fxtselQueryVo
);
return
new
PageInfo
(
fxdList
);
}
@Override
public
PageInfo
listdhpp
(
FxtselQueryVo
fxtselQueryVo
)
{
public
PageInfo
listdhpp
(
FxtselQueryVo
fxtselQueryVo
)
{
//FB+FS
//FB+FS
List
<
String
>
fxtypList
=
new
ArrayList
<>();
List
<
String
>
fxtypList
=
new
ArrayList
<>();
...
...
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