互动
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.

13 lines
639 B

5 years ago
  1. package models
  2. //
  3. ////投票历史表
  4. //type VoteHistory struct {
  5. // Id int64 `json:"id"`
  6. // VoteRuleId int64 `json:"vote_rule_id" description:"投票规则的id"`
  7. // UserId int64 `json:"user_id" description:"用户id"`
  8. // VoteRuleLadderId int64 `json:"vote_rule_ladder_id" description:"投票规则阶梯id"`
  9. // IsDelete bool `json:"is_delete" xorm:"default(0)" description:"是否删除"`
  10. // CreatedAt time.Time `json:"created_at" xorm:"created" description:"创建时间"`
  11. // UpdatedAt time.Time `json:"updated_at" xorm:"updated" description:"更新时间"`
  12. //}