package model type NewcomersInviteRecord struct { Id int `json:"id" xorm:"not null pk autoincr INT(10)"` FromUid int `json:"from_uid" xorm:"not null default 0 comment('邀请人uid') INT(11)"` ToUid int `json:"to_uid" xorm:"not null default 0 comment('被邀请人uid') INT(11)"` QualificationRecord int `json:"qualification_record" xorm:"not null default 0 comment('获得资格记录表ID') INT(11)"` }