using Models.Views; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Models { public class PageLottery { public string Name; public string Type; public List Data; } public class LotteryData { /// /// 彩票类型查询依据 /// public string LotteryType { get; set; } public string LotteryText { get; set; } public Boolean HasLotteryZS { get; set; } /// /// 彩票名字 /// public string LotteryName { get; set; } /// /// 期数 /// public string Term { get; set; } public string ID { get; set; } public string MenuName { get; set; } /// /// 开奖时间 /// public string OpenTime { get; set; } /// /// 红球数组 /// public string[] RedBall { get; set; } /// /// 篮球数组 /// public string[] BlueBall { get; set; } /// /// 球总数 /// public int BallCount { get; set; } /// /// 奖池 /// public string MoneyPond { get; set; } /// /// 投注总额 /// public string MoneyCount { get; set; } public List ResultsList { get; set; } public List Details { get; set; } /// /// 每周开奖时间格式:2,4,6 /// public string KJTime { get; set; } /// /// 每天开奖第一期小时数 /// public string StartHour { get; set; } /// /// 每天第一期开奖分钟数 /// public string StartMinute { get; set; } /// /// 开奖时间间隔分钟数(如果为按天开奖则为0) /// public string Interval { get; set; } /// /// 每天开奖期数(如果按天开奖则为0) /// public string TimesPerDay { get; set; } /// /// 每年跳过的节假日(20180215,20180216) /// public string SkipDate { get; set; } /// /// 下一期的开奖时间(在每次获取的时候更新) /// public string NextOpenTime { get; set; } /// /// 晚饭规则外键id /// public string RuleId { get; set; } /// /// 新添试机号(判断) /// public string ShiJiHao { get; set; } /// /// 新添开机号(判断) /// public string KaiJiHao { get; set; } /// /// 计算中间值 /// public int DaXiaoZJZ { get; set; } /// /// 去年有多少期 /// public int LastTermOfLastYear { get; set; } /// /// 走势图 /// public List Charts { get; set; } /// /// 排序码 /// public int SortCode { get; set; } } public class TrendChartIem { public string Text { get; set; } public string UrlStr { get; set; } } /// /// 彩票详情内容 /// public class LotteryDetail { public LotteryDetail() { } public LotteryDetail(string label, string value) { Label = label; Value = value; } public string Label { get; set; } public string Value { get; set; } } /// /// 开奖详情 /// public class LotteryResults { public LotteryResults() { } public LotteryResults(string levelName, int count, string money) { LevelName = levelName; Count = count; Money = money; } /// /// 级别 /// public string LevelName { get; set; } /// /// 金额 /// public string Money { get; set; } /// /// 数量 /// public int Count { get; set; } } }