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? ControlStrategy { get; set; }
/// 触发点
public string TriggerPoint { get; set; }
/// 适用范围-客户 ID 列表
public string ScopeClientIds { get; set; }
/// 适用范围-标的类型列表
public string ScopeUnderlyingTypes { get; set; }
/// 适用范围-交易类型列表
public string ScopeTradeTypes { get; set; }
/// 适用范围-资产账簿 ID 列表
public string ScopeAssetBookIds { get; set; }
}
}