| | |
| | | * 公司运营情况进入图表 |
| | | */ |
| | | @PostMapping("/selectTb") |
| | | public R selectTb(String jurisdiction, String enterpriseName, Integer current, Integer size) { |
| | | List<Map<Object, Object>> list = informationService.selectTb(jurisdiction, enterpriseName, current, size); |
| | | public R<IPage> selectTb(String jurisdiction, String enterpriseName, Query query) { |
| | | IPage list =informationService.selectTb(Condition.getPage(query),jurisdiction, enterpriseName); |
| | | return R.data(list); |
| | | } |
| | | |
| | |
| | | * 公司经济情况进入图表 |
| | | */ |
| | | @PostMapping("/selectJj") |
| | | public R selectJj(String jurisdiction, String enterpriseName, Integer current, Integer size) { |
| | | List<Map<Object, Object>> list = informationService.selectJj(jurisdiction, enterpriseName, current, size); |
| | | public R<IPage> selectJj(String jurisdiction, String enterpriseName, Query query) { |
| | | IPage list = informationService.selectJj(Condition.getPage(query),jurisdiction, enterpriseName); |
| | | return R.data(list); |
| | | } |
| | | |
| | |
| | | * 业务统计情况 |
| | | */ |
| | | @PostMapping("/selectYw") |
| | | public R selectYw(String jurisdiction, String deptid,Integer current,Integer size) { |
| | | List<Map<Object, Object>> list = informationService.selectYw(jurisdiction, deptid,current,size); |
| | | public R<IPage> selectYw(String jurisdiction, String deptid, Query query) { |
| | | IPage list = informationService.selectYw(Condition.getPage(query),jurisdiction, deptid); |
| | | return R.data(list); |
| | | } |
| | | |
| | |
| | | * 业务统计明细 |
| | | */ |
| | | @PostMapping("/selectDis") |
| | | public R selectDis(String jurisdiction, String deptid, String fid, Integer current, Integer size) { |
| | | List<Map<Object, Object>> list = informationService.selectDis(jurisdiction, deptid, fid, current, size); |
| | | public R<IPage> selectDis(String jurisdiction, String deptid, String fid, Query query) { |
| | | IPage list = informationService.selectDis(Condition.getPage(query),jurisdiction, deptid, fid); |
| | | return R.data(list); |
| | | } |
| | | |