SysLog.cs 845 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.JavaModels
  4. {
  5. public partial class SysLog
  6. {
  7. public long Id { get; set; }
  8. public string LogType { get; set; }
  9. public string Title { get; set; }
  10. public string ServiceId { get; set; }
  11. public string CreateBy { get; set; }
  12. public string UpdateBy { get; set; }
  13. public DateTime? CreateTime { get; set; }
  14. public DateTime? UpdateTime { get; set; }
  15. public string RemoteAddr { get; set; }
  16. public string UserAgent { get; set; }
  17. public string RequestUri { get; set; }
  18. public string Method { get; set; }
  19. public string Params { get; set; }
  20. public long? Time { get; set; }
  21. public string DelFlag { get; set; }
  22. public string Exception { get; set; }
  23. }
  24. }