| | |
| | | return ApiResponse.success(ywCustomerService.findPage(pageWrap)); |
| | | } |
| | | |
| | | @ApiOperation("列表") |
| | | @PostMapping("/list") |
| | | @CloudRequiredPermission("business:ywcustomer:query") |
| | | public ApiResponse<List<YwCustomer>> list (@RequestBody YwCustomer model,@RequestHeader(Constants.HEADER_USER_TOKEN) String token) { |
| | | return ApiResponse.success(ywCustomerService.findList(model)); |
| | | } |
| | | |
| | | @ApiOperation("导出Excel") |
| | | @PostMapping("/exportExcel") |
| | | @CloudRequiredPermission("business:ywcustomer:exportExcel") |
| | |
| | | @GetMapping("/{id}") |
| | | @CloudRequiredPermission("business:ywcustomer:query") |
| | | public ApiResponse findById(@PathVariable Integer id,@RequestHeader(Constants.HEADER_USER_TOKEN) String token) { |
| | | return ApiResponse.success(ywCustomerService.findById(id)); |
| | | return ApiResponse.success(ywCustomerService.getDetail(id)); |
| | | } |
| | | } |