You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
658 B
16 lines
658 B
4 months ago
|
// =================================================================================
|
||
|
// Code generated by GoFrame CLI tool. DO NOT EDIT.
|
||
|
// =================================================================================
|
||
|
|
||
|
package entity
|
||
|
|
||
|
// GameCdKey is the golang structure for table game_cd_key.
|
||
|
type GameCdKey struct {
|
||
|
Id int64 `json:"id" description:""`
|
||
|
Code string `json:"code" description:"兑换码"`
|
||
|
ConfigId int `json:"configId" description:""`
|
||
|
Used int64 `json:"used" description:""`
|
||
|
SeizeASeat int64 `json:"seizeASeat" description:""`
|
||
|
Time int64 `json:"time" description:""`
|
||
|
}
|