Files
zszq-trs/YLErpDAL/Modules/RiskEngine/Dto/QueryRiskApplicationReq.cs
T

14 lines
356 B
C#

using BaseOUDAL;
using YLErp.DBModels;
namespace YLErp.Modules.RiskEngine.Dto
{
public class QueryRiskApplicationReq : BaseSearchReq
{
public string Keyword { get; set; }
public RiskRuleStatus? Status { get; set; }
public RiskControlStrategy? Strategy { get; set; }
public string TriggerPoint { get; set; }
}
}