1234567891011121314151617181920212223242526272829 |
- // 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 TableNameCuriomake = "curiomake"
- // Curiomake mapped from table <curiomake>
- type Curiomake struct {
- Playerid int64 `gorm:"column:playerid;type:bigint(20);primaryKey" json:"playerid"`
- Silver int64 `gorm:"column:silver;type:bigint(20)" json:"silver"`
- TotalSilver int64 `gorm:"column:totalSilver;type:bigint(20)" json:"totalSilver"`
- Energy string `gorm:"column:energy;type:text" json:"energy"`
- CombineBox string `gorm:"column:combineBox;type:text" json:"combineBox"`
- CombineReward string `gorm:"column:combineReward;type:text" json:"combineReward"`
- OutBox string `gorm:"column:outBox;type:text" json:"outBox"`
- Curios string `gorm:"column:curios;type:text" json:"curios"`
- Shows string `gorm:"column:shows;type:text" json:"shows"`
- Event string `gorm:"column:event;type:text" json:"event"`
- Exchange string `gorm:"column:exchange;type:text" json:"exchange"`
- LastDrawBaseTick int64 `gorm:"column:lastDrawBaseTick;type:bigint(20)" json:"lastDrawBaseTick"`
- StartTick int64 `gorm:"column:startTick;type:bigint(20)" json:"startTick"`
- }
- // TableName Curiomake's table name
- func (*Curiomake) TableName() string {
- return TableNameCuriomake
- }
|