Blame view

src/main/java/com/huaheng/api/wcs/service/overrideHandle/OverrideHandleService.java 330 Bytes
pengcheng authored
1
2
package com.huaheng.api.wcs.service.overrideHandle;
pengcheng authored
3
import com.huaheng.api.wcs.domain.TaskFinishDomain;
pengcheng authored
4
5
6
7
8
9
import com.huaheng.api.wcs.domain.WcsTask;
import com.huaheng.framework.web.domain.AjaxResult;

public interface OverrideHandleService {

    //重入处理
pengcheng authored
10
    AjaxResult OverrideHandle(TaskFinishDomain taskFinishDomain);
pengcheng authored
11
}