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 AgvCommandService {
|
|
public Boolean accept(Motion motion) {
|
|
return Boolean.TRUE;
|
}
|
|
}
|