| | |
| | | |
| | | int updateByPrimaryKey(AppFileInfo record); |
| | | |
| | | List<AppFileInfo> selectDataGrid(Page<AppFileInfo> page, Map<String, Object> condition); |
| | | List<AppFileInfo> selectDataGrid(@Param("page") Page<AppFileInfo> page,@Param("condition") Map<String, Object> condition); |
| | | |
| | | AppFileInfo selectNew(@Param("filetype") String filetype); |
| | | } |
| | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.gk.hotwork.Domain.BlackListInfo; |
| | | |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.List; |
| | |
| | | @Repository |
| | | public interface BlackListInfoMapper extends BaseMapper<BlackListInfo> { |
| | | |
| | | List<BlackListInfo> selectDataGrid(Map<String, Object> condition, Page<BlackListInfo> page); |
| | | List<BlackListInfo> selectDataGrid(@Param("condition") Map<String, Object> condition,@Param("page") Page<BlackListInfo> page); |
| | | } |
| | |
| | | @Repository |
| | | public interface DepartmentInfoMapper extends BaseMapper<DepartmentInfo> { |
| | | |
| | | List<DepartmentVo> selectDataGrid(Page<DepartmentVo> page, Map<String, Object> condition); |
| | | List<DepartmentVo> selectDataGrid(@Param("page") Page<DepartmentVo> page,@Param("condition") Map<String, Object> condition); |
| | | |
| | | DepartmentInfo selectExistByName(@Param("id") Long id,@Param("department") String department); |
| | | |
| | |
| | | |
| | | DepartmentInfo selectSafety(@Param("id") Long id); |
| | | |
| | | Integer selectCountForExam(Map<String, Object> params); |
| | | Integer selectCountForExam(@Param("params") Map<String, Object> params); |
| | | |
| | | List<DepartmentInfo> selectPageForExam(Map<String, Object> params); |
| | | List<DepartmentInfo> selectPageForExam(@Param("params") Map<String, Object> params); |
| | | |
| | | DepartmentInfo getInfoByName(String departmentName); |
| | | |
| | |
| | | |
| | | int updateByPrimaryKey(DictionaryItemInfo record); |
| | | |
| | | List<DictionaryItemInfo> selectDataGrid(Page<DictionaryItemInfo> page, Map<String, Object> condition); |
| | | List<DictionaryItemInfo> selectDataGrid(@Param("page") Page<DictionaryItemInfo> page,@Param("condition") Map<String, Object> condition); |
| | | |
| | | List<DictionaryTypeInfo> selectExistInfo(@Param("id") Long id,@Param("value") String value,@Param("text") String text); |
| | | |
| | |
| | | |
| | | int updateByPrimaryKey(DictionaryTypeInfo record); |
| | | |
| | | List<DictionaryTypeInfo> selectDataGrid(Page<DictionaryTypeInfo> page, Map<String, Object> condition); |
| | | List<DictionaryTypeInfo> selectDataGrid(@Param("page") Page<DictionaryTypeInfo> page,@Param("condition") Map<String, Object> condition); |
| | | |
| | | List<DictionaryTypeInfo> selectExistInfo(@Param("id") Long id,@Param("code") String code,@Param("text") String text); |
| | | } |
| | |
| | | @Repository |
| | | public interface ElementManagementMapper extends BaseMapper<ElementManagement> { |
| | | |
| | | IPage<ElementManagement> selectPages(Page<ElementManagement> page,@Param("params") Map<String, Object> params); |
| | | IPage<ElementManagement> selectPages(@Param("page") Page<ElementManagement> page,@Param("params") Map<String, Object> params); |
| | | |
| | | List<ElementManagement> getParentElement(); |
| | | |
| | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.gk.hotwork.Domain.EmergencyPlan; |
| | | |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.Map; |
| | |
| | | @Repository |
| | | public interface EmergencyPlanMapper extends BaseMapper<EmergencyPlan> { |
| | | |
| | | IPage<EmergencyPlan> selectPages(Page<EmergencyPlan> page, Map<String, Object> params); |
| | | IPage<EmergencyPlan> selectPages(@Param("page") Page<EmergencyPlan> page,@Param("params") Map<String, Object> params); |
| | | } |
| | |
| | | @Repository |
| | | public interface EquipmentInfoMapper extends BaseMapper<EquipmentInfo> { |
| | | |
| | | List<EquipmentInfo> selectDataGrid(Page<EquipmentInfo> page, Map<String, Object> condition); |
| | | List<EquipmentInfo> selectDataGrid(@Param("page") Page<EquipmentInfo> page,@Param("condition") Map<String, Object> condition); |
| | | |
| | | EquipmentInfo selectExistByNumber(@Param("id") Long id,@Param("number") String number); |
| | | |
| | |
| | | @Repository |
| | | public interface GasWarnInfoMapper extends BaseMapper<GasWarnInfo> { |
| | | |
| | | List<GasWarnInfo> selectDataGrid(Page<GasWarnInfo> page, Map<String, Object> condition); |
| | | List<GasWarnInfo> selectDataGrid(@Param("page") Page<GasWarnInfo> page,@Param("condition") Map<String, Object> condition); |
| | | |
| | | GasWarnInfo selectExistByType(@Param("id") Long id,@Param("warntype") String warntype,@Param("gastype") String gastype); |
| | | |
| | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.gk.hotwork.Domain.HelpDocInfo; |
| | | |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.List; |
| | |
| | | @Repository |
| | | public interface HelpDocInfoMapper extends BaseMapper<HelpDocInfo> { |
| | | |
| | | List<HelpDocInfo> selectDataGrid(Page<HelpDocInfo> page, Map<String, Object> condition); |
| | | List<HelpDocInfo> selectDataGrid(@Param("page") Page<HelpDocInfo> page,@Param("condition") Map<String, Object> condition); |
| | | } |
| | |
| | | |
| | | List<HiddenDanger> selectPages(@Param("params") Map params); |
| | | |
| | | List<HiddenDanger> selectDataGrid(Map<String, Object> condition, Page<HiddenDanger> page); |
| | | List<HiddenDanger> selectDataGrid(@Param("condition") Map<String, Object> condition,@Param("page") Page<HiddenDanger> page); |
| | | |
| | | List<HiddenDanger> selectStatisticsData(Map<String, Object> condition, Page<HiddenDanger> page); |
| | | List<HiddenDanger> selectStatisticsData(@Param("condition") Map<String, Object> condition,@Param("page") Page<HiddenDanger> page); |
| | | |
| | | int countNumInMonth(Long id); |
| | | } |
| | |
| | | @Repository |
| | | public interface MajorEquipmentAlarmMapper extends BaseMapper<MajorEquipmentAlarm> { |
| | | |
| | | IPage<MajorEquipmentAlarm> selectPages(Page<MajorEquipmentAlarm> page, Map<String, Object> params); |
| | | IPage<MajorEquipmentAlarm> selectPages(@Param("page") Page<MajorEquipmentAlarm> page,@Param("params") Map<String, Object> params); |
| | | |
| | | void deleteByEquipmentId(@Param("id") Long id , @Param("updateBy") String updateBy , @Param("updateTime") Date updateTime); |
| | | } |
| | |
| | | @Repository |
| | | public interface MajorEquipmentDataMapper extends BaseMapper<MajorEquipmentData> { |
| | | |
| | | IPage<MajorEquipmentData> selectPages(Page<MajorEquipmentData> page, Map<String, Object> params); |
| | | IPage<MajorEquipmentData> selectPages(@Param("page") Page<MajorEquipmentData> page,@Param("params") Map<String, Object> params); |
| | | |
| | | void deleteByEquipmentId(@Param("id") Long id , @Param("updateBy") String updateBy , @Param("updateTime") Date updateTime); |
| | | } |
| | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.gk.hotwork.Domain.MajorEquipment; |
| | | |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.List; |
| | |
| | | @Repository |
| | | public interface MajorEquipmentMapper extends BaseMapper<MajorEquipment> { |
| | | |
| | | IPage<MajorEquipment> selectPages(Page<MajorEquipment> page, Map<String, Object> params); |
| | | IPage<MajorEquipment> selectPages(@Param("page") Page<MajorEquipment> page,@Param("params") Map<String, Object> params); |
| | | |
| | | List<MajorEquipment> getMajorEquipment(); |
| | | |
| | |
| | | @Repository |
| | | public interface ReserveMapper extends BaseMapper<Reserve> { |
| | | |
| | | Page statistics(Page<Map> page, Map params); |
| | | Page statistics(@Param("page") Page<Map> page,@Param("params") Map params); |
| | | |
| | | Map selectStatisticsTotal(@Param("params") Map params); |
| | | |
| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.gk.hotwork.Domain.RiskAnaUnit; |
| | | import com.gk.hotwork.Domain.UserInfo; |
| | | |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.List; |
| | |
| | | @Repository |
| | | public interface RiskAnaUintMapper extends BaseMapper<RiskAnaUnit> { |
| | | |
| | | IPage<RiskAnaUnit> selectPages(Page<RiskAnaUnit> page, Map<String, Object> params, UserInfo user); |
| | | IPage<RiskAnaUnit> selectPages(@Param("page") Page<RiskAnaUnit> page,@Param("params") Map<String, Object> params,@Param("user") UserInfo user); |
| | | |
| | | List<Map> selectDepartmentAnalysis(); |
| | | |
| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.gk.hotwork.Domain.RiskControlClassify; |
| | | import com.gk.hotwork.Domain.UserInfo; |
| | | |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.Map; |
| | |
| | | @Repository |
| | | public interface RiskControlClassifyMapper extends BaseMapper<RiskControlClassify> { |
| | | |
| | | IPage<RiskControlClassify> selectPages(Page<RiskControlClassify> page, Map<String, Object> filter, UserInfo user); |
| | | IPage<RiskControlClassify> selectPages(@Param("page") Page<RiskControlClassify> page,@Param("filter") Map<String, Object> filter,@Param("user") UserInfo user); |
| | | |
| | | RiskControlClassify getByClassify1AndClassify12(String classify1, String classify2); |
| | | /** |
| | |
| | | @Repository |
| | | public interface SafetyInspectionItemMapper extends BaseMapper<SafetyInspectionItem> { |
| | | |
| | | IPage<SafetyInspectionItem> selectPages(Page<SafetyInspectionItem> page, Map<String, Object> params); |
| | | IPage<SafetyInspectionItem> selectPages(Page<SafetyInspectionItem> page,@Param("params") Map<String, Object> params); |
| | | |
| | | List<SafetyInspectionItem> infoElementA(@Param("id") Long id); |
| | | |
| | |
| | | |
| | | void updateSafetyInspectionItem(@Param("param") SafetyInspectionItem param); |
| | | |
| | | IPage<SafetyInspectionItem> selectCPages(Page<SafetyInspectionItem> page, Map<String, Object> params); |
| | | IPage<SafetyInspectionItem> selectCPages(Page<SafetyInspectionItem> page,@Param("params") Map<String, Object> params); |
| | | } |
| | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.gk.hotwork.Domain.SafetySelfInspection; |
| | | |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.Map; |
| | |
| | | @Repository |
| | | public interface SafetySelfInspectionMapper extends BaseMapper<SafetySelfInspection> { |
| | | |
| | | IPage<SafetySelfInspection> selectPages(Page<SafetySelfInspection> page, Map<String, Object> params); |
| | | IPage<SafetySelfInspection> selectPages(@Param("page") Page<SafetySelfInspection> page,@Param("params") Map<String, Object> params); |
| | | |
| | | } |
| | |
| | | |
| | | List<SelfCheckVo> selectByType(@Param("type") String type); |
| | | |
| | | List<SelfCheckInfo> selectDataGrid(Page<SelfCheckInfo> page, Map<String, Object> condition); |
| | | List<SelfCheckInfo> selectDataGrid(@Param("page") Page<SelfCheckInfo> page,@Param("condition") Map<String, Object> condition); |
| | | |
| | | List<SelfCheckInfo> selectByIds(@Param("idList") List<Long> idList); |
| | | } |
| | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.gk.hotwork.Domain.SmsLogInfo; |
| | | |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | @Repository |
| | |
| | | |
| | | int updateByPrimaryKey(SmsLogInfo record); |
| | | |
| | | SmsLogInfo selectByTel(String mobile, String starttime, String endtime, Byte type); |
| | | SmsLogInfo selectByTel(@Param("mobile") String mobile,@Param("starttime") String starttime,@Param("endtime") String endtime,@Param("type") Byte type); |
| | | |
| | | void deleteByTime(String seventime); |
| | | } |
| | |
| | | @Repository |
| | | public interface TaskInfoMapper extends BaseMapper<TaskInfo> { |
| | | |
| | | List<TaskInfo> selectTaskDataGrid(Map<String, Object> condition, Page<TaskInfo> page); |
| | | List<TaskInfo> selectTaskDataGrid(@Param("condition") Map<String, Object> condition,@Param("page") Page<TaskInfo> page); |
| | | |
| | | Integer getTotalByYear(Integer year); |
| | | |
| | | List<TaskInfo> selectTaskDataGridByDep(Map<String, Object> condition, Page<TaskInfo> page); |
| | | List<TaskInfo> selectTaskDataGridByDep(@Param("condition") Map<String, Object> condition,@Param("page") Page<TaskInfo> page); |
| | | |
| | | List<ActiveTaskInfo> selectActiveTaskList(Date time,Byte type); |
| | | |
| | | List<TaskInfo> selectDataGridViewable(Map<String, Object> condition, Page<TaskInfo> page); |
| | | List<TaskInfo> selectDataGridViewable(@Param("condition") Map<String, Object> condition,@Param("page") Page<TaskInfo> page); |
| | | |
| | | List<TaskInfo> getWaitReviewDataGrid(Map<String, Object> condition, Page<TaskInfo> page); |
| | | List<TaskInfo> getWaitReviewDataGrid(@Param("condition") Map<String, Object> condition,@Param("page") Page<TaskInfo> page); |
| | | |
| | | List<TaskVo> getPendingTask(@Param("type")String type, @Param("name") String name); |
| | | |
| | | List<TaskVo> getDoingTask(); |
| | | |
| | | List<WorkShowTaskVo> selectPageWorkTodayDetail(Page<WorkShowTaskVo> page, Map params); |
| | | List<WorkShowTaskVo> selectPageWorkTodayDetail(@Param("page") Page<WorkShowTaskVo> page,@Param("params") Map params); |
| | | |
| | | int selectCountWorkToday(Byte flag); |
| | | |
| | |
| | | |
| | | List<Map> selectCountWorkEverydayInMonth(@Param("days")int[] index,@Param("startTime") Date startTime,@Param("status") Byte status); |
| | | |
| | | List<TaskInfo> selectStatisticsData(Map<String, Object> condition, Page<TaskInfo> page); |
| | | List<TaskInfo> selectStatisticsData(@Param("condition") Map<String, Object> condition,@Param("page") Page<TaskInfo> page); |
| | | |
| | | List<TaskInfo> selectDataGridTesting(Map<String, Object> condition, Page<TaskInfo> page); |
| | | List<TaskInfo> selectDataGridTesting(@Param("condition") Map<String, Object> condition,@Param("page") Page<TaskInfo> page); |
| | | } |
| | |
| | | |
| | | UserInfo selectByPrimaryKey(Long id); |
| | | |
| | | List<UserVo> selectUserDataGrid(Page<UserVo> page, Map<String, Object> record); |
| | | List<UserVo> selectCompanyUserDataList(Page<UserVo> page, Map<String, Object> record); |
| | | List<UserVo> selectSuperviseUserDataList(Page<UserVo> page, Map<String, Object> record); |
| | | List<UserVo> selectUserDataGrid(@Param("page") Page<UserVo> page,@Param("record") Map<String, Object> record); |
| | | List<UserVo> selectCompanyUserDataList(@Param("page") Page<UserVo> page,@Param("record") Map<String, Object> record); |
| | | List<UserVo> selectSuperviseUserDataList(@Param("page") Page<UserVo> page,@Param("record") Map<String, Object> record); |
| | | |
| | | List<UserInfo> selectUserInfo(@Param("id") Long id, @Param("username") String username); |
| | | |
| | |
| | | |
| | | List<UserInfo> selectPageForExam(Map<Object, Object> params); |
| | | |
| | | UserInfo getByRealName(String realname, String depName); |
| | | UserInfo getByRealName(@Param("realname") String realname,@Param("depName") String depName); |
| | | |
| | | AccountUserVo getAccountByDepartment(@Param("department") String department); |
| | | |
| | |
| | | UserInfo getByUserId(Long userId); |
| | | |
| | | |
| | | List<UserVo> selectExpertUserDataList(Page<UserVo> page, Map<String, Object> record); |
| | | List<UserVo> selectExpertUserDataList(@Param("page") Page<UserVo> page,@Param("record") Map<String, Object> record); |
| | | |
| | | List<UserInfo> selectExpertList(String realname); |
| | | } |
| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.gk.hotwork.Domain.TaskInfo; |
| | | import com.gk.hotwork.Domain.WarningInfo; |
| | | |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.List; |
| | |
| | | @Repository |
| | | public interface WarningInfoMapper extends BaseMapper<WarningInfo> { |
| | | |
| | | List<WarningInfo> selectTaskDataGrid(Map<String, Object> condition, Page<TaskInfo> page); |
| | | List<WarningInfo> selectTaskDataGrid(@Param("condition") Map<String, Object> condition,@Param("page") Page<TaskInfo> page); |
| | | } |
| | |
| | | /** |
| | | * 隐患排查任务-分页查询 |
| | | */ |
| | | IPage<PreventDangerCheckTask> getTaskPage(Page<Object> page, PreventDangerCheckTaskQueryReqDTO taskQueryReqDTO); |
| | | IPage<PreventDangerCheckTask> getTaskPage(@Param("page") Page<Object> page,@Param("taskQueryReqDTO") PreventDangerCheckTaskQueryReqDTO taskQueryReqDTO); |
| | | /** |
| | | * 隐患排查任务-分页查询-手机端使用 |
| | | */ |
| | | IPage<PreventDangerCheckTask> getTaskPageForMobile(Page<Object> page, PreventDangerCheckTaskQueryReqDTO taskQueryReqDTO); |
| | | IPage<PreventDangerCheckTask> getTaskPageForMobile(@Param("page") Page<Object> page,@Param("taskQueryReqDTO") PreventDangerCheckTaskQueryReqDTO taskQueryReqDTO); |
| | | /** |
| | | * 隐患排查任务-修改 |
| | | */ |
| | |
| | | /** |
| | | * 隐患排查任务-通过id修改任务状态 |
| | | */ |
| | | int updateTaskStatus(Long taskId, Byte taskStatus); |
| | | int updateTaskStatus(@Param("taskId") Long taskId,@Param("taskStatus") Byte taskStatus); |
| | | /** |
| | | * 设置任务为超时 |
| | | * */ |
| | |
| | | */ |
| | | int taskToUser(PreventTaskToUserParams taskToUserParams); |
| | | |
| | | List<Map> selectInspectorsStatistics(Long depId, List<String> list, LocalDateTime startTime, LocalDateTime endTime); |
| | | List<Map> selectInspectorsStatistics(@Param("depId") Long depId,@Param("list") List<String> list,@Param("startTime") LocalDateTime startTime,@Param("endTime") LocalDateTime endTime); |
| | | |
| | | List<Map> selectInspectionCompleted(Long depId, Byte status, List<String> list, LocalDateTime startTime, LocalDateTime endTime); |
| | | List<Map> selectInspectionCompleted(@Param("depId") Long depId,@Param("status") Byte status,@Param("list") List<String> list,@Param("startTime") LocalDateTime startTime,@Param("endTime") LocalDateTime endTime); |
| | | /** |
| | | * 排查任务-检查是否已经创建 |
| | | */ |
| | | PreventDangerCheckTask getTaskByCheckWorkIdAndStartTime(Long workId, Date checkTime); |
| | | PreventDangerCheckTask getTaskByCheckWorkIdAndStartTime(@Param("workId") Long workId,@Param("checkTime") Date checkTime); |
| | | /** |
| | | * 排查任务-查询应该已经过期,但是还在执行中状态的任务 |
| | | */ |
| | | List<PreventDangerCheckTask> listOverTask(Date startTime, Date endTime); |
| | | List<PreventDangerCheckTask> listOverTask(@Param("startTime") Date startTime,@Param("endTime") Date endTime); |
| | | /** |
| | | * 排查任务-查询应该已经开始,但是还在待执行状态的任务 |
| | | */ |
| | |
| | | /**查询应该已经结束,但是还在执行中状态的任务*/ |
| | | List<PreventDangerCheckTask> listTimeOutTask(Date endTime); |
| | | |
| | | List<Map> selectInspectionTask(Long depId, List<String> list, LocalDateTime startTime, LocalDateTime endTime); |
| | | List<Map> selectInspectionTask(@Param("depId") Long depId,@Param("list") List<String> list,@Param("startTime") LocalDateTime startTime,@Param("endTime") LocalDateTime endTime); |
| | | |
| | | List<Map> selectInspectionClaimedTask(Long depId, List<String> list, LocalDateTime startTime, LocalDateTime endTime); |
| | | List<Map> selectInspectionClaimedTask(@Param("depId") Long depId,@Param("list") List<String> list,@Param("startTime") LocalDateTime startTime,@Param("endTime") LocalDateTime endTime); |
| | | |
| | | List<Map> selectInspectionCompletedTask(Long depId, List<String> list, LocalDateTime startTime, LocalDateTime endTime); |
| | | List<Map> selectInspectionCompletedTask(@Param("depId") Long depId,@Param("list") List<String> list,@Param("startTime") LocalDateTime startTime,@Param("endTime") LocalDateTime endTime); |
| | | |
| | | List<Map> selectInspectionUnCompletedTask(Long depId, List<String> list, LocalDateTime startTime, LocalDateTime endTime); |
| | | List<Map> selectInspectionUnCompletedTask(@Param("depId") Long depId,@Param("list") List<String> list,@Param("startTime") LocalDateTime startTime,@Param("endTime") LocalDateTime endTime); |
| | | |
| | | List<PreventDangerCheckTaskRectifyDO> selectPreventDangerPage(Page<PreventDangerCheckTaskRectifyDO> page, @Param("query") Map<String, Object> params); |
| | | List<PreventDangerCheckTaskRectifyDO> selectPreventDangerPage(@Param("page") Page<PreventDangerCheckTaskRectifyDO> page, @Param("query") Map<String, Object> params); |
| | | |
| | | Map<String, Integer> selectRectifyNum(); |
| | | |
| | |
| | | import com.gk.hotwork.doublePrevention.repository.param.HandlerReportParam; |
| | | import com.gk.hotwork.doublePrevention.repository.param.PreventDangerCheckWorkDeleteParams; |
| | | import com.gk.hotwork.doublePrevention.repository.param.PreventDangerCheckWorkUpdateParams; |
| | | |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.Date; |
| | |
| | | /** |
| | | * 排查作业-检查待执行列表 |
| | | */ |
| | | List<PreventDangerCheckWork> listExecCheckWork(Date startTime, Date endTime); |
| | | List<PreventDangerCheckWork> listExecCheckWork(@Param("startTime") Date startTime,@Param("endTime") Date endTime); |
| | | /** |
| | | * 排查作业-检查待执行列表 |
| | | */ |