12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.JavaModels
- {
- public partial class SysLog
- {
- public long Id { get; set; }
- public string LogType { get; set; }
- public string Title { get; set; }
- public string ServiceId { get; set; }
- public string CreateBy { get; set; }
- public string UpdateBy { get; set; }
- public DateTime? CreateTime { get; set; }
- public DateTime? UpdateTime { get; set; }
- public string RemoteAddr { get; set; }
- public string UserAgent { get; set; }
- public string RequestUri { get; set; }
- public string Method { get; set; }
- public string Params { get; set; }
- public long? Time { get; set; }
- public string DelFlag { get; set; }
- public string Exception { get; set; }
- }
- }
|