| | |
| | | private final IEnforceComplaintLogService iEnforceComplaintLogService; |
| | | |
| | | |
| | | @ApiOperation("查询投诉记录列表") |
| | | @ApiOperation("——记录列表") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(EnforceComplaintLogQueryBo bo) |
| | | { |
| | |
| | | } |
| | | |
| | | |
| | | @ApiOperation("我的投诉——记录列表") |
| | | @GetMapping("/complaintList") |
| | | public TableDataInfo complaintList(EnforceComplaintLogQueryBo bo) |
| | | { |
| | | startPage(); |
| | | List<EnforceComplaintLogVo> list = iEnforceComplaintLogService.complaintList(bo); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | |
| | | |
| | | @ApiOperation("诉求建议——记录列表") |
| | | @GetMapping("/pleaseList") |
| | | public TableDataInfo pleaseList(EnforceComplaintLogQueryBo bo) |
| | | { |
| | | startPage(); |
| | | List<EnforceComplaintLogVo> list = iEnforceComplaintLogService.queryPleaseList(bo); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | |
| | | @ApiOperation("导出投诉记录列表") |
| | | //@PreAuthorize("@ss.hasPermi('enforce:log:export')") |