using System;
using Volo.Abp.Application.Dtos;
using Volo.Abp.Auditing;
namespace Sanhe.Abp.Auditing.AuditLogs;
public class EntityChangeGetByPagedDto : PagedAndSortedResultRequestDto
{
///
/// 审计日志Id
///
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; }
}