using System; using System.Collections.Generic; using System.Linq; using System.Text; using WMS.Model.Base; namespace WMS.IData.IBase { /// /// 错误日志的记录 /// public interface ILogBaseData { #region 数据日志处理 /// /// 数据操作日志的处理 /// /// 日志实体类 string InsertLog(List log); /// /// 数据操作日志的处理 /// /// 日志实体类 string InsertLog(LogDataModel log); #endregion } }