namespace WcsMain.WcsAttribute.AppConfig; /// /// 数据库配置键的映射 /// /// [AttributeUsage(AttributeTargets.Property)] public class ConfigKeyAttribute(string? keyName) : Attribute { /// /// 配置键名称 /// public string? KeyName { get; set; } = keyName; }