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

2 weeks ago
2 weeks ago
2 weeks ago
2 weeks ago
2 weeks ago
  1. // =================================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package do
  5. import (
  6. "github.com/gogf/gf/v2/frame/g"
  7. "github.com/gogf/gf/v2/os/gtime"
  8. )
  9. // VotePoll is the golang structure of table vote_poll for DAO operations like Where/Data.
  10. type VotePoll struct {
  11. g.Meta `orm:"table:vote_poll, do:true"`
  12. Id interface{} //
  13. ArticleId interface{} // 文章/视频ID
  14. VoteTitle interface{} // 投票活动标题
  15. MultiOption interface{} // 是否开启多选:1多选,0不多选
  16. DeadlineTime *gtime.Time // 截止时间
  17. CreateTime *gtime.Time //
  18. UpdateTime *gtime.Time //
  19. Status interface{} // 投票活动状态:1:进行中,0已结束
  20. }