package org.jeecg.modules.dncFlow.service;
|
|
public interface StreamTarget {
|
void setProductId(String productId);
|
void setComponentId(String componentId);
|
void setPartsId(String partsId);
|
void setProcessId(String processId);
|
void setPsvId(String psvId);
|
void setStepId(String stepId);
|
void setDeviceTypeId(String deviceTypeId);
|
String getAttributionId();
|
}
|