using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace CB.Entity
{
class OldDataCenterInfo
{
}
///
/// 结果分表模型
///
[Serializable]
public class ShortResult
{
///
/// 分表ID
///
public int Rid { get; set; }
///
/// 分类ID
///
public int Cid { get; set; }
///
/// 期数
///
public int Qi { get; set; }
///
/// 预测数据
///
public string Source { get; set; }
///
/// 开奖号
///
public string Kjh { get; set; }
///
/// 处理结果
///
public string Result { get; set; }
///
/// 处理状态
///
public int Status { get; set; }
}
[Serializable]
public class mReport
{
///
/// 期数
///
public int Qi{get; set; }
///
/// 类型
///
public int Cid { get; set; }
///
/// 号码
///
public int Number { get; set; }
///
/// 热度
///
public int Record { get; set; }
///
/// 偏差
///
public double Deviation { get; set; }
///
/// 状态 0为未中奖,1中奖
///
public int Status { get; set; }
}
///
/// 历史结果集
///
[Serializable]
public class mResult
{
private int m_qi;
private int m_cid;
private string m_kjh;
private string m_source;
private bool m_status;
private string m_result;
public mResult()
{ }
public mResult(int qi, int cid, string kjh, bool status)
{
this.m_qi = qi;
this.m_cid = cid;
this.m_kjh = kjh;
this.m_status = status;
}
///
/// 期数
///
public int Qi
{
get { return m_qi; }
set { m_qi = value; }
}
///
/// 类型
///
public int Cid
{
get { return m_cid; }
set { m_cid = value; }
}
///
/// 开奖号
///
public string Kjh
{
get { return m_kjh; }
set { m_kjh = value; }
}
///
/// 源数据
///
public string Source
{
get { return m_source; }
set { m_source = value; }
}
///
/// 条件false/结果true
///
public bool Status
{
get { return m_status; }
set { m_status = value; }
}
///
/// 中奖结果
///
public string Result
{
get { return m_result; }
set { m_result = value; }
}
}
}