using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace CP.Web { /// /// 走势图数据查询基类(用于前端) /// public class TrendChartSearchField { /// /// 走势图ID /// public int ChartId { get; set; } /// /// 条数 小于等于0时无效 /// public int Record { get; set; } /// /// 起始期数 /// public int StartTerm { get; set; } /// /// 结束期数 /// public int EndTerm { get; set; } /// /// 走势图类型 /// public TrendChartType ChartType { get; set; } /// /// 年份查询 /// public int Year { get; set; } /// /// (组选)号码重复个数;1:组三;2:豹子; /// public int NumRepeat { get; set; } /// /// 星期几,默认0;1:星期日;2:星期一;3:星期二;4:星期三;5:星期四;6:星期五;7:星期六 /// public int Week { get; set; } } /// /// 走势图类型 /// public enum TrendChartType { /// /// 电脑走势图 /// PC = 1, /// /// 手机走势图 /// WAP = 2, /// /// 电视走势图 /// TV = 3 } }