调整大菜单顺序
大石头 authored at 2024-04-07 09:18:53
296.00 B
Stardust
using System.ComponentModel;
using NewLife;
using NewLife.Cube;

namespace Stardust.Web.Areas.Platform;

[DisplayName("平台管理")]
[Menu(999, true, LastUpdate = "20240407")]
public class PlatformArea : AreaBase
{
    public PlatformArea() : base(nameof(PlatformArea).TrimEnd("Area")) { }
}