节点在线、应用在线、配置在线使用令牌查询
大石头 authored at 2021-12-16 19:49:30
477.00 B
Stardust
using System.ComponentModel;
using NewLife;
using NewLife.Cube;
using XCode;

namespace Stardust.Web.Areas.Configs;

[DisplayName("配置中心")]
[Menu(666, true, LastUpdate = "20240407")]
public class ConfigsArea : AreaBase
{
    public ConfigsArea() : base(nameof(ConfigsArea).TrimSuffix("Area")) { }

    static ConfigsArea() => RegisterArea<ConfigsArea>();
}

[ConfigsArea]
public class ConfigsEntityController<T> : WebEntityController<T> where T : Entity<T>, new()
{
}