SysLog.cs 510 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace YLShipBuildLandMap.Entity
  5. {
  6. public partial class SysLog
  7. {
  8. public Guid LogId { get; set; }
  9. public int? LogType { get; set; }
  10. public string ClientIp { get; set; }
  11. public string LogUser { get; set; }
  12. public string LogTitle { get; set; }
  13. public string LogDescribe { get; set; }
  14. public string LogText { get; set; }
  15. public DateTime? LogTime { get; set; }
  16. }
  17. }