| 12345678910111213141516171819202122 |
- using Abp.AutoMapper;
- using VberZero.AppService.Base.Dto;
- using VberZero.BaseSystem;
- namespace VberZero.AppService.AuditLogs.Dto
- {
- [AutoMapFrom(typeof(AuditLog))]
- public class SysLogDto : VzEntityDto<long>
- {
- public long? UserId { get; set; }
- public string UserName { get; set; }
- public string ServiceName { get; set; }
- public string MethodName { get; set; }
- public string Parameters { get; set; }
- public DateTime ExecutionTime { get; set; }
- public int ExecutionDuration { get; set; }
- public string ClientIpAddress { get; set; }
- public string ClientName { get; set; }
- public string BrowserInfo { get; set; }
- }
- }
|