AsService.java 851 Bytes
package com.huaheng.api.as.service;


import com.huaheng.framework.web.domain.AjaxResult;
import com.huaheng.pc.inventory.asmInventory.domain.AsmInventory;
import com.huaheng.pc.shipment.shipmentHeader.domain.ASDocumentDetail;

import java.util.List;

/**
 * 升降柜实现
 * @author xcq
 */
public interface AsService {
    /**
     * 升降柜反馈结果实现方法
     * @param asDocumentDetailList
     * @return
     */
     AjaxResult executionResultFeedbackService(List<ASDocumentDetail> asDocumentDetailList);

    /**
     * 出库执行结果
     * @param asDocumentDetailList
     * @return
     */
     AjaxResult shipmentExecutionResult(List<ASDocumentDetail> asDocumentDetailList);

    /**
     * 创建中转任务
     * @param asmInventory
     * @return
     */
     AjaxResult createTransitTask(AsmInventory asmInventory);
}