|  |  |  | 
|---|
|  |  |  | import com.doumee.core.model.PageData; | 
|---|
|  |  |  | import com.doumee.core.model.PageWrap; | 
|---|
|  |  |  | import com.doumee.dao.business.model.ApplyChange; | 
|---|
|  |  |  | import com.doumee.dao.business.model.InsuranceApply; | 
|---|
|  |  |  | import com.doumee.service.business.ApplyChangeService; | 
|---|
|  |  |  | import io.swagger.annotations.Api; | 
|---|
|  |  |  | import io.swagger.annotations.ApiOperation; | 
|---|
|  |  |  | 
|---|
|  |  |  | public ApiResponse<ApplyChange> findById(@PathVariable Integer id) { | 
|---|
|  |  |  | return ApiResponse.success(applyChangeService.findDetail(id)); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiOperation("商户审核 - 委托保业务") | 
|---|
|  |  |  | @PostMapping("/check") | 
|---|
|  |  |  | @RequiresPermissions("business:applychange:check") | 
|---|
|  |  |  | public ApiResponse check(@RequestBody ApplyChange model) { | 
|---|
|  |  |  | return ApiResponse.success(applyChangeService.check(model)); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|