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.
|
|
// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package entity
import ( "github.com/gogf/gf/v2/os/gtime" )
// VotePoll is the golang structure for table vote_poll.
type VotePoll struct { Id int64 `json:"id" orm:"id" description:""` //
ArticleId int64 `json:"articleId" orm:"article_id" description:"文章/视频ID"` // 文章/视频ID
VoteTitle string `json:"voteTitle" orm:"vote_title" description:"投票活动标题"` // 投票活动标题
MultiOption int `json:"multiOption" orm:"multi_option" description:"是否开启多选:1多选,0不多选"` // 是否开启多选:1多选,0不多选
DeadlineTime *gtime.Time `json:"deadlineTime" orm:"deadline_time" description:"截止时间"` // 截止时间
CreateTime *gtime.Time `json:"createTime" orm:"create_time" description:""` //
Status int `json:"status" orm:"status" description:"投票活动状态:1:进行中,0已结束"` // 投票活动状态:1:进行中,0已结束
UpdateTime *gtime.Time `json:"updateTime" orm:"update_time" description:""` //
}
|