| 123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using Newtonsoft.Json;
- namespace YZXYH.Repository.Models
- {
- [Serializable]
- public partial class SysLog
- {
- public string Id { get; set; }
- public string SysLogType { get; set; }
- public System.DateTime LogDate { get; set; }
- public string LogCommand { get; set; }
- public string LogMessage { get; set; }
- public string LogErrorMessage { get; set; }
- public string UserNo { get; set; }
- public string GraduationYear { get; set; }
- public string LogSite { get; set; }
- public string UserHostAddress { get; set; }
- }
- }
|