ERPService.java 901 Bytes
package com.huaheng.api.erp.service;

import com.huaheng.api.erp.domain.BoxInfo;
import com.huaheng.api.erp.domain.MaterialInfo;
import com.huaheng.framework.web.domain.AjaxResult;

import java.util.Date;
import java.util.List;

public interface ERPService  {

    AjaxResult innerReceipt(String containerCode, String position, String orderCode, String orderName,
<<<<<<< HEAD
                            List<BoxInfo> boxInfoList, String stack, int qc);
=======
                            List<BoxInfo> boxInfoList, String receiptCode, String stack, int qc);

    AjaxResult innerShipment(String shipmentCode, String shipmentType, String carType, String orderCode,
                             List<MaterialInfo> materialList, String remake, Date scheduleDate,
                             Integer havContainer,Integer paper,Integer pay,String stack);
>>>>>>> 6e593942 (历史库存记录 入库)
}