package models // ////投票历史表 //type VoteHistory struct { // Id int64 `json:"id"` // VoteRuleId int64 `json:"vote_rule_id" description:"投票规则的id"` // UserId int64 `json:"user_id" description:"用户id"` // VoteRuleLadderId int64 `json:"vote_rule_ladder_id" description:"投票规则阶梯id"` // 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:"更新时间"` //}