12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- #nullable disable
- namespace YLShipBuildLandMap.Entity
- {
- public partial class SysLog
- {
- public Guid LogId { get; set; }
- public int? LogType { get; set; }
- public string ClientIp { get; set; }
- public string LogUser { get; set; }
- public string LogTitle { get; set; }
- public string LogDescribe { get; set; }
- public string LogText { get; set; }
- public DateTime? LogTime { get; set; }
- }
- }
|