|
|
@ -0,0 +1,19 @@ |
|
|
|
package com.iflytop.colortitration.app.service.module; |
|
|
|
|
|
|
|
import com.iflytop.colortitration.app.service.DeviceCommandService; |
|
|
|
import com.iflytop.colortitration.common.service.PositionService; |
|
|
|
import lombok.RequiredArgsConstructor; |
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
|
|
|
/** |
|
|
|
* 转运模块 |
|
|
|
*/ |
|
|
|
@Slf4j |
|
|
|
@Service |
|
|
|
@RequiredArgsConstructor |
|
|
|
public class TransferModuleService { |
|
|
|
private final DeviceCommandService deviceCommandService; |
|
|
|
private final PositionService positionService; |
|
|
|
|
|
|
|
} |