| | |
| | | |
| | | import com.gkhy.exam.common.api.CommonResult; |
| | | import com.gkhy.exam.system.domain.*; |
| | | import com.gkhy.exam.system.domain.req.CopyReq; |
| | | import com.gkhy.exam.system.service.*; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiImplicitParam; |
| | |
| | | @GetMapping("/factor/control/deleted") |
| | | public CommonResult deletedFactorControl(@RequestParam("factorControlId") Integer factorControlId,@RequestParam("factorDiscrenId") Integer factorDiscrenId){ |
| | | return factorControlService.deletedFactorControl(factorControlId,factorDiscrenId); |
| | | } |
| | | |
| | | @ApiOperation(value = "内外部环境要素识别复制") |
| | | @PostMapping("/factor/discern/copy") |
| | | public CommonResult copyFactorDiscern(@RequestBody CopyReq copyReq){ |
| | | return factorDiscernService.copyFactorDiscern(copyReq); |
| | | } |
| | | |
| | | /** |
| | |
| | | return riskMonitorService.deletedRiskMonitor(riskMonitorId); |
| | | } |
| | | |
| | | @ApiOperation(value = "风险管理复制") |
| | | @PostMapping("/risk/manage/copy") |
| | | public CommonResult copyRiskMonitor(@RequestBody CopyReq copyReq){ |
| | | return riskManageService.copyRiskMonitor(copyReq); |
| | | } |
| | | |
| | | } |