using System.ComponentModel;
namespace Znyc.Cloudcar.Admin.Commons.Enums
{
///
///
public enum ProductStatusEnum
{
///
/// 未通过
///
[Description("未通过")]
Fail = 0,
///
/// 审核中
///
[Description("审核中")]
Review = 10,
///
/// 出售中
///
[Description("出售中")]
Sell = 20,
///
/// 已成交
///
[Description("已成交")]
Deal = 30,
///
/// 已下架
///
[Description("已下架")]
Cancel = 99,
}
}