using System; using System.Collections.Generic; using System.Text; using Model.ModelDto.BllQualityDto; using WMS.Entity.BllQualityEntity; namespace WMS.IBLL.IBllQualityServer { public interface IQualityInspectServer { #region 质检信息录入 /// /// 获取质检物料信息 /// /// 质检信息实体模型 /// List GetBllQualityList(BllQualityInspect model); /// /// 添加物料质检信息 /// /// 质检信息实体模型 /// int InsertQuality(BllQualityInspect model); #endregion } }