ta_voting_records.go 372B

123456789101112131415
  1. package model
  2. import (
  3. "time"
  4. )
  5. type TaVotingRecords struct {
  6. VoteId int `xorm:"not null pk autoincr INT(11)"`
  7. MemberId int `xorm:"INT(11)"`
  8. ActivityId int `xorm:"SMALLINT(6)"`
  9. VoteDate time.Time `xorm:"DATETIME"`
  10. NickName string `xorm:"VARCHAR(200)"`
  11. Avatar string `xorm:"TEXT"`
  12. Openid string `xorm:"VARCHAR(64)"`
  13. }