示例#1
0
 public FailLogEntity(SysLogEntity log)
 {
     _ywbh    = log.ywbh;
     _otherid = log.otherID;
     _status  = log.status;
     _msg     = log.msg;
 }
示例#2
0
 /// <summary>
 /// 添加日志
 /// </summary>
 /// <param name="log"></param>
 public void Add(SysLogEntity log)
 {
     if (_loglist == null)
     {
         _loglist = new List <SysLogEntity>();
     }
     _loglist.Add(log);
 }