Commit 22e306c9 authored by 陈晓晋's avatar 陈晓晋

固定风险删除20230719

parent 9f8922b5
......@@ -389,6 +389,17 @@ public class RiskPlanAppController extends BaseController {
return R.ok(riskPlanInherentListService.getRiskPlanAppInherentListDetailsDtoByInherentId(inherentId));
}
/**
* 获取固有风险删除
*
* @param inherentId 固有风险id
* @real_return {@link R<Boolean>}
*/
@GetMapping("/inherent/delete/{inherentId}")
public R<Boolean> deleteRiskPlanAppInherentByInherentId(@PathVariable("inherentId") Long inherentId) {
return R.ok(riskPlanInherentListService.removeById(inherentId));
}
/**
* 根据固有风险id获取现有风险列表
*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment