1
zhang
3 天以前 38ce5bc7cd58a218f89d8f9ca6aacd7e14d6d93e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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);
 
}