|  |  | 
 |  |  | import com.doumee.core.model.PageWrap; | 
 |  |  | import com.doumee.core.model.PageData; | 
 |  |  | import com.doumee.dao.business.model.ApproveParam; | 
 |  |  | import com.doumee.dao.system.vo.ApproveParamDataVO; | 
 |  |  | import com.doumee.service.business.ApproveParamService; | 
 |  |  | import io.swagger.annotations.Api; | 
 |  |  | import io.swagger.annotations.ApiOperation; | 
 |  |  | 
 |  |  |     public ApiResponse findById(@PathVariable Integer id) { | 
 |  |  |         return ApiResponse.success(approveParamService.findById(id)); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |  | 
 |  |  |     @ApiOperation("获取配置信息") | 
 |  |  |     @GetMapping("/getApproveParamData") | 
 |  |  |     @RequiresPermissions("business:approveparam:query") | 
 |  |  |     public ApiResponse<ApproveParamDataVO> getApproveParamData() { | 
 |  |  |         return ApiResponse.success(approveParamService.getApproveParamData()); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |  | 
 |  |  | } |