Files
shgx_tz_mes_backend_sync/server/ZR.Model/System/Enums/MenuStatus.cs
xiaowei.song 127c428a9e 油漆
2024-06-06 13:19:24 +08:00

16 lines
291 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System.ComponentModel;
namespace ZR.Model.System.Enums
{
/// <summary>
/// 菜单状态0正常 1停用
/// </summary>
public enum MenuStatus
{
[Description("正常")]
= 0,
[Description("停用")]
= 1,
}
}