using System; namespace CB.Entity { /// /// 彩种表 By JNswins /// public class LotteryInfo : BaseEntity { /// /// 彩种ID /// public int Cid { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 最新期数 /// public string Term { get; set; } /// /// 所属区域 /// public int Aid { get; set; } /// /// 是否高频 /// public bool Frequency { get; set; } /// /// 状态 true:正常;false:禁用 /// public bool Status { get; set; } /// /// 排序 序号 /// public int OrderBy { get; set; } /// /// 时间 /// public DateTime Addtime { get; set; } } }