- 新增 RuleExpr 字段,支持结构化拼接和自由文本两种模式,二选一互斥 - 删除 RuleCode/FormulaText/ApplicationCode/SourceExpression/IsImplemented/VariableCode/TargetCode - 重命名 FormulaJson→ConditionJson, FormulaExpr→RuleExpr, ImplementationScript→VariableExpr, RuleDescription→RuleText - RuleId(bigint)→RuleIds(varchar) 多规则支持 - FormulaCondition: variableCode(string)→variableId(long), thresholdVariableCode→thresholdVariableId - 新增 44 条变量池 seed 数据 - 设计文档同步更新
17 lines
541 B
C#
17 lines
541 B
C#
using YLErp.DBModels;
|
|
|
|
namespace YLErp.Modules.RiskEngine.Dto
|
|
{
|
|
public class CreateRiskApplicationReq
|
|
{
|
|
public string RuleIds { get; set; }
|
|
public RiskControlStrategy ControlStrategy { get; set; }
|
|
public string TriggerPoints { get; set; }
|
|
public string ScopeAssetBookIds { get; set; }
|
|
public string ScopeClientIds { get; set; }
|
|
public string ScopeUnderlyingTypes { get; set; }
|
|
public string ScopeTradeTypes { get; set; }
|
|
public bool ScopeIsGlobal { get; set; }
|
|
}
|
|
}
|