using YLErp.DBModels; namespace YLErp.Modules.RiskEngine.Dto { /// /// 创建应用配置请求 /// public class CreateRiskApplicationReq { /// 关联规则 ID 列表(JSON 数组) public string RuleIds { get; set; } /// 应用说明 public string Description { get; set; } /// 风控策略 public RiskControlStrategy ControlStrategy { get; set; } /// 触发点列表(JSON 数组) public string TriggerPoints { get; set; } /// 适用范围-资产账簿 ID 列表 public string ScopeAssetBookIds { get; set; } /// 适用范围-客户 ID 列表 public string ScopeClientIds { get; set; } /// 适用范围-标的类型列表 public string ScopeUnderlyingTypes { get; set; } /// 适用范围-交易类型列表 public string ScopeTradeTypes { get; set; } /// 是否全局生效 public int ScopeIsGlobal { get; set; } } }