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

14 lines
779 B

5 years ago
  1. package models
  2. ////投票规则阶梯
  3. //type VoteRuleLadder struct {
  4. // Id int64 `json:"id"`
  5. // VoteRuleId int64 `json:"vote_rule_id" description:"投票规则的id"`
  6. // VoteNumber int64 `json:"vote_number" description:"投票的初始票数"`
  7. // VoteMember string `json:"vote_member" description:"被投票的人员名字"`
  8. // MemberImg string `json:"member_img" description:"被投票的人员图片"`
  9. // VoteTotal int64 `json:"vote_total" xorm:"-" description:"投票的总数"`
  10. // IsDelete bool `json:"is_delete" xorm:"default(0)" description:"是否删除"`
  11. // CreatedAt time.Time `json:"created_at" xorm:"created" description:"创建时间"`
  12. // UpdatedAt time.Time `json:"updated_at" xorm:"updated" description:"更新时间"`
  13. //}