init commit
This commit is contained in:
29
20220330_Vote/Ewide.Core/Enum/CommonStatus.cs
Normal file
29
20220330_Vote/Ewide.Core/Enum/CommonStatus.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace Ewide.Core
|
||||
{
|
||||
/// <summary>
|
||||
/// 公共状态
|
||||
/// </summary>
|
||||
[Description("公共状态")]
|
||||
public enum CommonStatus
|
||||
{
|
||||
/// <summary>
|
||||
/// 正常
|
||||
/// </summary>
|
||||
[Description("正常")]
|
||||
ENABLE = 0,
|
||||
|
||||
/// <summary>
|
||||
/// 停用
|
||||
/// </summary>
|
||||
[Description("停用")]
|
||||
DISABLE = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 删除
|
||||
/// </summary>
|
||||
[Description("删除")]
|
||||
DELETED = 2
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user