using System; using System.Collections.Generic; using YLErp.DBModels; namespace YLErp.Modules.RiskEngine.Dto { /// /// 风控规则详情响应 /// public class RiskRuleDetail { /// 规则 ID public long Id { get; set; } /// 规则名称 public string RuleName { get; set; } /// 规则描述文本 public string RuleText { get; set; } /// 结构化条件 JSON public string ConditionJson { get; set; } /// 规则执行表达式 public string RuleExpr { get; set; } /// 规则说明 public string Description { get; set; } /// 规则状态 public RiskRuleStatus Status { get; set; } /// 版本号 public int Version { get; set; } /// 创建人姓名 public string OptName { get; set; } /// 创建时间 public DateTime OptDate { get; set; } /// 最后更新人姓名 public string UpdateOptName { get; set; } /// 最后更新时间 public DateTime UpdateDate { get; set; } /// 关联应用列表 public List Applications { get; set; } } }