// ================================================================================= // 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已结束 }