package com.zy.asrs.service;
|
|
import com.zy.asrs.controller.vo.OpenBusSubmitParam;
|
|
/**
|
* 立体仓库WCS系统主流程业务接口
|
* Created by vincent on 2020/8/6
|
*/
|
public interface CtuMainService {
|
|
/**
|
* 检查站点
|
*
|
* @param staNo
|
* @return
|
*/
|
String checkStationStatus(Integer staNo);
|
|
/**
|
* 发送任务
|
*
|
* @param openBusSubmitParam
|
* @return
|
*/
|
boolean sendTask(OpenBusSubmitParam openBusSubmitParam);
|
|
}
|