1234567891011121314151617181920 |
- // 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 TableNameBuyStamina = "buy_stamina"
- // BuyStamina mapped from table <buy_stamina>
- type BuyStamina struct {
- ID int64 `gorm:"column:id;type:bigint(20);primaryKey;autoIncrement:true" json:"id"`
- Playerid int64 `gorm:"column:playerid;type:bigint(20);index:IDX_buy_stamina_playerid,priority:1" json:"playerid"`
- Stamina string `gorm:"column:stamina;type:text" json:"stamina"`
- AllGoods string `gorm:"column:allGoods;type:text" json:"allGoods"`
- }
- // TableName BuyStamina's table name
- func (*BuyStamina) TableName() string {
- return TableNameBuyStamina
- }
|