using System; using System.Collections.Generic; using Volo.Abp.Application.Dtos; using Volo.Abp.Auditing; namespace Sanhe.Abp.Auditing.AuditLogs { public class EntityChangeDto : ExtensibleEntityDto { /// /// 变更时间 /// public DateTime ChangeTime { get; set; } /// /// 变更类型 /// public EntityChangeType ChangeType { get; set; } /// /// 实体租户Id /// public Guid? EntityTenantId { get; set; } /// /// 实体标识 /// public string EntityId { get; set; } /// /// 实体类型 /// public string EntityTypeFullName { get; set; } /// /// 属性变更 /// public List PropertyChanges { get; set; } public EntityChangeDto() { PropertyChanges = new List(); } } }