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.
41 lines
796 B
41 lines
796 B
2 years ago
|
using System.ComponentModel;
|
||
|
|
||
|
namespace Znyc.Cloudcar.Admin.Commons.Enums
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// </summary>
|
||
|
public enum ProductStatusEnum
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 未通过
|
||
|
/// </summary>
|
||
|
[Description("未通过")]
|
||
|
Fail = 0,
|
||
|
|
||
|
/// <summary>
|
||
|
/// 审核中
|
||
|
/// </summary>
|
||
|
[Description("审核中")]
|
||
|
Review = 10,
|
||
|
|
||
|
/// <summary>
|
||
|
/// 出售中
|
||
|
/// </summary>
|
||
|
[Description("出售中")]
|
||
|
Sell = 20,
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 已成交
|
||
|
/// </summary>
|
||
|
[Description("已成交")]
|
||
|
Deal = 30,
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 已下架
|
||
|
/// </summary>
|
||
|
[Description("已下架")]
|
||
|
Cancel = 99,
|
||
|
}
|
||
|
}
|