123
zhang
9 天以前 0a37b816117828dfc216d00c17724900f4bb14e3
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);
}