18 lines
520 B
C#
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; }
|
|
}
|
|
}
|