using System; using Volo.Abp.Application.Dtos; using Volo.Abp.Auditing; namespace Sanhe.Abp.Auditing.AuditLogs; public class EntityChangeGetByPagedDto : PagedAndSortedResultRequestDto { public Guid? AuditLogId { get; set; } public DateTime? StartTime { get; set; } public DateTime? EndTime { get; set; } public EntityChangeType? ChangeType { get; set; } public string EntityId { get; set; } public string EntityTypeFullName { get; set; } }