You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
276 lines
12 KiB
276 lines
12 KiB
package mysql
|
|
|
|
//type Register struct {
|
|
// Account string `gorm:"column:account;primary_key;type:char(255)" json:"account"`
|
|
// Password string `gorm:"column:password;type:varchar(255)" json:"password"`
|
|
// Ex string `gorm:"column:ex;size:1024" json:"ex"`
|
|
// UserID string `gorm:"column:user_id;type:varchar(255)" json:"userID"`
|
|
// AreaCode string `gorm:"column:area_code;type:varchar(255)"`
|
|
// InvitationCode string `gorm:"column:invitation_code;type:varchar(255)"`
|
|
// RegisterIP string `gorm:"column:register_ip;type:varchar(255)"`
|
|
//}
|
|
|
|
//type Invitation struct {
|
|
// InvitationCode string `gorm:"column:invitation_code;primary_key;type:varchar(32)"`
|
|
// CreateTime time.Time `gorm:"column:create_time"`
|
|
// UserID string `gorm:"column:user_id;index:userID"`
|
|
// LastTime time.Time `gorm:"column:last_time"`
|
|
// Status int32 `gorm:"column:status"`
|
|
//}
|
|
|
|
// message FriendInfo{
|
|
// string OwnerUserID = 1;
|
|
// string Remark = 2;
|
|
// int64 CreateTime = 3;
|
|
// UserInfo FriendUser = 4;
|
|
// int32 AddSource = 5;
|
|
// string OperatorUserID = 6;
|
|
// string Ex = 7;
|
|
// }
|
|
// open_im_sdk.FriendInfo(FriendUser) != imdb.Friend(FriendUserID)
|
|
//type Friend struct {
|
|
// OwnerUserID string `gorm:"column:owner_user_id;primary_key;size:64"`
|
|
// FriendUserID string `gorm:"column:friend_user_id;primary_key;size:64"`
|
|
// Remark string `gorm:"column:remark;size:255"`
|
|
// CreateTime time.Time `gorm:"column:create_time"`
|
|
// AddSource int32 `gorm:"column:add_source"`
|
|
// OperatorUserID string `gorm:"column:operator_user_id;size:64"`
|
|
// Ex string `gorm:"column:ex;size:1024"`
|
|
//}
|
|
|
|
// message FriendRequest{
|
|
// string FromUserID = 1;
|
|
// string ToUserID = 2;
|
|
// int32 HandleResult = 3;
|
|
// string ReqMsg = 4;
|
|
// int64 CreateTime = 5;
|
|
// string HandlerUserID = 6;
|
|
// string HandleMsg = 7;
|
|
// int64 HandleTime = 8;
|
|
// string Ex = 9;
|
|
// }
|
|
// open_im_sdk.FriendRequest(nickname, farce url ...) != imdb.FriendRequest
|
|
//type FriendRequest struct {
|
|
// FromUserID string `gorm:"column:from_user_id;primary_key;size:64"`
|
|
// ToUserID string `gorm:"column:to_user_id;primary_key;size:64"`
|
|
// HandleResult int32 `gorm:"column:handle_result"`
|
|
// ReqMsg string `gorm:"column:req_msg;size:255"`
|
|
// CreateTime time.Time `gorm:"column:create_time"`
|
|
// HandlerUserID string `gorm:"column:handler_user_id;size:64"`
|
|
// HandleMsg string `gorm:"column:handle_msg;size:255"`
|
|
// HandleTime time.Time `gorm:"column:handle_time"`
|
|
// Ex string `gorm:"column:ex;size:1024"`
|
|
//}
|
|
//
|
|
//func (FriendRequest) TableName() string {
|
|
// return "friend_requests"
|
|
//}
|
|
|
|
// message GroupInfo{
|
|
// string GroupID = 1;
|
|
// string GroupName = 2;
|
|
// string Notification = 3;
|
|
// string Introduction = 4;
|
|
// string FaceUrl = 5;
|
|
// string OwnerUserID = 6;
|
|
// uint32 MemberCount = 8;
|
|
// int64 CreateTime = 7;
|
|
// string Ex = 9;
|
|
// int32 Status = 10;
|
|
// string CreatorUserID = 11;
|
|
// int32 GroupType = 12;
|
|
// }
|
|
//
|
|
// open_im_sdk.GroupInfo (OwnerUserID , MemberCount )> imdb.Group
|
|
//type Group struct {
|
|
// //`json:"operationID" binding:"required"`
|
|
// //`protobuf:"bytes,1,opt,name=GroupID" json:"GroupID,omitempty"` `json:"operationID" binding:"required"`
|
|
// GroupID string `gorm:"column:group_id;primary_key;size:64" json:"groupID" binding:"required"`
|
|
// GroupName string `gorm:"column:name;size:255" json:"groupName"`
|
|
// Notification string `gorm:"column:notification;size:255" json:"notification"`
|
|
// Introduction string `gorm:"column:introduction;size:255" json:"introduction"`
|
|
// FaceURL string `gorm:"column:face_url;size:255" json:"faceURL"`
|
|
// CreateTime time.Time `gorm:"column:create_time;index:create_time"`
|
|
// Ex string `gorm:"column:ex" json:"ex;size:1024" json:"ex"`
|
|
// Status int32 `gorm:"column:status"`
|
|
// CreatorUserID string `gorm:"column:creator_user_id;size:64"`
|
|
// GroupType int32 `gorm:"column:group_type"`
|
|
// NeedVerification int32 `gorm:"column:need_verification"`
|
|
// LookMemberInfo int32 `gorm:"column:look_member_info" json:"lookMemberInfo"`
|
|
// ApplyMemberFriend int32 `gorm:"column:apply_member_friend" json:"applyMemberFriend"`
|
|
// NotificationUpdateTime time.Time `gorm:"column:notification_update_time"`
|
|
// NotificationUserID string `gorm:"column:notification_user_id;size:64"`
|
|
// DB *gorm.DB `gorm:"-" json:"-"`
|
|
//}
|
|
|
|
// message GroupMemberFullInfo {
|
|
// string GroupID = 1 ;
|
|
// string UserID = 2 ;
|
|
// int32 roleLevel = 3;
|
|
// int64 JoinTime = 4;
|
|
// string NickName = 5;
|
|
// string FaceUrl = 6;
|
|
// int32 JoinSource = 8;
|
|
// string OperatorUserID = 9;
|
|
// string Ex = 10;
|
|
// int32 AppMangerLevel = 7; //if >0
|
|
// } open_im_sdk.GroupMemberFullInfo(AppMangerLevel) > imdb.GroupMember
|
|
//type GroupMember struct {
|
|
// GroupID string `gorm:"column:group_id;primary_key;size:64"`
|
|
// UserID string `gorm:"column:user_id;primary_key;size:64"`
|
|
// Nickname string `gorm:"column:nickname;size:255"`
|
|
// FaceURL string `gorm:"column:user_group_face_url;size:255"`
|
|
// RoleLevel int32 `gorm:"column:role_level"`
|
|
// JoinTime time.Time `gorm:"column:join_time"`
|
|
// JoinSource int32 `gorm:"column:join_source"`
|
|
// InviterUserID string `gorm:"column:inviter_user_id;size:64"`
|
|
// OperatorUserID string `gorm:"column:operator_user_id;size:64"`
|
|
// MuteEndTime time.Time `gorm:"column:mute_end_time"`
|
|
// Ex string `gorm:"column:ex;size:1024"`
|
|
//}
|
|
|
|
// message GroupRequest{
|
|
// string UserID = 1;
|
|
// string GroupID = 2;
|
|
// string HandleResult = 3;
|
|
// string ReqMsg = 4;
|
|
// string HandleMsg = 5;
|
|
// int64 ReqTime = 6;
|
|
// string HandleUserID = 7;
|
|
// int64 HandleTime = 8;
|
|
// string Ex = 9;
|
|
// }open_im_sdk.GroupRequest == imdb.GroupRequest
|
|
//type GroupRequest struct {
|
|
// UserID string `gorm:"column:user_id;primary_key;size:64"`
|
|
// GroupID string `gorm:"column:group_id;primary_key;size:64"`
|
|
// HandleResult int32 `gorm:"column:handle_result"`
|
|
// ReqMsg string `gorm:"column:req_msg;size:1024"`
|
|
// HandledMsg string `gorm:"column:handle_msg;size:1024"`
|
|
// ReqTime time.Time `gorm:"column:req_time"`
|
|
// HandleUserID string `gorm:"column:handle_user_id;size:64"`
|
|
// HandledTime time.Time `gorm:"column:handle_time"`
|
|
// JoinSource int32 `gorm:"column:join_source"`
|
|
// InviterUserID string `gorm:"column:inviter_user_id;size:64"`
|
|
// Ex string `gorm:"column:ex;size:1024"`
|
|
//}
|
|
|
|
// string UserID = 1;
|
|
// string Nickname = 2;
|
|
// string FaceUrl = 3;
|
|
// int32 Gender = 4;
|
|
// string PhoneNumber = 5;
|
|
// string Birth = 6;
|
|
// string Email = 7;
|
|
// string Ex = 8;
|
|
// string CreateIp = 9;
|
|
// int64 CreateTime = 10;
|
|
// int32 AppMangerLevel = 11;
|
|
// open_im_sdk.User == imdb.User
|
|
//type User struct {
|
|
// UserID string `gorm:"column:user_id;primary_key;size:64"`
|
|
// Nickname string `gorm:"column:name;size:255"`
|
|
// FaceURL string `gorm:"column:face_url;size:255"`
|
|
// Gender int32 `gorm:"column:gender"`
|
|
// PhoneNumber string `gorm:"column:phone_number;size:32"`
|
|
// Birth time.Time `gorm:"column:birth"`
|
|
// Email string `gorm:"column:email;size:64"`
|
|
// Ex string `gorm:"column:ex;size:1024"`
|
|
// CreateTime time.Time `gorm:"column:create_time;index:create_time"`
|
|
// AppMangerLevel int32 `gorm:"column:app_manger_level"`
|
|
// GlobalRecvMsgOpt int32 `gorm:"column:global_recv_msg_opt"`
|
|
//
|
|
// status int32 `gorm:"column:status"`
|
|
//}
|
|
|
|
//type UserIpRecord struct {
|
|
// UserID string `gorm:"column:user_id;primary_key;size:64"`
|
|
// CreateIp string `gorm:"column:create_ip;size:15"`
|
|
// LastLoginTime time.Time `gorm:"column:last_login_time"`
|
|
// LastLoginIp string `gorm:"column:last_login_ip;size:15"`
|
|
// LoginTimes int32 `gorm:"column:login_times"`
|
|
//}
|
|
//
|
|
//// ip limit login
|
|
//type IpLimit struct {
|
|
// Ip string `gorm:"column:ip;primary_key;size:15"`
|
|
// LimitRegister int32 `gorm:"column:limit_register;size:1"`
|
|
// LimitLogin int32 `gorm:"column:limit_login;size:1"`
|
|
// CreateTime time.Time `gorm:"column:create_time"`
|
|
// LimitTime time.Time `gorm:"column:limit_time"`
|
|
//}
|
|
//
|
|
//// ip login
|
|
//type UserIpLimit struct {
|
|
// UserID string `gorm:"column:user_id;primary_key;size:64"`
|
|
// Ip string `gorm:"column:ip;primary_key;size:15"`
|
|
// CreateTime time.Time `gorm:"column:create_time"`
|
|
//}
|
|
|
|
// message BlackInfo{
|
|
// string OwnerUserID = 1;
|
|
// int64 CreateTime = 2;
|
|
// PublicUserInfo BlackUserInfo = 4;
|
|
// int32 AddSource = 5;
|
|
// string OperatorUserID = 6;
|
|
// string Ex = 7;
|
|
// }
|
|
// open_im_sdk.BlackInfo(BlackUserInfo) != imdb.Black (BlockUserID)
|
|
//type Black struct {
|
|
// OwnerUserID string `gorm:"column:owner_user_id;primary_key;size:64"`
|
|
// BlockUserID string `gorm:"column:block_user_id;primary_key;size:64"`
|
|
// CreateTime time.Time `gorm:"column:create_time"`
|
|
// AddSource int32 `gorm:"column:add_source"`
|
|
// OperatorUserID string `gorm:"column:operator_user_id;size:64"`
|
|
// Ex string `gorm:"column:ex;size:1024"`
|
|
//}
|
|
|
|
//type ChatLog struct {
|
|
// ServerMsgID string `gorm:"column:server_msg_id;primary_key;type:char(64)" json:"serverMsgID"`
|
|
// ClientMsgID string `gorm:"column:client_msg_id;type:char(64)" json:"clientMsgID"`
|
|
// SendID string `gorm:"column:send_id;type:char(64);index:send_id,priority:2" json:"sendID"`
|
|
// RecvID string `gorm:"column:recv_id;type:char(64);index:recv_id,priority:2" json:"recvID"`
|
|
// SenderPlatformID int32 `gorm:"column:sender_platform_id" json:"senderPlatformID"`
|
|
// SenderNickname string `gorm:"column:sender_nick_name;type:varchar(255)" json:"senderNickname"`
|
|
// SenderFaceURL string `gorm:"column:sender_face_url;type:varchar(255);" json:"senderFaceURL"`
|
|
// SessionType int32 `gorm:"column:session_type;index:session_type,priority:2;index:session_type_alone" json:"sessionType"`
|
|
// MsgFrom int32 `gorm:"column:msg_from" json:"msgFrom"`
|
|
// ContentType int32 `gorm:"column:content_type;index:content_type,priority:2;index:content_type_alone" json:"contentType"`
|
|
// Content string `gorm:"column:content;type:varchar(3000)" json:"content"`
|
|
// Status int32 `gorm:"column:status" json:"status"`
|
|
// SendTime time.Time `gorm:"column:send_time;index:sendTime;index:content_type,priority:1;index:session_type,priority:1;index:recv_id,priority:1;index:send_id,priority:1" json:"sendTime"`
|
|
// CreateTime time.Time `gorm:"column:create_time" json:"createTime"`
|
|
// Ex string `gorm:"column:ex;type:varchar(1024)" json:"ex"`
|
|
//}
|
|
//
|
|
//func (ChatLog) TableName() string {
|
|
// return "chat_logs"
|
|
//}
|
|
|
|
//type BlackList struct {
|
|
// UserId string `gorm:"column:uid"`
|
|
// BeginDisableTime time.Time `gorm:"column:begin_disable_time"`
|
|
// EndDisableTime time.Time `gorm:"column:end_disable_time"`
|
|
//}
|
|
//type Conversation struct {
|
|
// OwnerUserID string `gorm:"column:owner_user_id;primary_key;type:char(128)" json:"OwnerUserID"`
|
|
// ConversationID string `gorm:"column:conversation_id;primary_key;type:char(128)" json:"conversationID"`
|
|
// ConversationType int32 `gorm:"column:conversation_type" json:"conversationType"`
|
|
// UserID string `gorm:"column:user_id;type:char(64)" json:"userID"`
|
|
// GroupID string `gorm:"column:group_id;type:char(128)" json:"groupID"`
|
|
// RecvMsgOpt int32 `gorm:"column:recv_msg_opt" json:"recvMsgOpt"`
|
|
// UnreadCount int32 `gorm:"column:unread_count" json:"unreadCount"`
|
|
// DraftTextTime int64 `gorm:"column:draft_text_time" json:"draftTextTime"`
|
|
// IsPinned bool `gorm:"column:is_pinned" json:"isPinned"`
|
|
// IsPrivateChat bool `gorm:"column:is_private_chat" json:"isPrivateChat"`
|
|
// BurnDuration int32 `gorm:"column:burn_duration;default:30" json:"burnDuration"`
|
|
// GroupAtType int32 `gorm:"column:group_at_type" json:"groupAtType"`
|
|
// IsNotInGroup bool `gorm:"column:is_not_in_group" json:"isNotInGroup"`
|
|
// UpdateUnreadCountTime int64 `gorm:"column:update_unread_count_time" json:"updateUnreadCountTime"`
|
|
// AttachedInfo string `gorm:"column:attached_info;type:varchar(1024)" json:"attachedInfo"`
|
|
// Ex string `gorm:"column:ex;type:varchar(1024)" json:"ex"`
|
|
//}
|
|
|
|
//func (Conversation) TableName() string {
|
|
// return "conversations"
|
|
//}
|