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);
|
}
|