using CP.Model; using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace CP.Admin { #region p3基本模型 /// /// p3基本模型 /// public class Tcp3InfoModel { public int id { get; set; } /// /// 组三专门用的排名.. /// 组三列表上的z3rank是按顺利排序的 /// public int z3rank { get; set; } /// /// 期数 /// public int qi { get; set; } /// /// 百位号 /// public int n1 { get; set; } /// /// 十位号 /// public int n2 { get; set; } /// /// 个位号 /// public int n3 { get; set; } /// /// P5第4个号 /// public int n4 { get; set; } /// /// P5第5个号 /// public int n5 { get; set; } /// /// 和值 /// public int hz { get; set; } /// /// P5和值 /// public int hz5 { get; set; } /// /// 和尾 /// public int hw { get; set; } /// /// 星期几.. /// public int week { get; set; } /// /// 跨度 /// public int kd { get; set; } /// /// 试机号 /// public int sjh { get; set; } /// /// 开机号 /// public int kjih { get; set; } /// /// 开奖号 /// public int kjh { get; set; } /// /// 开奖号的组选形态. /// public int zxxt { get; set; } /// /// 在列表中的排名 /// public int rank { get; set; } /// /// 开奖日期 /// public DateTime date { get; set; } /// /// 开奖号 /// public string opencode { get; set; } /// /// 开奖详情 等级奖金 排五 /// public string winbonusp3 { get; set; } /// /// 开奖详情 等级奖金 排三 /// public string winbonusp5 { get; set; } /// /// 投注金额 /// public string tzmoney { get; set; } /// /// 排列5投注金额 /// public string p5_tzmoney { get; set; } // /// 试机号 /// public string sjh1 { get; set; } /// /// 开机号 /// public string kjih1 { get; set; } // /// 试机号 /// public List sjhlist1 { get; set; } /// /// 开机号 /// public List kjihlist1 { get; set; } #region 奖金设置 public string dj1 { get; set; } public string dj2 { get; set; } public string dj3 { get; set; } public string dj4 { get; set; } public string djnum1 { get; set; } public string djnum2 { get; set; } public string djnum3 { get; set; } public string djnum4 { get; set; } public string jj1 { get; set; } public string jj2 { get; set; } public string jj3 { get; set; } public string jj4 { get; set; } #endregion public List listp3 { get; set; } public List listp5 { get; set; } } #endregion }