mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-21 02:58:05 +08:00
35 lines
661 B
C#
35 lines
661 B
C#
using System.ComponentModel;
|
|
|
|
namespace xTPLM.RFQ.Common.Enum
|
|
{
|
|
/// <summary>
|
|
/// 账户状态
|
|
/// </summary>
|
|
public enum AccountStatus
|
|
{
|
|
/// <summary>
|
|
/// 创建中
|
|
/// </summary>
|
|
[Description("创建中")]
|
|
Opening = 0,
|
|
|
|
/// <summary>
|
|
/// 已启用
|
|
/// </summary>
|
|
[Description("已启用")]
|
|
Opened = 1,
|
|
|
|
/// <summary>
|
|
/// 停用中
|
|
/// </summary>
|
|
[Description("停用中")]
|
|
Closing = 2,
|
|
|
|
/// <summary>
|
|
/// 已停用
|
|
/// </summary>
|
|
[Description("已停用")]
|
|
Closed = 3
|
|
}
|
|
}
|