// Code generated by gorm.io/gen. DO NOT EDIT. // Code generated by gorm.io/gen. DO NOT EDIT. // Code generated by gorm.io/gen. DO NOT EDIT. package model const TableNamePlayerPatrol = "player_patrol" // PlayerPatrol mapped from table type PlayerPatrol struct { Playerid int64 `gorm:"column:playerid;type:bigint(20);primaryKey" json:"playerid"` Level int32 `gorm:"column:level;type:int(11)" json:"level"` Materials string `gorm:"column:materials;type:text" json:"materials"` Equipments string `gorm:"column:equipments;type:text" json:"equipments"` CalcItems string `gorm:"column:calcItems;type:text" json:"calcItems"` StartTick int64 `gorm:"column:startTick;type:bigint(20)" json:"startTick"` TimeLen int64 `gorm:"column:timeLen;type:bigint(20)" json:"timeLen"` MaxTimeLen int64 `gorm:"column:maxTimeLen;type:bigint(20)" json:"maxTimeLen"` DayCount int32 `gorm:"column:dayCount;type:int(11)" json:"dayCount"` } // TableName PlayerPatrol's table name func (*PlayerPatrol) TableName() string { return TableNamePlayerPatrol }