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