AsService.java
459 Bytes
package com.huaheng.api.as.service;
import com.huaheng.framework.web.domain.AjaxResult;
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);
}