using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace CB.Entity.Model { public class LotteryData { /// /// 彩票类型查询依据 /// public string LotteryType{ get; set; } /// /// 彩票名字 /// public string LotteryName { get; set; } /// /// 期数 /// public string Term { 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; } } /// /// 彩票详情内容 /// public class LotteryDetail { public string Label { get; set; } public string Value { get; set; } } /// /// 开奖详情 /// public class LotteryResults { /// /// 级别 /// public string LevelName { get; set; } /// /// 金额 /// public string Money { get; set; } /// /// 数量 /// public int Count { get; set; } /// /// 大小比 /// } }