Files
rootandClaude Opus 5 8679200f41 Initial commit
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-09-15 13:57:10 +08:00

17 lines
387 B
Go

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"`
}