| | |
| | | import io.swagger.annotations.ApiImplicitParams; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.validation.annotation.Validated; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | @Api(tags = "环境需求风险管理") |
| | |
| | | */ |
| | | @ApiOperation(value = "内外部环境要素控制删除") |
| | | @GetMapping("/factor/control/deleted") |
| | | public CommonResult deletedFactorControl(@RequestParam("factorControlId") Integer factorControlId){ |
| | | return factorControlService.deletedFactorControl(factorControlId); |
| | | public CommonResult deletedFactorControl(@RequestParam("factorControlId") Integer factorControlId,@RequestParam("factorDiscrenId") Integer factorDiscrenId){ |
| | | return factorControlService.deletedFactorControl(factorControlId,factorDiscrenId); |
| | | } |
| | | |
| | | /** |