- 重命名 FormulaCondition → RuleCondition,删除 FormulaDefinition - ValidateConditionJson 直接反序列化为 List<RuleCondition>,移除 LogicOperator 校验 - 新增 RiskRuleSimpleItem DTO - 同步更新建表注释与种子数据
10 lines
218 B
C#
10 lines
218 B
C#
namespace YLErp.Modules.RiskEngine.Dto
|
|
{
|
|
public class RiskRuleSimpleItem
|
|
{
|
|
public long Id { get; set; }
|
|
public string RuleName { get; set; }
|
|
public string RuleText { get; set; }
|
|
}
|
|
}
|