// ================================================================================= // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT. // ================================================================================= package entity // VoteOption is the golang structure for table vote_option. type VoteOption struct { Id int64 `json:"id" orm:"id" description:""` // VoteId int64 `json:"voteId" orm:"vote_id" description:"投票活动ID"` // 投票活动ID OptionContent string `json:"optionContent" orm:"option_content" description:"选项内容"` // 选项内容 Status int `json:"status" orm:"status" description:"选项状态"` // 选项状态 }