郑永安
2023-06-19 7a6abd05683528032687c75e80e0bd2030a3e46c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.gkhy.safePlatform.doublePrevention.service.baseService;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.gkhy.safePlatform.doublePrevention.entity.PreventDangerCheckContent;
 
public interface PreventDangerCheckContentService extends IService<PreventDangerCheckContent> {
    /**
     * 插入管控措施,同时插入措施对应的隐患排查内容
     * */
    int saveDangerCheckContent(PreventDangerCheckContent checkContent);
 
    /**
     * 查询隐患排查内容-通过关联的措施id
     * */
    PreventDangerCheckContent getCheckContentByMeasureId(Long measureId);
 
    /**
     * 修改隐患排查内容-通过关联的措施id
     * */
    void updateDangerCheckContent(Long measureId, String checkContent);
 
    /**
     * 查询任隐患排查内容-根据务关联的检查内容taskId
     * */
    PreventDangerCheckContent getCheckContentByTaskId(Long taskId);
}