mirror of
https://gitee.com/blackfox/geekai.git
synced 2024-12-05 13:47:47 +08:00
16 lines
414 B
Go
16 lines
414 B
Go
package vo
|
|
|
|
import (
|
|
"chatplus/core/types"
|
|
)
|
|
|
|
type InviteLog struct {
|
|
Id uint `json:"id"`
|
|
InviterId uint `json:"inviter_id"`
|
|
UserId uint `json:"user_id"`
|
|
Username string `json:"username"`
|
|
InviteCode string `json:"invite_code"`
|
|
Reward types.InviteReward `json:"reward"`
|
|
CreatedAt int64 `json:"created_at"`
|
|
}
|