SysLog.cs 645 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using Newtonsoft.Json;
  4. namespace YZXYH.Repository.Models
  5. {
  6. [Serializable]
  7. public partial class SysLog
  8. {
  9. public string Id { get; set; }
  10. public string SysLogType { get; set; }
  11. public System.DateTime LogDate { get; set; }
  12. public string LogCommand { get; set; }
  13. public string LogMessage { get; set; }
  14. public string LogErrorMessage { get; set; }
  15. public string UserNo { get; set; }
  16. public string GraduationYear { get; set; }
  17. public string LogSite { get; set; }
  18. public string UserHostAddress { get; set; }
  19. }
  20. }