using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FCS.Models.Entity { [Table("B_PlayersStatistics")] //篮球球员统计 public class B_PlayersStatistics { /// /// 编码Int /// public int PK { get; set; } /// /// 编码Guid /// public string Id { get; set; } /// /// 赛季 /// public string Season { get; set; } /// /// 赛事编码 /// public string EventId { get; set; } /// /// 分组编码 /// public string GroupingId { get; set; } /// /// 统计类型名称 /// public string StatisticTypeName { get; set; } /// /// 球员编码 /// public string PlayerId { get; set; } /// /// 球员名称 /// public string PlayerName { get; set; } /// /// 球队编码 /// public string TeamId { get; set; } /// /// 球队名称 /// public string TeamName { get; set; } /// /// 参赛数 /// public int Sum { get; set; } /// /// 总得分(篮板总数) /// public string TotalScore { get; set; } /// /// 平均得分(平均篮板) /// public string AvgScore { get; set; } /// /// 总投篮(投三分、罚球数、进攻篮板、助攻总数、盖帽总数、抢断总数、失误总数、犯规总数、得两双数、得三双数) /// public string TotalShooting { get; set; } /// /// 命中数(三分命中、罚球命中、防守篮板、平均 助攻、平均盖帽、平均抢断、平均失误、平均犯规、两双概率、三双概率) /// public string HitNumber { get; set; } /// /// 命中率 /// public string HitRate { get; set; } /// /// 排名 /// public int Sort { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 创建时间 /// public DateTime CreateDateTime { get; set; } } }