双重预防项目-国泰新华二开定制版
huangzhen
2022-09-16 1bdce029a16f396a933848b368040e78740728fa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.ruoyi.doublePrevention.service.baseService;
 
import com.ruoyi.doublePrevention.entity.PreventRiskCheckUnit;
import org.springframework.stereotype.Repository;
 
@Repository
public interface PreventRiskCheckUnitService {
 
    /**
     * 保存原检查点与管控措施的对应关系
     */
    int insertPointAndMeasure(PreventRiskCheckUnit checkUnit);
 
    /**
     * @description 根据原检查点查询 原检查点与管控措施对应记录
     */
    PreventRiskCheckUnit getRiskUnitByBaseCheckPointId(Long checkPointId);
}