using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; using WMS.Model.Base; namespace WMS.IData.IBase { public interface IPrintInfo { /// /// 获取打印信息 /// /// /// DataTable GetPrintInfo(PrintInfoModel model); /// /// 新增打印信息 /// /// void InsertPrintInfo(PrintInfoModel model); /// /// 修改打印信息 /// /// void UpdatePrintInfo(PrintInfoModel model); /// /// 删除明细 /// /// void DelPrintInfo(PrintInfoModel model); } }