|
|
|
@ -6,14 +6,15 @@ import (
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type ApiUserInfo struct {
|
|
|
|
|
UserID string `json:"userID" binding:"required,min=1,max=64"`
|
|
|
|
|
Nickname string `json:"nickname" binding:"omitempty,min=1,max=64"`
|
|
|
|
|
FaceURL string `json:"faceURL" binding:"omitempty,max=1024"`
|
|
|
|
|
Gender int32 `json:"gender" binding:"omitempty,oneof=0 1 2"`
|
|
|
|
|
PhoneNumber string `json:"phoneNumber" binding:"omitempty,max=32"`
|
|
|
|
|
Birth uint32 `json:"birth" binding:"omitempty"`
|
|
|
|
|
Email string `json:"email" binding:"omitempty,max=64"`
|
|
|
|
|
Ex string `json:"ex" binding:"omitempty,max=1024"`
|
|
|
|
|
UserID string `json:"userID" binding:"required,min=1,max=64"`
|
|
|
|
|
Nickname string `json:"nickname" binding:"omitempty,min=1,max=64"`
|
|
|
|
|
FaceURL string `json:"faceURL" binding:"omitempty,max=1024"`
|
|
|
|
|
Gender int32 `json:"gender" binding:"omitempty,oneof=0 1 2"`
|
|
|
|
|
PhoneNumber string `json:"phoneNumber" binding:"omitempty,max=32"`
|
|
|
|
|
Birth uint32 `json:"birth" binding:"omitempty"`
|
|
|
|
|
Email string `json:"email" binding:"omitempty,max=64"`
|
|
|
|
|
GlobalRecvMsgOpt int32 `json:"globalRecvMsgOpt" binding:"omitempty,oneof=0 1 2"`
|
|
|
|
|
Ex string `json:"ex" binding:"omitempty,max=1024"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//type Conversation struct {
|
|
|
|
|