mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-17 16:56:38 +08:00
13 lines
220 B
Go
13 lines
220 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
type InviteCode struct {
|
|
Id uint `gorm:"primarykey;column:id"`
|
|
UserId uint
|
|
Code string
|
|
Hits int // 点击次数
|
|
RegNum int // 注册人数
|
|
CreatedAt time.Time
|
|
}
|