using System; using Volo.Abp.Application.Dtos; namespace Sanhe.Abp.Auditing.AuditLogs { public class AuditLogActionDto : ExtensibleEntityDto { /// /// 服务名称 /// public string ServiceName { get; set; } /// /// 方法名称 /// public string MethodName { get; set; } /// /// 参数列表 /// public string Parameters { get; set; } /// /// 调用时间 /// public DateTime ExecutionTime { get; set; } /// /// 响应时间(ms) /// public int ExecutionDuration { get; set; } } }