| | |
| | | package com.ruoyi.doublePrevention.service.baseService;
|
| | |
|
| | | import com.baomidou.mybatisplus.extension.service.IService;
|
| | | import com.ruoyi.doublePrevention.entity.CJReport.PreventCJReportDangerInfo;
|
| | | import com.ruoyi.doublePrevention.repository.param.HandlerCJReportParam;
|
| | | import com.ruoyi.doublePrevention.repository.param.HandlerReportParam;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | public interface PreventCJReportDangerInfoService extends IService<PreventCJReportDangerInfo> {
|
| | | /**
|
| | | * 插入隐患信息
|
| | | * */
|
| | | int insert(PreventCJReportDangerInfo danger);
|
| | | // /**
|
| | | // * 上报数据-隐患信息-分页查询
|
| | | // */
|
| | | // IPage<PreventCJReportDangerInfo> getReportDangerInfoPage(Page<Object> objectPage, PreventReportDangerInfoReqDTO queryReqDTO);
|
| | | /**
|
| | | * 上报数据-待上报数据查询
|
| | | */
|
| | | List<PreventCJReportDangerInfo> listReportDangerDate();
|
| | | /**
|
| | | * 上报数据-待上报状态变更
|
| | | */
|
| | | void updateTaskReportStatus(HandlerReportParam handlerReportParam);
|
| | | /**
|
| | | * 上报数据-待上报状态变更-通过id
|
| | | */
|
| | | void updateCJReportStatusById(HandlerCJReportParam handlerCJReportParam);
|
| | | }
|
| | | package com.ruoyi.doublePrevention.service.baseService; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.doublePrevention.entity.CJReport.PreventCJReportDangerInfo; |
| | | import com.ruoyi.doublePrevention.repository.param.HandlerCJReportParam; |
| | | import com.ruoyi.doublePrevention.repository.param.HandlerReportParam; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface PreventCJReportDangerInfoService extends IService<PreventCJReportDangerInfo> { |
| | | /** |
| | | * 插入隐患信息 |
| | | * */ |
| | | int insert(PreventCJReportDangerInfo danger); |
| | | // /** |
| | | // * 上报数据-隐患信息-分页查询 |
| | | // */ |
| | | // IPage<PreventCJReportDangerInfo> getReportDangerInfoPage(Page<Object> objectPage, PreventReportDangerInfoReqDTO queryReqDTO); |
| | | /** |
| | | * 上报数据-待上报数据查询 |
| | | */ |
| | | List<PreventCJReportDangerInfo> listReportDangerDate(); |
| | | /** |
| | | * 上报数据-待上报状态变更 |
| | | */ |
| | | void updateTaskReportStatus(HandlerReportParam handlerReportParam); |
| | | /** |
| | | * 上报数据-待上报状态变更-通过id |
| | | */ |
| | | void updateCJReportStatusById(HandlerCJReportParam handlerCJReportParam); |
| | | |
| | | List<PreventCJReportDangerInfo> getDangerListForCheckTask(); |
| | | } |