mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
user add global set message recv opt
This commit is contained in:
parent
3a04780aec
commit
0c7d6022ca
@ -6,14 +6,15 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
type ApiUserInfo struct {
|
type ApiUserInfo struct {
|
||||||
UserID string `json:"userID" binding:"required,min=1,max=64"`
|
UserID string `json:"userID" binding:"required,min=1,max=64"`
|
||||||
Nickname string `json:"nickname" binding:"omitempty,min=1,max=64"`
|
Nickname string `json:"nickname" binding:"omitempty,min=1,max=64"`
|
||||||
FaceURL string `json:"faceURL" binding:"omitempty,max=1024"`
|
FaceURL string `json:"faceURL" binding:"omitempty,max=1024"`
|
||||||
Gender int32 `json:"gender" binding:"omitempty,oneof=0 1 2"`
|
Gender int32 `json:"gender" binding:"omitempty,oneof=0 1 2"`
|
||||||
PhoneNumber string `json:"phoneNumber" binding:"omitempty,max=32"`
|
PhoneNumber string `json:"phoneNumber" binding:"omitempty,max=32"`
|
||||||
Birth uint32 `json:"birth" binding:"omitempty"`
|
Birth uint32 `json:"birth" binding:"omitempty"`
|
||||||
Email string `json:"email" binding:"omitempty,max=64"`
|
Email string `json:"email" binding:"omitempty,max=64"`
|
||||||
Ex string `json:"ex" binding:"omitempty,max=1024"`
|
GlobalRecvMsgOpt int32 `json:"globalRecvMsgOpt" binding:"omitempty,oneof=0 1 2"`
|
||||||
|
Ex string `json:"ex" binding:"omitempty,max=1024"`
|
||||||
}
|
}
|
||||||
|
|
||||||
//type Conversation struct {
|
//type Conversation struct {
|
||||||
|
@ -148,16 +148,17 @@ type GroupRequest struct {
|
|||||||
//int32 AppMangerLevel = 10;
|
//int32 AppMangerLevel = 10;
|
||||||
//open_im_sdk.User == imdb.User
|
//open_im_sdk.User == imdb.User
|
||||||
type User struct {
|
type User struct {
|
||||||
UserID string `gorm:"column:user_id;primary_key;size:64"`
|
UserID string `gorm:"column:user_id;primary_key;size:64"`
|
||||||
Nickname string `gorm:"column:name;size:255"`
|
Nickname string `gorm:"column:name;size:255"`
|
||||||
FaceURL string `gorm:"column:face_url;size:255"`
|
FaceURL string `gorm:"column:face_url;size:255"`
|
||||||
Gender int32 `gorm:"column:gender"`
|
Gender int32 `gorm:"column:gender"`
|
||||||
PhoneNumber string `gorm:"column:phone_number;size:32"`
|
PhoneNumber string `gorm:"column:phone_number;size:32"`
|
||||||
Birth time.Time `gorm:"column:birth"`
|
Birth time.Time `gorm:"column:birth"`
|
||||||
Email string `gorm:"column:email;size:64"`
|
Email string `gorm:"column:email;size:64"`
|
||||||
Ex string `gorm:"column:ex;size:1024"`
|
Ex string `gorm:"column:ex;size:1024"`
|
||||||
CreateTime time.Time `gorm:"column:create_time"`
|
CreateTime time.Time `gorm:"column:create_time"`
|
||||||
AppMangerLevel int32 `gorm:"column:app_manger_level"`
|
AppMangerLevel int32 `gorm:"column:app_manger_level"`
|
||||||
|
GlobalRecvMsgOpt int32 `gorm:"column:global_recv_msg_opt"`
|
||||||
}
|
}
|
||||||
|
|
||||||
//message BlackInfo{
|
//message BlackInfo{
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -54,6 +54,7 @@ message UserInfo{
|
|||||||
string ex = 8;
|
string ex = 8;
|
||||||
uint32 createTime = 9;
|
uint32 createTime = 9;
|
||||||
int32 appMangerLevel = 10;
|
int32 appMangerLevel = 10;
|
||||||
|
int32 globalRecvMsgOpt = 11;
|
||||||
}
|
}
|
||||||
|
|
||||||
message FriendInfo{
|
message FriendInfo{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user