SysLogDto.cs 768 B

1234567891011121314151617181920212223
  1. using System;
  2. using Abp.Application.Services.Dto;
  3. using Abp.AutoMapper;
  4. using IwbZero.Authorization.Base.SystemInfo;
  5. namespace WePlatform.BaseSystem.AuditLog.Dto
  6. {
  7. [AutoMapTo(typeof(SysLog)), AutoMapFrom(typeof(SysLog))]
  8. public class SysLogDto : EntityDto<long>
  9. {
  10. public long? UserId { get; set; }
  11. public string UserName { get; set; }
  12. public string ServiceName { get; set; }
  13. public string MethodName { get; set; }
  14. public string Parameters { get; set; }
  15. public DateTime ExecutionTime { get; set; }
  16. public int ExecutionDuration { get; set; }
  17. public string ClientIpAddress { get; set; }
  18. public string ClientName { get; set; }
  19. public string BrowserInfo { get; set; }
  20. }
  21. }