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