1
zhang
2026-01-27 f681705ebffb690d25e0e2bea922617a01ea30af
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);
}