mirror of
https://gitee.com/blackfox/geekai.git
synced 2024-12-05 05:37:41 +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
|
|
}
|