// ================================================================================= // Code generated by GoFrame CLI tool. DO NOT EDIT. // ================================================================================= package entity // GameCcdUrl is the golang structure for table game_ccd_url. type GameBazaar struct { Id uint64 `json:"_id" description:""` T string `json:"_t" description:""` Title string `json:"Title" description:""` Name string `json:"Name" description:""` Year int32 `json:"Year" description:""` Week int32 `json:"Week" description:""` Date string `json:"Date" description:""` Sale []int32 `json:"Sale" description:""` Purchase []int32 `json:"Purchase" description:""` Auction Auction `json:"Auction" description:""` HighPriceRecycle HighPriceRecycle `json:"HighPriceRecycle" description:""` } type Auction struct { Days []Days `json:"Days" description:""` NPCId int32 `json:"NPCId" description:""` } type Days struct { StartTime string `json:"StartTime" description:""` Interval int32 `json:"Interval" description:""` Day int32 `json:"Day" description:""` Session []Session `json:"Session" description:""` } type Session struct { Id int32 `json:"Id" description:""` Num int32 `json:"Num" description:""` CurrencyType int32 `json:"CurrencyType" description:""` Decrement int32 `json:"Decrement" description:""` Prices []int32 `json:"Prices" description:""` } type HighPriceRecycle struct { NPCId int32 `json:"NPCId" description:""` Id int32 `json:"Id" description:""` Num int32 `json:"Num" description:""` CurrencyType int32 `json:"CurrencyType" description:""` Prices []int32 `json:"Prices" description:""` }