curiomake.gen.go 1.4 KB

1234567891011121314151617181920212223242526272829
  1. // Code generated by gorm.io/gen. DO NOT EDIT.
  2. // Code generated by gorm.io/gen. DO NOT EDIT.
  3. // Code generated by gorm.io/gen. DO NOT EDIT.
  4. package model
  5. const TableNameCuriomake = "curiomake"
  6. // Curiomake mapped from table <curiomake>
  7. type Curiomake struct {
  8. Playerid int64 `gorm:"column:playerid;type:bigint(20);primaryKey" json:"playerid"`
  9. Silver int64 `gorm:"column:silver;type:bigint(20)" json:"silver"`
  10. TotalSilver int64 `gorm:"column:totalSilver;type:bigint(20)" json:"totalSilver"`
  11. Energy string `gorm:"column:energy;type:text" json:"energy"`
  12. CombineBox string `gorm:"column:combineBox;type:text" json:"combineBox"`
  13. CombineReward string `gorm:"column:combineReward;type:text" json:"combineReward"`
  14. OutBox string `gorm:"column:outBox;type:text" json:"outBox"`
  15. Curios string `gorm:"column:curios;type:text" json:"curios"`
  16. Shows string `gorm:"column:shows;type:text" json:"shows"`
  17. Event string `gorm:"column:event;type:text" json:"event"`
  18. Exchange string `gorm:"column:exchange;type:text" json:"exchange"`
  19. LastDrawBaseTick int64 `gorm:"column:lastDrawBaseTick;type:bigint(20)" json:"lastDrawBaseTick"`
  20. StartTick int64 `gorm:"column:startTick;type:bigint(20)" json:"startTick"`
  21. }
  22. // TableName Curiomake's table name
  23. func (*Curiomake) TableName() string {
  24. return TableNameCuriomake
  25. }