using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FCS.Models.Entity { [Table("B_Games")] public class B_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 EventId { get; set; } /// /// 比赛时间 /// public DateTime StartDateTime { 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 int Heat { get; set; } /// /// 备注 /// public string Remark { get; set; } } }