gameChannel.go 706 B

1234567891011121314151617181920
  1. package typeManage
  2. type GameChannel struct {
  3. Id int64 `json:"id"`
  4. ChannelName string `json:"channelName"`
  5. ChannelDesc string `json:"channelDesc"`
  6. DisplaySequence int64 `json:"displaySequence"`
  7. GameCounts int64 `json:"gameCounts"`
  8. CreateTime LocalTime `gorm:"column:create_time;"json:"createTime"`
  9. UpdateTime LocalTime `gorm:"column:update_time;"json:"updateTime"`
  10. }
  11. //type GameChannel1 struct {
  12. // Id int64 `json:"id"`
  13. // ChannelName string `json:"channelName"`
  14. // ChannelDesc string `json:"channelDesc"`
  15. // DisplaySequence int64 `json:"displaySequence"`
  16. // GameCounts int64 `json:"gameCounts"`
  17. //}