mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-17 16:56:38 +08:00
16 lines
221 B
Go
16 lines
221 B
Go
package model
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type InviteLog struct {
|
|
Id uint `gorm:"primarykey;column:id"`
|
|
InviterId uint
|
|
UserId uint
|
|
Username string
|
|
InviteCode string
|
|
Remark string
|
|
CreatedAt time.Time
|
|
}
|