RcsService.java
1.02 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package com.huaheng.api.rcs.service;
import com.huaheng.api.acs.domain.AgvTaskCS;
import com.huaheng.api.mes.domain.MesTask;
import com.huaheng.framework.web.domain.AjaxResult;
import com.huaheng.pc.config.container.domain.Container;
import com.huaheng.pc.receipt.receiptDetail.domain.ReceiptDetail;
/**
* @author xcq
* rcs实现方法
*/
public interface RcsService {
/**
* 修改任务状态实现方法
* @param agvTaskCS
* @return
*/
AjaxResult receiptTaskComplete(AgvTaskCS agvTaskCS);
/**
* 添加库存
* @param receiptDetail
* @param containerCode
* @param locationCode
* @param zoneCode
* @return
*/
AjaxResult addInventory(ReceiptDetail receiptDetail, String containerCode, String locationCode,String zoneCode);
/**
* 获取可用虚拟托盘
* @param containerType
* @return
*/
Container getContainer(String containerType);
/**
* 自动下发光腾AGV任务
*
*/
void autoCreateGTAgvTaskService();
}