1
zhang
昨天 9d82e56ee05e2be1150b98da80b720b4f93f6afd
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);
}