You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

47 lines
1011 B

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
{
/// <summary>
/// 设备状态枚举
/// </summary>
public enum EquipmentState
{
/// <summary>
/// 未通过
/// </summary>
[Description("未通过")] Fail = 0,
/// <summary>
/// 审核中
/// </summary>
[Description("审核中")] InReview = 10,
/// <summary>
/// 出售中
/// </summary>
[Description("出售中")] Selling = 20,
/// <summary>
/// 已成交
/// </summary>
[Description("已成交")] Traded = 30,
/// <summary>
/// 已下架
/// </summary>
[Description("已下架")] Shelved = 99,
/// <summary>
/// 撤销审核
/// </summary>
[Description("撤销审核")] Revocation = 50
}
}