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.
39 lines
914 B
39 lines
914 B
using System.ComponentModel;
|
|
|
|
namespace Znyc.Recruitment.Admin.Commons.Enums
|
|
{
|
|
/// <summary>
|
|
/// </summary>
|
|
public enum ProductStatusEnum
|
|
{
|
|
/// <summary>
|
|
/// 审核中
|
|
/// </summary>
|
|
[Description("未审核")] InReview = 0,
|
|
|
|
/// <summary>
|
|
/// 正在找
|
|
/// </summary>
|
|
[Description("正在找")] Finding = 1,
|
|
|
|
/// <summary>
|
|
/// 已找到
|
|
/// </summary>
|
|
[Description("已找到")] Found = 2,
|
|
|
|
/// <summary>
|
|
/// 审核通过(正在找/已找到)
|
|
/// </summary>
|
|
[Description("已找到")] Pass = 3,
|
|
|
|
/// <summary>
|
|
/// 审核失败
|
|
/// </summary>
|
|
[Description("审核失败")] Fail = 4,
|
|
|
|
/// <summary>
|
|
/// 已下架
|
|
/// </summary>
|
|
[Description("已下架")] Revocation = 5
|
|
}
|
|
}
|