using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace APT.MS.Domain.Enums.BI
{
    public class BIEnums
    {
        /// 
        /// 查询条件 时间类型
        /// 
        public enum FilterTimeType
        {
            /// 
            /// 最近1周 1
            /// 
            [Description("最近1周")]
            LastWeek = 1,
            /// 
            /// 最近1月 5
            /// 
            [Description("最近1月")]
            LastMonth = 5,
            /// 
            /// 最近3月 10
            /// 
            [Description("最近3月")]
            LastThreeMonth = 10,
            /// 
            /// 最近半年 15
            /// 
            [Description("最近半年")]
            LastHalfYear = 15,
            /// 
            /// 最近1年 20
            /// 
            [Description("最近1年")]
            LastYear = 20,
        }
    }
}