| | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.doublePrevention.entity.PreventRiskControlMeasure; |
| | | import com.ruoyi.doublePrevention.entity.PreventRiskEvent; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface PreventRiskEventService { |
| | | |
| | | /** |
| | | * @description 新增风险控制事件 |
| | | */ |
| | | int savePreventRiskEvent(PreventRiskEvent preventRiskEvent); |
| | | |
| | | /** |
| | | * @description 根据主键id查询风险控制事件 |
| | | */ |
| | | PreventRiskEvent getPreventRiskEventById(Long id); |
| | | |
| | | /** |
| | | * @description 根据主键id删除风险控制事件 |
| | | */ |
| | | int deletePreventRiskEventById(PreventRiskEvent preventRiskEvent); |
| | | |
| | | /** |
| | | * @description 根据主键id对风险控制事件进行修改 |
| | | */ |
| | | int updatePreventRiskEventById(PreventRiskEvent preventRiskEvent); |
| | | |
| | | |
| | | } |