- package model
-
- import (
- "time"
- )
-
- type TaVotingRecords struct {
- VoteId int `xorm:"not null pk autoincr INT(11)"`
- MemberId int `xorm:"INT(11)"`
- ActivityId int `xorm:"SMALLINT(6)"`
- VoteDate time.Time `xorm:"DATETIME"`
- NickName string `xorm:"VARCHAR(200)"`
- Avatar string `xorm:"TEXT"`
- Openid string `xorm:"VARCHAR(64)"`
- }
|