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

namespace Stardust.Web.Areas.Monitors;

[DisplayName("监控中心")]
[Menu(444, true, LastUpdate = "20240407")]
public class MonitorsArea : AreaBase
{
    public MonitorsArea() : base(nameof(MonitorsArea).TrimSuffix("Area")) { }

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

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