using System; namespace FCS.Models { //F_Games [Table("F_Games")] public class F_Games { /// /// 编码Int /// public int PK { get; set; } /// /// 编码Guid /// public string Id { get; set; } /// /// 球队编码 /// /// public string HomeTeamId { get; set; } /// /// 球队编码 /// /// public string VisitingTeamId { get; set; } /// /// 主队全场得分 /// /// public int? HomeTeamScore_All { get; set; } /// /// 客队全场得分 /// /// public int? VisitingTeamScore_All { get; set; } /// /// 主队半场得分 /// /// public int? HomeTeamScore_Half { get; set; } /// /// 客队半场得分 /// /// public int? VisitingTeamScore_Half { get; set; } /// /// 枚举(用以区分是哪个赛事) /// /// public string EventType { get; set; } /// /// 赛事编码 /// /// public string EventId { get; set; } /// /// 比赛时间 /// /// public DateTime? StartDateTime { get; set; } /// /// 场次 /// /// public string Session { get; set; } /// /// 分组编码 /// /// public string GroupingId { get; set; } /// /// 比赛状态(枚举)为开赛、开始、半场、完赛 /// /// public string Status { get; set; } /// /// 是否加时赛 /// /// public bool? IsOvertime { get; set; } /// /// 赛季 /// /// public string Season { get; set; } /// /// 创建时间 /// /// public DateTime? CreateDateTime { get; set; } /// /// 是否获取指数 /// /// public bool? IsObtain { get; set; } /// /// 热度 /// /// public int? Heat { get; set; } /// /// 备注 /// /// public string Remark { get; set; } } }