using System; namespace FCS.Models { //F_Compensate /// /// 赛季分析 /// [Table("F_SeasonAnalysis")] public class F_SeasonAnalysis { /// /// 编码Int /// public int PK { get; set; } /// /// 编码Guid /// public string Id { get; set; } /// /// 球队编码 /// /// public string TeamId { get; set; } /// /// 上赛季排名 /// /// public int? OldRanking { get; set; } /// /// 本赛季排名 /// /// public int? NowOldRanking { get; set; } /// /// 胜 /// /// public int? Win { get; set; } /// /// 平 /// /// public int? Draw { get; set; } /// /// 负 /// /// public int? Lose { get; set; } /// /// 分 /// /// public int? Number { get; set; } /// /// true:主对,false:客队 /// /// public bool? IsHome { get; set; } /// /// 赛季 /// /// public string Season { get; set; } /// /// 创建时间 /// /// public DateTime? CreateDateTime { get; set; } /// /// 备注 /// /// public string Remark { get; set; } } }