using System;
using System.Collections.Generic;
using System.Text;
using WMS.Entity.DataEntity;
namespace WMS.IBLL.IDataServer
{
public interface IDataBoxInfoServer
{
#region 导出箱码明细
///
/// 导出箱码明细
///
/// id
/// 物料号
/// 物料名称
/// 托盘号
/// 批次号
/// 箱码
/// 箱支状态
/// 检验标记
/// 零箱标记
/// 质量状态
///
List GetDataBoxInfoDaoChu(string id, string skuNo, string skuName, string palletNo, string lotNo, string boxNo, string status, string inspectMark, string bitBoxMark, string inspectStatus);
#endregion
}
}