pang.jiabao
17 小时以前 15161de49e7f35e2fc926a20577905621f30554c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.zy.service;
 
import com.zy.entity.RcsReporterTask;
import com.zy.entity.RcsReturn;
import com.zy.entity.ReporterEqpt;
 
public interface RcsService {
 
    /**
     * 2.2.1任务执行回馈
     *
     * @param rcsReporterTask
     * @return
     */
    RcsReturn reporterTask(RcsReporterTask rcsReporterTask);
 
    /**
     * 请求外设接口-WCS 放货请求
     */
    RcsReturn reporterEqpt(ReporterEqpt param);
}