| | |
| | | package com.ruoyi.doublePrevention.service.baseService;
|
| | |
|
| | | import com.baomidou.mybatisplus.extension.service.IService;
|
| | | import com.ruoyi.doublePrevention.entity.PreventRiskUnitUuid;
|
| | |
|
| | | public interface PreventRiskUnitUuidService {
|
| | | /**
|
| | | * 为设施设备清单附属表添加uuid
|
| | | * */
|
| | | int insertRiskUnitUuid(PreventRiskUnitUuid riskUnitUuid);
|
| | | /**
|
| | | * 通过id获取uuid
|
| | | * */
|
| | | PreventRiskUnitUuid getRiskUnitUuidById(Long id);
|
| | | /**
|
| | | * 修改
|
| | | * */
|
| | | int updateRiskUnitUuid(PreventRiskUnitUuid riskUnitUuid);
|
| | | /**
|
| | | * 删除附属表信息
|
| | | */
|
| | | int deleteRiskUnit(String[] riskListIds);
|
| | | }
|
| | | package com.ruoyi.doublePrevention.service.baseService; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.doublePrevention.entity.PreventRiskUnitUuid; |
| | | import com.ruoyi.doublePrevention.repository.param.HandlerReportParam; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface PreventRiskUnitUuidService { |
| | | /** |
| | | * 为设施设备清单附属表添加uuid |
| | | * */ |
| | | int insertRiskUnitUuid(PreventRiskUnitUuid riskUnitUuid); |
| | | /** |
| | | * 通过id获取uuid |
| | | * */ |
| | | PreventRiskUnitUuid getRiskUnitUuidById(Long id); |
| | | /** |
| | | * 修改 |
| | | * */ |
| | | int updateRiskUnitUuid(PreventRiskUnitUuid riskUnitUuid); |
| | | /** |
| | | * 删除附属表信息 |
| | | */ |
| | | int deleteRiskUnit(String[] riskListIds); |
| | | |
| | | |
| | | /** |
| | | * 检索需要上报的数据 |
| | | */ |
| | | List<PreventRiskUnitUuid> listRiskAnaUnit(); |
| | | /** |
| | | * 修改已经被检索读取完成数据的状态 |
| | | */ |
| | | int updateReportStatus(HandlerReportParam handlerReportParam); |
| | | |
| | | PreventRiskUnitUuid getRiskUnitUuidByUnitId(Long riskUnitId); |
| | | } |