| | |
| | | @RequestParam(name = "xmc", required = false) String xmc, |
| | | @RequestParam(name = "investigate", required = false) Integer investigate, |
| | | @RequestParam(name = "dkmj", required = false) Double dkmj, |
| | | @RequestParam(name = "isPlan",required = false) Integer isPlan |
| | | @RequestParam(name = "isPush",required = false) Integer isPush |
| | | ) { |
| | | fileService.getNoaddFile(); |
| | | //调用service分页查询 |
| | |
| | | .xmc(xmc) |
| | | .investigate(investigate) |
| | | .dkmj(dkmj) |
| | | .isPlan(isPlan) |
| | | .isPush(isPush) |
| | | .build(); |
| | | PaginationData<LotInfo> data = getPatchesService.limitGet(param); |
| | | return ResponseResult.success(data); |