| | |
| | | return R.ok(pageInfo); |
| | | } |
| | | |
| | | @ApiOperation(value = "缴费账单查询分页列表") |
| | | @ApiOperation(value = "缴费账单查询列表") |
| | | @PostMapping("/getBillIds") |
| | | public R<List<String>> getBillIds(@RequestBody TBillQuery query){ |
| | | if (StringUtils.isEmpty(query.getUserId())){ |
| | |
| | | public R<PageInfo<TBillDto>> invoiceList(@RequestBody TBillQuery query) { |
| | | |
| | | // Long userId = tokenService.getLoginUser().getUserId(); |
| | | String userId = "1"; |
| | | String userId = "1881967035070177281"; |
| | | query.setUserId(userId); |
| | | PageInfo<TBillDto> pageInfo = tBillService.invoiceList(query); |
| | | return R.ok(pageInfo); |