package models //投票样式 //type VoteStyle struct { // Id int64 `json:"id"` // StyleName string `json:"style_name" description:"样式的名字"` // StyleImageUrl string `json:"style_image_url" description:"样式的图片地址"` // IsDelete bool `json:"is_delete" xorm:"default(0)" description:"是否删除"` // CreatedAt time.Time `json:"created_at" xorm:"created" description:"创建时间"` // UpdatedAt time.Time `json:"updated_at" xorm:"updated" description:"更新时间"` //}