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.
22 lines
880 B
22 lines
880 B
|
1 day ago
|
// =================================================================================
|
||
|
|
// Code generated by GoFrame CLI tool. DO NOT EDIT.
|
||
|
|
// =================================================================================
|
||
|
|
|
||
|
|
package entity
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/gogf/gf/v2/os/gtime"
|
||
|
|
)
|
||
|
|
|
||
|
|
// GameActivityTime is the golang structure for table game_activity_time.
|
||
|
|
type GameActivityTime struct {
|
||
|
|
Id int `json:"id" description:""`
|
||
|
|
PreviewTime *gtime.Time `json:"previewTime" description:""`
|
||
|
|
StartTime *gtime.Time `json:"startTime" description:""`
|
||
|
|
EndTime *gtime.Time `json:"endTime" description:""`
|
||
|
|
CloseTime *gtime.Time `json:"closeTime" description:""`
|
||
|
|
ServerId int `json:"serverId" description:""`
|
||
|
|
ConfigId int `json:"configId" description:""`
|
||
|
|
Remark string `json:"remark" description:""`
|
||
|
|
}
|