Commit 0fd6ec76 by xiaotong

FXTSEL查询后端逻辑调整

parent 4bfc0473
...@@ -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));
......
...@@ -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);
} }
...@@ -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<>();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment