30 lines
690 B
C#
30 lines
690 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using WMS.Model.Base;
|
|
|
|
namespace WMS.IData.IBase
|
|
{
|
|
/// <summary>
|
|
/// 错误日志的记录
|
|
/// </summary>
|
|
public interface ILogBaseData
|
|
{
|
|
|
|
#region 数据日志处理
|
|
/// <summary>
|
|
/// 数据操作日志的处理
|
|
/// </summary>
|
|
/// <param name="log">日志实体类</param>
|
|
string InsertLog(List<LogDataModel> log);
|
|
|
|
/// <summary>
|
|
/// 数据操作日志的处理
|
|
/// </summary>
|
|
/// <param name="log">日志实体类</param>
|
|
string InsertLog(LogDataModel log);
|
|
#endregion
|
|
}
|
|
}
|