SysLogDto.cs 711 B

12345678910111213141516171819202122
  1. using Abp.AutoMapper;
  2. using VberZero.AppService.Base.Dto;
  3. using VberZero.BaseSystem;
  4. namespace VberZero.AppService.AuditLogs.Dto
  5. {
  6. [AutoMapFrom(typeof(AuditLog))]
  7. public class SysLogDto : VzEntityDto<long>
  8. {
  9. public long? UserId { get; set; }
  10. public string UserName { get; set; }
  11. public string ServiceName { get; set; }
  12. public string MethodName { get; set; }
  13. public string Parameters { get; set; }
  14. public DateTime ExecutionTime { get; set; }
  15. public int ExecutionDuration { get; set; }
  16. public string ClientIpAddress { get; set; }
  17. public string ClientName { get; set; }
  18. public string BrowserInfo { get; set; }
  19. }
  20. }