Blame view

src/main/java/com/huaheng/api/wcs/service/taskFinish/TaskFinishService.java 282 Bytes
pengcheng authored
1
2
package com.huaheng.api.wcs.service.taskFinish;
pengcheng authored
3
import com.huaheng.api.wcs.domain.TaskFinishDomain;
pengcheng authored
4
5
6
7
8
import com.huaheng.framework.web.domain.AjaxResult;

public interface TaskFinishService {

    //任务完成
pengcheng authored
9
    AjaxResult completeTaskByWCS(TaskFinishDomain taskFinishDomain);
pengcheng authored
10
}