WcsService.java
381 Bytes
package com.huaheng.api.wcs.service;
import com.huaheng.api.wcs.domain.WcsTask;
import com.huaheng.framework.web.domain.AjaxResult;
import org.springframework.web.bind.annotation.RequestBody;
import java.util.List;
import java.util.Map;
public interface WcsService {
AjaxResult innerBack(WcsTask wcsTask);
AjaxResult calculateWeight(String taskNo, String weight);
}