| 1234567891011121314151617181920 |
- package typeManage
- type GameChannel struct {
- Id int64 `json:"id"`
- ChannelName string `json:"channelName"`
- ChannelDesc string `json:"channelDesc"`
- DisplaySequence int64 `json:"displaySequence"`
- GameCounts int64 `json:"gameCounts"`
- CreateTime LocalTime `gorm:"column:create_time;"json:"createTime"`
- UpdateTime LocalTime `gorm:"column:update_time;"json:"updateTime"`
- }
- //type GameChannel1 struct {
- // Id int64 `json:"id"`
- // ChannelName string `json:"channelName"`
- // ChannelDesc string `json:"channelDesc"`
- // DisplaySequence int64 `json:"displaySequence"`
- // GameCounts int64 `json:"gameCounts"`
- //}
|