namespace QYZH.InteractiveMagazine.Models.Settings; /// /// 勋章规则配置(可配置的目标表和字段) /// public class MedalRuleConfigSettings { /// /// 可用的目标表列表 /// public List Tables { get; set; } = new(); } /// /// 勋章规则目标表配置 /// public class MedalRuleTableConfig { /// /// 表名 /// public string TableName { get; set; } = string.Empty; /// /// 显示名称 /// public string DisplayName { get; set; } = string.Empty; /// /// 可用字段列表 /// public List Fields { get; set; } = new(); } /// /// 勋章规则字段配置 /// public class MedalRuleFieldConfig { /// /// 字段名 /// public string FieldName { get; set; } = string.Empty; /// /// 显示名称 /// public string DisplayName { get; set; } = string.Empty; }