using System; using System.Collections.Generic; using System.Text; namespace CP.Model { /// /// 走势图输出模型 /// /// public class ZstOutInfo { /// /// 走势图名称 /// public string name { get; set; } public int day { set; get; } public int pagesize { set; get; } public long notYetQi { set; get; } /// /// 走势图输出 /// public IList> zst = new List>(); /// /// 专门的期数字串输出 /// 目前仅使用于maxzst /// public string qistr { get; set; } /// /// 当前遗漏 /// public dynamic yl; /// /// 历史遗漏 /// public dynamic lsyl; /// /// 开始期数 /// public int sqi { get; set; } /// /// 结束期数 /// public int eqi { get; set; } /// /// 走势html代码 /// public string zsthtml { get; set; } } public class Zsfb { public int qi { set; get; } public string name { set; get; } public bool ishit { set; get; } public string value { set; get; } public string csscls { set; get; } /// /// 重号 /// public string isch { set; get; } /// /// 连号 /// public string islh { set; get; } /// /// 跳号 /// public string isth { set; get; } /// /// 折码 /// public string iszm { set; get; } /// /// 斜跳号 /// public string isxth { set; get; } /// /// 竖三码 /// public string isssm { set; get; } /// /// 重号数,为竖三走势图设计 /// public int chcount { set; get; } /// /// 是否为对子(对子、豹子) /// public int isdz { set; get; } } public class OItem { public bool isspecial { set; get; } public object value { set; get; } public string csscls { set; get; } public OItem() { this.csscls = string.Empty; } } }