12345678910111213141516171819202122 |
- // 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 TableNameZoneActivity = "zone_activity"
- // ZoneActivity mapped from table <zone_activity>
- type ZoneActivity struct {
- Playerid int64 `gorm:"column:playerid;type:bigint(20);primaryKey" json:"playerid"`
- Activtiys string `gorm:"column:activtiys;type:text" json:"activtiys"`
- BonusProperties string `gorm:"column:bonusProperties;type:text" json:"bonusProperties"`
- EndLess string `gorm:"column:endLess;type:text" json:"endLess"`
- VipBuff string `gorm:"column:vipBuff;type:text" json:"vipBuff"`
- Boss string `gorm:"column:boss;type:text" json:"boss"`
- }
- // TableName ZoneActivity's table name
- func (*ZoneActivity) TableName() string {
- return TableNameZoneActivity
- }
|