mirror of
https://gitee.com/blackfox/geekai.git
synced 2024-12-04 21:27:39 +08:00
12 lines
295 B
Go
12 lines
295 B
Go
package vo
|
|
|
|
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"`
|
|
Remark string `json:"remark"`
|
|
CreatedAt int64 `json:"created_at"`
|
|
}
|