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.
19 lines
1.1 KiB
19 lines
1.1 KiB
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// 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:"选项内容"` // 选项内容
|
|
OptionIndex int `json:"optionIndex" orm:"option_index" description:"第几个选项"` // 第几个选项
|
|
Status uint `json:"status" orm:"status" description:"选项状态:1选择,0不选择"` // 选项状态:1选择,0不选择
|
|
CreateTime *gtime.Time `json:"createTime" orm:"create_time" description:""` //
|
|
}
|