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.

18 lines
928 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 entity
  5. import (
  6. "github.com/gogf/gf/v2/os/gtime"
  7. )
  8. // VoteOption is the golang structure for table vote_option.
  9. type VoteOption struct {
  10. Id int64 `json:"id" orm:"id" description:""` //
  11. VoteId int64 `json:"voteId" orm:"vote_id" description:"投票活动ID"` // 投票活动ID
  12. OptionContent string `json:"optionContent" orm:"option_content" description:"选项内容"` // 选项内容
  13. Status uint `json:"status" orm:"status" description:"选项状态"` // 选项状态
  14. CreateTime *gtime.Time `json:"createTime" orm:"create_time" description:""` //
  15. }