郑永安
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
package com.gkhy.safePlatform.doublePrevention.repository;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.gkhy.safePlatform.doublePrevention.entity.PreventDangerCheckContent;
import org.springframework.stereotype.Repository;
 
@Repository
public interface PreventDangerCheckContentRepository extends BaseMapper<PreventDangerCheckContent> {
 
    /**
     * 查询管控措施-通过关联的措施id
     * */
    PreventDangerCheckContent getCheckContentByMeasureId(Long measureId);
 
    /**
     * 修改隐患排查内容-通过关联的措施id
     * */
    int updateDangerCheckContent(Long measureId, String checkContent);
 
    /**
     * 查询任隐患排查内容-根据务关联的检查内容taskId
     * */
    PreventDangerCheckContent getCheckContentByTaskId(Long taskId);
}