- package model
-
- import (
- "time"
- )
-
- type TaVotingMemberPhotos struct {
- PhotoId int `xorm:"not null pk autoincr INT(11)"`
- MemberId int `xorm:"INT(11)"`
- ActivityId int `xorm:"SMALLINT(6)"`
- Photo string `xorm:"TEXT"`
- Type string `xorm:"VARCHAR(20)"`
- Desc string `xorm:"VARCHAR(300)"`
- CreateDate time.Time `xorm:"DATETIME"`
- Status int `xorm:"SMALLINT(6)"`
- }
|