| | |
| | | package com.ruoyi.doublePrevention.repository;
|
| | |
|
| | |
|
| | | import com.ruoyi.doublePrevention.entity.PreventRiskDangerConfirmLog;
|
| | | import com.ruoyi.project.tr.hiddenDangerCheckPoint.domain.HiddenDangerCheckPoint;
|
| | | import org.springframework.stereotype.Repository;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | @Repository
|
| | | public interface PreventRiskDangerConfirmLogRepository {
|
| | |
|
| | |
|
| | | int saveConfirmLog(PreventRiskDangerConfirmLog confirmLog);
|
| | |
|
| | |
|
| | | List<PreventRiskDangerConfirmLog> getLogsByDangerCheckPointId(Long dangerCheckPointId);
|
| | | }
|
| | | package com.ruoyi.doublePrevention.repository; |
| | | |
| | | |
| | | import com.ruoyi.doublePrevention.entity.PreventRiskDangerConfirmLog; |
| | | import com.ruoyi.project.tr.hiddenDangerCheckPoint.domain.HiddenDangerCheckPoint; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.List; |
| | | |
| | | @Repository |
| | | public interface PreventRiskDangerConfirmLogRepository { |
| | | |
| | | |
| | | int saveConfirmLog(PreventRiskDangerConfirmLog confirmLog); |
| | | |
| | | |
| | | List<PreventRiskDangerConfirmLog> getLogsByDangerCheckPointId(Long dangerCheckPointId); |
| | | } |