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 QuarterlyCycleEnum
{
///
/// 本季度
///
[Description("本季度")]
ForTheQuarter = 1,
///
/// 上季度
///
[Description("上季度")]
PreviousQuarter = 2,
///
/// 前季度
///
[Description("前季度")]
LastQuarter = 3
}
}