// ================================================================================= // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT. // ================================================================================= package entity import ( "github.com/gogf/gf/v2/os/gtime" ) // VoteRecords is the golang structure for table vote_records. type VoteRecords struct { Id uint `json:"id" orm:"id" description:""` // Jwcode string `json:"jwcode" orm:"jwcode" description:""` // VoteDate *gtime.Time `json:"voteDate" orm:"vote_date" description:""` // Time int `json:"time" orm:"time" description:""` // OptionsTitle string `json:"optionsTitle" orm:"options_title" description:""` // ActivityId int `json:"activityId" orm:"activity_id" description:"活动id"` // 活动id }