package gift_log import "time" type GiftLog struct { Id uint64 `xorm:"pk autoincr"` AdminId uint64 UserId uint64 Num int8 Created time.Time `xorm:"created"` }