Abp模块
abp
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

33 lines
819 B

using System;
using Volo.Abp.Application.Dtos;
using Volo.Abp.Auditing;
namespace Sanhe.Abp.Auditing.AuditLogs;
public class EntityChangeGetByPagedDto : PagedAndSortedResultRequestDto
{
/// <summary>
/// 审计日志Id
/// </summary>
public Guid? AuditLogId { get; set; }
/// <summary>
/// 开始时间
/// </summary>
public DateTime? StartTime { get; set; }
/// <summary>
/// 结束时间
/// </summary>
public DateTime? EndTime { get; set; }
/// <summary>
/// 变更类型
/// </summary>
public EntityChangeType? ChangeType { get; set; }
/// <summary>
/// 实体标识
/// </summary>
public string EntityId { get; set; }
/// <summary>
/// 实体类型
/// </summary>
public string EntityTypeFullName { get; set; }
}