zjj
2025-04-21 e29a9f245ff4e57a40bbab1c0acc3cbc31d3ac2b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.zy.asrs.wcs.core.kernel.command;
 
import com.zy.asrs.wcs.core.entity.Motion;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
 
/**
 * Created by vincent on 2023/10/23
 */
@Slf4j
@Service
public class CraneCommandService {
 
    public Boolean accept(Motion motion) {
 
        return Boolean.TRUE;
    }
 
}