using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CP.Model { public class WF { /// /// PK /// public int pk { get; set; } /// /// ID /// public string id { get; set; } //彩种编码 public int cid { get; set; } /// /// 奖项ID /// public string prizeid { get; set; } /// /// 奖项名称 /// public string itemname { get; set; } /// /// 玩法介绍 /// public string gameplay { get; set; } /// /// 开奖规则 /// public string lotteryrule { get; set; } /// /// 开奖时间 /// public string lotterytime { get; set; } /// /// 中奖规则 /// public string winning { get; set; } /// /// 添加时间 /// public DateTime addtime { get; set; } /// /// 来自 /// public string sourcefrom { get; set; } /// /// 是否删除 /// public bool isdelete { get; set; } /// /// 备注 /// public string remark { get; set; } /// /// Logo地址 /// public string logo { get; set; } } }