mirror of
https://gitee.com/blackfox/geekai.git
synced 2024-12-05 13:47:47 +08:00
16 lines
265 B
Go
16 lines
265 B
Go
package model
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type InviteLog struct {
|
|
Id uint `gorm:"primarykey;column:id"`
|
|
InviterId uint
|
|
UserId uint
|
|
Username string
|
|
InviteCode string
|
|
Reward string `gorm:"column:reward_json"` // 邀请奖励
|
|
CreatedAt time.Time
|
|
}
|