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.
23 lines
862 B
23 lines
862 B
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package do
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// VotePoll is the golang structure of table vote_poll for DAO operations like Where/Data.
|
|
type VotePoll struct {
|
|
g.Meta `orm:"table:vote_poll, do:true"`
|
|
Id interface{} //
|
|
PostId interface{} // 文章/视频ID
|
|
VoteTitle interface{} // 投票活动标题
|
|
MultiOption interface{} // 是否开启多选:1多选,0不多选
|
|
DeadlineTime *gtime.Time // 截止时间
|
|
CreateTime *gtime.Time //
|
|
Status interface{} // 投票活动状态:1:进行中,0已结束
|
|
UpdateTime *gtime.Time //
|
|
}
|