namespace Lottomat.Application.Entity.LotteryNumberManage.ViewModel { /// /// 地方彩公共历史记录实体 /// public class DFCCommonHistoryLotteryViewEntity : BaseHistoryLotteryViewEntity { /// /// 总和特征字符串,形如:14|单|大 /// public string TheSum { get; set; } /// /// 号码奇偶特征字符串,形如:奇|奇|偶|奇|奇|偶|偶 /// public string Parity { get; set; } /// /// 奇偶比 /// public string ParityRatio { get; set; } } /// /// 地方彩华东15X5历史开奖记录 /// public class DFCHD15X5HistoryLotteryViewEntity : BaseHistoryLotteryViewEntity { /// /// 总和特征字符串,形如:14|单|大 /// public string TheSum { get; set; } /// /// 号码奇偶特征字符串,形如:奇|奇|偶|奇|奇|偶|偶 /// public string Parity { get; set; } /// /// 大小,形如:大|大|小|大|小 /// public string Size { get; set; } /// /// 大小比 /// public string SizeRatio { get; set; } /// /// 奇偶比 /// public string ParityRatio { get; set; } /// /// 012路个数比 /// public string RatioOf012 { get; set; } /// /// 三区比 /// public string ThreeZoneRatio { get; set; } /// /// 跨度 /// public string Span { get; set; } /// /// AC值 /// public string AC { get; set; } } }