You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
370 B
C#
22 lines
370 B
C#
using System.ComponentModel;
|
|
|
|
namespace Myshipping.Core;
|
|
|
|
/// <summary>
|
|
/// 菜单权重
|
|
/// </summary>
|
|
public enum MenuWeight
|
|
{
|
|
/// <summary>
|
|
/// 系统权重
|
|
/// </summary>
|
|
[Description("系统权重")]
|
|
SUPER_ADMIN_WEIGHT = 1,
|
|
|
|
/// <summary>
|
|
/// 业务权重
|
|
/// </summary>
|
|
[Description("业务权重")]
|
|
DEFAULT_WEIGHT = 2
|
|
}
|