using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Znyc.Cloudcar.Admin.Commons.Enums { /// /// 设备状态枚举 /// public enum EquipmentState { /// /// 未通过 /// [Description("未通过")] Fail = 0, /// /// 审核中 /// [Description("审核中")] InReview = 10, /// /// 出售中 /// [Description("出售中")] Selling = 20, /// /// 已成交 /// [Description("已成交")] Traded = 30, /// /// 已下架 /// [Description("已下架")] Shelved = 99, /// /// 撤销审核 /// [Description("撤销审核")] Revocation = 50 } }