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.
16 lines
469 B
16 lines
469 B
3 years ago
|
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; }
|
||
|
}
|