You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
880 B
Java
36 lines
880 B
Java
2 years ago
|
package com.glxp.api.service.dev;
|
||
2 years ago
|
|
||
|
import com.glxp.api.common.res.BaseResponse;
|
||
2 years ago
|
import com.glxp.api.entity.dev.DeviceInspectSetEntity;
|
||
|
import com.glxp.api.req.dev.AddDeviceInspectSetRequest;
|
||
|
import com.glxp.api.res.dev.DeviceInspectSetResponse;
|
||
2 years ago
|
|
||
|
/**
|
||
|
* 设备巡检设置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);
|
||
|
|
||
|
}
|