zhangherong
2025-04-27 e4319b4195a2c71b17f4aaa6685acd69191e931d
1
2
3
4
5
6
7
8
9
10
11
12
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();
}