using System; using System.Collections.Generic; using Lottomat.Application.Code; namespace Lottomat.Application.Entity.LotteryNumberManage.ViewModel { /// /// 获取首页展示详细开奖信息的彩种 /// public class HomeLotteryListViewEntity { /// /// /// public int Id { get; set; } /// /// /// public int Cid { get; set; } /// /// 类型码 /// public string TypeCode { get; set; } /// /// 枚举码 /// public string EnumCode { get; set; } /// /// 彩票名称 /// public string LotteryName { get; set; } /// /// 当前期数 /// public string CurrentTerm { get; set; } /// /// 当天总共期数 /// //public int CurrentTotalTerm { get; set; } /// /// 每周那几天开奖 /// //public string[] OpenThePrizeOnTheDayOfTheWeek { get; set; } /// /// 每天开始开奖时间 /// //public string StartThePrizeTimeEveryDay { get; set; } /// /// 当前开奖时间 /// public string CurrentOpenTime { get; set; } /// /// 下一次开奖时间 /// public string NextOpenTime { get; set; } /// /// 服务器当前时间 /// public string ServerTime { get; set; } /// /// 开奖间隔时间,单位:分钟 /// //public int Interval { get; set; } /// /// 开奖频率 /// public string KJRate { get; set; } /// /// 开奖号列表 /// public List LotteryBallItems { get; set; } /// /// 开奖详情三要素->Keywords /// public string Keywords { get; set; } /// /// 开奖详情三要素->Description /// public string Desc { get; set; } /// /// 开奖详情 /// public string Spare { get; set; } ///// ///// 开奖详情 ///// //public LikeFCSSQKaiJiangDetailEntity KaiJiangDetailItem { get; set; } } /// /// 开奖号 /// public class LotteryBallItem { /// /// 开奖号 /// public string OpenCode { get; set; } /// /// 球类型 /// public LotteryBallType BallType { get; set; } } }