package com.glxp.api.service.dev; import com.glxp.api.common.res.BaseResponse; import com.glxp.api.entity.dev.DeviceInspectSetEntity; import com.glxp.api.req.dev.AddDeviceInspectSetRequest; import com.glxp.api.res.dev.DeviceInspectSetResponse; /** * 设备巡检设置Service */ public interface DeviceInspectSetService { /** * 查询设备巡检设置信息 * * @param code 资产编号 * @return */ DeviceInspectSetResponse findInspectSet(String code); /** * 更新设备巡检设置信息 * @param deviceInspectSetEntity * @return */ BaseResponse updateInspectSet(DeviceInspectSetEntity deviceInspectSetEntity); /** * 添加设备巡检设置 * @param addDeviceInspectSetRequest * @return */ BaseResponse addDeviceInspect(AddDeviceInspectSetRequest addDeviceInspectSetRequest); }