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

namespace Stardust.Web.Areas.Deployment;

[DisplayName("发布中心")]
[Menu(555, true, LastUpdate = "20260115")]
public class DeploymentArea : AreaBase
{
    public DeploymentArea() : base(nameof(DeploymentArea).TrimSuffix("Area")) { }

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

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