Blame view

src/main/java/com/huaheng/api/wcs/service/taskAssignService/TaskAssignService.java 604 Bytes
pengcheng authored
1
2
package com.huaheng.api.wcs.service.taskAssignService;
3
import com.huaheng.api.wcs.domain.WcsTask;
pengcheng authored
4
import com.huaheng.framework.web.domain.AjaxResult;
游杰 authored
5
import com.huaheng.pc.config.location.domain.Location;
pengcheng authored
6
7
8
9
10
11
12
13
14
15
16
17
import com.huaheng.pc.task.taskHeader.domain.TaskHeader;

/**
 * 任务下发接口Service
 * @author ricard
 * @date    2019/10/11
 *
 */
public interface TaskAssignService {

    //wms下发任务给wcs
    AjaxResult wcsTaskAssign(TaskHeader taskHeader);
18
19

    WcsTask switchTaskTypeToWcs(WcsTask wcsTask);
游杰 authored
20
21

    AjaxResult sendToWcs(TaskHeader taskHeader, int preTaskNo, Location location);
pengcheng authored
22
}