双重预防项目-国泰新华二开定制版
huangzhen
2022-10-28 886a387463f4e0e0ad6f7c2a04d2cfab2e3aace8
src/main/java/com/ruoyi/doublePrevention/repository/PreventRiskControlMeasureRepository.java
@@ -33,4 +33,19 @@
     */
    PreventRiskControlMeasure getPreventRiskControlMeasureById(Long id);
    /**
     * @description 根据控制措施编号查询风险控制措施
     */
    PreventRiskControlMeasure getPreventRiskControlMeasureByControlMeasureCode(@Param("controlMeasureCode") String controlMeasureCode);
    /**
     * @description 分页获取风险管控措施
     */
    List<PreventRiskControlMeasure> listRiskControlMeasureByCondition(@Param("controlType") Byte controlType,@Param("riskEventId") Long riskEventId);
    /**
     * 管控措施-不分页查询
     */
    List<PreventRiskControlMeasure> listRiskControlMeasure();
}