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