using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace WMS.Model.Base { /// /// 日志的记录 /// [Serializable] public class LogDataModel { /// /// 操作员编号 /// public string Operator_id { get; set; } /// /// 传入的sql语句 /// public string SqlStr { get; set; } private string content = string.Empty; /// /// 捕获异常操作内容 /// public string Content { get { return content; } set { content = value; } } /// /// 存储过程名称或函数名称 /// public string Function { get; set; } /// /// 存储过程参数 多个参数时用;隔开[lx;bh;mc] /// public string Parameter { get; set; } /// /// 操作日期 /// public string Ope_date { get; set; } /// /// ip地址 /// public string Ip { get; set; } /// /// 操作该语句的姓名 /// public string Operator { get; set; } } }