| | |
| | | import com.ruoyi.system.query.TBillQuery; |
| | | import com.ruoyi.system.query.TTenantQuery; |
| | | import com.ruoyi.system.service.TBillService; |
| | | import com.ruoyi.system.vo.TBillVO; |
| | | import com.ruoyi.system.vo.TenantVO; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | |
| | | /** |
| | | * 获取账单列表 |
| | | */ |
| | | // @ApiOperation(value = "获取账单列表") |
| | | // @PostMapping(value = "/pageList") |
| | | // public R<PageInfo<TBillVO>> pageList(@RequestBody TBillQuery query) { |
| | | // return R.ok(billService.pageList(query)); |
| | | // } |
| | | @ApiOperation(value = "获取账单列表") |
| | | @PostMapping(value = "/pageList") |
| | | public R<PageInfo<TBillVO>> pageList(@RequestBody TBillQuery query) { |
| | | return R.ok(billService.pageList(query)); |
| | | } |
| | | |
| | | |
| | | |