mirror of
https://github.com/nprasad2077/NBA_Go.git
synced 2026-09-22 14:05:13 +00:00
backend functioning. Player models init
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
package models
|
||||
|
||||
import "gorm.io/gorm"
|
||||
|
||||
type PlayerStat struct {
|
||||
gorm.Model
|
||||
ExternalID int `json:"id"`
|
||||
PlayerID string `gorm:"not null;uniqueIndex:idx_player_season_team" json:"playerId"`
|
||||
PlayerName string `json:"playerName"`
|
||||
Position string `json:"position"`
|
||||
Age int `json:"age"`
|
||||
Games int `json:"games"`
|
||||
MinutesPlayed int `json:"minutesPlayed"`
|
||||
PER float64 `json:"per"`
|
||||
TSPercent float64 `json:"tsPercent"`
|
||||
ThreePAR float64 `json:"threePAR"`
|
||||
FTR float64 `json:"ftr"`
|
||||
OffensiveRBPercent float64 `json:"offensiveRBPercent"`
|
||||
DefensiveRBPercent float64 `json:"defensiveRBPercent"`
|
||||
TotalRBPercent float64 `json:"totalRBPercent"`
|
||||
AssistPercent float64 `json:"assistPercent"`
|
||||
StealPercent float64 `json:"stealPercent"`
|
||||
BlockPercent float64 `json:"blockPercent"`
|
||||
TurnoverPercent float64 `json:"turnoverPercent"`
|
||||
UsagePercent float64 `json:"usagePercent"`
|
||||
OffensiveWS float64 `json:"offensiveWS"`
|
||||
DefensiveWS float64 `json:"defensiveWS"`
|
||||
WinShares float64 `json:"winShares"`
|
||||
WinSharesPer float64 `json:"winSharesPer"`
|
||||
OffensiveBox float64 `json:"offensiveBox"`
|
||||
DefensiveBox float64 `json:"defensiveBox"`
|
||||
Box float64 `json:"box"`
|
||||
VORP float64 `json:"vorp"`
|
||||
Team string `gorm:"not null;uniqueIndex:idx_player_season_team" json:"team"`
|
||||
Season int `gorm:"not null;uniqueIndex:idx_player_season_team" json:"season"`
|
||||
}
|
||||
Reference in New Issue
Block a user