Blame view

src/main/java/com/huaheng/api/wcs/service/taskFinish/TaskFinishService.java 282 Bytes
mahuandong authored
1
2
3
4
5
6
7
8
9
10
package com.huaheng.api.wcs.service.taskFinish;

import com.huaheng.api.wcs.domain.TaskFinishDomain;
import com.huaheng.framework.web.domain.AjaxResult;

public interface TaskFinishService {

    //任务完成
    AjaxResult completeTaskByWCS(TaskFinishDomain taskFinishDomain);
}