46 lines
922 B
C#
46 lines
922 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace CommercialApi
|
|
{
|
|
/// <summary>
|
|
/// 节日相关枚举
|
|
/// </summary>
|
|
public enum HolidayEnum
|
|
{
|
|
/// <summary>
|
|
/// 元旦
|
|
/// </summary>
|
|
元旦 = 1,
|
|
/// <summary>
|
|
/// 春运
|
|
/// </summary>
|
|
春运 = 2,
|
|
/// <summary>
|
|
/// 清明节
|
|
/// </summary>
|
|
清明节 = 3,
|
|
/// <summary>
|
|
/// 劳动节
|
|
/// </summary>
|
|
劳动节 = 4,
|
|
/// <summary>
|
|
/// 端午节
|
|
/// </summary>
|
|
端午节 = 5,
|
|
/// <summary>
|
|
/// 暑期
|
|
/// </summary>
|
|
暑期 = 6,
|
|
/// <summary>
|
|
/// 中秋节
|
|
/// </summary>
|
|
中秋节 = 7,
|
|
/// <summary>
|
|
/// 国庆节
|
|
/// </summary>
|
|
国庆节 = 8,
|
|
}
|
|
} |