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