| | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.ruoyi.doublePrevention.entity.PreventRiskControlMeasure; |
| | | import com.ruoyi.doublePrevention.repository.param.HandlerReportParam; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | |
| | | * @description 分页获取风险管控措施 |
| | | */ |
| | | List<PreventRiskControlMeasure> listRiskEvenByCondition(@Param("controlType") Byte controlType,@Param("riskEventId") Long riskEventId); |
| | | |
| | | |
| | | |
| | | |
| | | /** |
| | | * 检索需要上报的风险管控措施 |
| | | */ |
| | | List<PreventRiskControlMeasure> listReportMeasure(); |
| | | /** |
| | | * 修改上报的风险管控措施状态 |
| | | */ |
| | | int updateMeasureReportStatus(HandlerReportParam handlerReportParam); |
| | | List<PreventRiskControlMeasure> listRiskControlMeasureByCondition(@Param("controlType") Byte controlType,@Param("riskEventId") Long riskEventId); |
| | | |
| | | /** |
| | | * 管控措施-不分页查询 |
| | | */ |
| | | List<PreventRiskControlMeasure> listRiskControlMeasure(); |
| | | |
| | | PreventRiskControlMeasure getPreventRiskControlMeasureByUuid(String riskMeasureId); |
| | | } |