Blame view

src/main/java/com/huaheng/api/wcs/service/emptyOutHandle/EmptyOutHandleService.java 258 Bytes
pengcheng authored
1
2
3
4
5
6
7
package com.huaheng.api.wcs.service.emptyOutHandle;

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

public interface EmptyOutHandleService {
    //空出处理
mahuandong authored
8
    AjaxResult EmptyOutHandle(String taskNo);
游杰 authored
9
pengcheng authored
10
}