using System; using BaseOUDAL; namespace YLErp.Modules.RiskEngine.Dto { public class QueryRiskAuditLogReq : BaseSearchReq { public string OperationType { get; set; } public string TargetType { get; set; } public DateTime? StartDate { get; set; } public DateTime? EndDate { get; set; } public string Keyword { get; set; } } }