package com.ruoyi.doublePrevention.repository;
|
|
import com.ruoyi.doublePrevention.entity.PreventRiskDangerCheckAndMeasure;
|
import org.springframework.stereotype.Repository;
|
|
import java.util.List;
|
|
@Repository
|
public interface PreventRiskDangerCheckAndMeasureRepository {
|
|
/**
|
* 写入核查任务检查点与管控措施信息
|
* */
|
int insertCheckAndMeasure(PreventRiskDangerCheckAndMeasure checkAndMeasure);
|
|
List<PreventRiskDangerCheckAndMeasure> getByBaseCheckPointId(Long checkPointId);
|
|
PreventRiskDangerCheckAndMeasure getByDangerCheckPointId(Long dangerCheckPointId);
|
}
|