zjj
2024-11-18 3487d99558b84e6d5e178b24eb75474f9c22eb51
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;
    }
 
}