From 176447671a417ae00487fe0f037879c6070f1e68 Mon Sep 17 00:00:00 2001 From: huangzhen <867127663@qq.com> Date: 星期三, 07 九月 2022 17:14:16 +0800 Subject: [PATCH] 新增风险事件、管控措施的主业务代码(增、删、改、查、分页查)、管控模板 --- src/main/java/com/ruoyi/doublePrevention/repository/PreventRiskControlMeasureRepository.java | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/ruoyi/doublePrevention/repository/PreventRiskControlMeasureRepository.java b/src/main/java/com/ruoyi/doublePrevention/repository/PreventRiskControlMeasureRepository.java index d5b4606..52dde12 100644 --- a/src/main/java/com/ruoyi/doublePrevention/repository/PreventRiskControlMeasureRepository.java +++ b/src/main/java/com/ruoyi/doublePrevention/repository/PreventRiskControlMeasureRepository.java @@ -33,4 +33,13 @@ */ PreventRiskControlMeasure getPreventRiskControlMeasureById(Long id); + /** + * @description 根据控制措施编号查询风险控制措施 + */ + PreventRiskControlMeasure getPreventRiskControlMeasureByControlMeasureCode(@Param("controlMeasureCode") String controlMeasureCode); + + /** + * @description 分页获取风险管控措施 + */ + List<PreventRiskControlMeasure> listRiskEvenByCondition(@Param("controlType") Byte controlType,@Param("riskEventId") Long riskEventId); } -- Gitblit v1.9.2