using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace VOL.Entity.Enum { /// /// 时间周期枚举 /// public enum CycleTimeEnum { /// /// 近一周 /// [Description("近一周")] InThePastWeek = 1, /// /// 近两周 /// [Description("近两周")] InThePastTwoWeeks = 2, /// /// 近一月 /// [Description("近一月")] InThePastMonth = 3, /// /// 近一年 /// [Description("近一年")] InThePastYear = 4 } }