12345678910111213141516171819202122232425262728 |
- // 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
- import (
- "time"
- )
- const TableNameGuideLog = "guide_log"
- // GuideLog mapped from table <guide_log>
- type GuideLog struct {
- ID int64 `gorm:"column:id;primaryKey;autoIncrement:true" json:"id"`
- GuideID int32 `gorm:"column:guide_id" json:"guide_id"`
- StepID int32 `gorm:"column:step_id" json:"step_id"`
- PlayerID int64 `gorm:"column:player_id" json:"player_id"`
- IsNew int32 `gorm:"column:is_new" json:"is_new"`
- EventTime time.Time `gorm:"column:event_time" json:"event_time"`
- EventDay time.Time `gorm:"column:event_day" json:"event_day"`
- Channel string `gorm:"column:channel" json:"channel"`
- }
- // TableName GuideLog's table name
- func (*GuideLog) TableName() string {
- return TableNameGuideLog
- }
|