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.
udi-wms-java/src/main/java/com/glxp/api/service/dev/DeviceInspectSetService.java

36 lines
880 B
Java

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);
}