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.
27 lines
554 B
27 lines
554 B
2 years ago
|
using System.ComponentModel;
|
||
|
|
||
|
namespace Znyc.Recruitment.Admin.Commons.Enums
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 广告、活动状态
|
||
|
/// </summary>
|
||
|
public enum ActivityStatusEnum
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 未开始
|
||
|
/// </summary>
|
||
|
[Description("未开始")] NotStart = 0,
|
||
|
|
||
|
/// <summary>
|
||
|
/// 进行中
|
||
|
/// </summary>
|
||
|
[Description("进行中")] Ongoing = 1,
|
||
|
|
||
|
/// <summary>
|
||
|
/// 已结束
|
||
|
/// </summary>
|
||
|
[Description("已结束")] End = 2
|
||
|
|
||
|
}
|
||
|
}
|