SysLogDto.cs 725 B

12345678910111213141516171819202122
  1. using System;
  2. using Abp.Application.Services.Dto;
  3. using Abp.AutoMapper;
  4. namespace ShwasherSys.BaseSysInfo.AuditLog.Dto
  5. {
  6. [AutoMapTo(typeof(SysLog)), AutoMapFrom(typeof(SysLog))]
  7. public class SysLogDto : EntityDto<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. }