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 { /** * 查询管控措施-通过关联的措施id * */ PreventDangerCheckContent getCheckContentByMeasureId(Long measureId); /** * 修改隐患排查内容-通过关联的措施id * */ int updateDangerCheckContent(Long measureId, String checkContent); /** * 查询任隐患排查内容-根据务关联的检查内容taskId * */ PreventDangerCheckContent getCheckContentByTaskId(Long taskId); }