1
zhang
4 天以前 ccc7db768baea9df601574a9e2afd52a26a8577d
1
2
3
4
5
6
7
8
9
10
11
12
package com.zy.acs.conveyor.core.operation;
 
 
import com.zy.acs.conveyor.core.enums.ConveyorStateType;
import com.zy.acs.conveyor.core.properties.CtuOperationConfig;
 
public interface OperationHandler {
 
    ConveyorStateType getType();
 
    void execute(CtuOperationConfig config);
}