Junjie
7 小时以前 9ed9cd2e6f619c84732ae6715699b160c404684c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.zy.core.thread.impl.v5;
 
import com.zy.asrs.entity.DeviceConfig;
import com.zy.common.utils.RedisUtil;
import com.zy.core.model.CommandResponse;
import com.zy.core.model.command.StationCommand;
 
import java.util.function.Function;
 
public class StationV5SegmentExecutor extends StationMoveSegmentExecutor {
 
    public StationV5SegmentExecutor(DeviceConfig deviceConfig,
                                    RedisUtil redisUtil,
                                    Function<StationCommand, CommandResponse> commandSender) {
        super(deviceConfig, redisUtil, commandSender);
    }
}