Files
zszq-trs/YLErpDAL/Modules/RiskEngine/Dto/QueryRiskAuditLogReq.cs
T
2026-07-02 15:54:33 +08:00

18 lines
520 B
C#

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