using System.ComponentModel; namespace xTPLM.RFQ.Common.Enum { /// /// 账户状态 /// public enum AccountStatus { /// /// 创建中 /// [Description("创建中")] Opening = 0, /// /// 已启用 /// [Description("已启用")] Opened = 1, /// /// 停用中 /// [Description("停用中")] Closing = 2, /// /// 已停用 /// [Description("已停用")] Closed = 3 } }