@@ -0,0 +1,16 @@
|
||||
package proxymod
|
||||
|
||||
import "time"
|
||||
|
||||
// Invitation 邀请关系
|
||||
type InvitationQueryReq struct {
|
||||
UID *uint64 `form:"uid" json:"uid,omitempty" bson:"uid"` //邀请用户id
|
||||
}
|
||||
|
||||
// InvitationWebRes 查询结构返回体
|
||||
type InvitationWebRes struct {
|
||||
UID uint64 `json:"uid"`
|
||||
IID uint64 `json:"iid"`
|
||||
Lv int `json:"lv"`
|
||||
CreatedAt time.Time `json:"createdAt"`
|
||||
}
|
||||
Reference in New Issue
Block a user