ta_voting_member_photos.go 420B

12345678910111213141516
  1. package model
  2. import (
  3. "time"
  4. )
  5. type TaVotingMemberPhotos struct {
  6. PhotoId int `xorm:"not null pk autoincr INT(11)"`
  7. MemberId int `xorm:"INT(11)"`
  8. ActivityId int `xorm:"SMALLINT(6)"`
  9. Photo string `xorm:"TEXT"`
  10. Type string `xorm:"VARCHAR(20)"`
  11. Desc string `xorm:"VARCHAR(300)"`
  12. CreateDate time.Time `xorm:"DATETIME"`
  13. Status int `xorm:"SMALLINT(6)"`
  14. }