namespace Lottomat.Application.Entity.LotteryNumberManage.ViewModel { /// /// 高频彩快乐12历史开奖记录 /// public class GPCKL12HistoryLotteryViewEntity : BaseHistoryLotteryViewEntity { /// /// 总和特征字符串,形如:14|单|大 /// public string TheSum { get; set; } /// /// 号码奇偶特征字符串,形如:奇|奇|偶|奇|奇|偶|偶 /// public string Parity { get; set; } /// /// 大小比 /// public string SizeRatio { get; set; } /// /// 奇偶比 /// public string ParityRatio { get; set; } /// /// 跨度 /// public string Span { get; set; } } }