@@ -42,6 +42,7 @@ type LocalFriend struct {
42
42
Birth uint32 `gorm:"column:birth" json:"birth"`
43
43
Email string `gorm:"column:email;type:varchar(64)" json:"email"`
44
44
Ex string `gorm:"column:ex;type:varchar(1024)" json:"ex"`
45
+ AttachedInfo string `gorm:"column:attached_info;type:varchar(1024)" json:"attachedInfo"`
45
46
}
46
47
47
48
//message FriendRequest{
@@ -74,6 +75,8 @@ type LocalFriendRequest struct {
74
75
HandleMsg string `gorm:"column:handle_msg;type:varchar(255)" json:"handleMsg"`
75
76
HandleTime uint32 `gorm:"column:handle_time" json:"handleTime"`
76
77
Ex string `gorm:"column:ex;type:varchar(1024)" json:"ex"`
78
+
79
+ AttachedInfo string `gorm:"column:attached_info;type:varchar(1024)" json:"attachedInfo"`
77
80
}
78
81
79
82
//message GroupInfo{
@@ -119,6 +122,7 @@ type LocalGroup struct {
119
122
OwnerUserID string `gorm:"column:owner_user_id;type:varchar(64)" json:"ownerUserID"`
120
123
MemberCount int32 `gorm:"column:member_count" json:"memberCount"`
121
124
Ex string `gorm:"column:ex;type:varchar(1024)" json:"ex"`
125
+ AttachedInfo string `gorm:"column:attached_info;type:varchar(1024)" json:"attachedInfo"`
122
126
}
123
127
124
128
//message GroupMemberFullInfo {
@@ -152,6 +156,7 @@ type LocalGroupMember struct {
152
156
JoinSource int32 `gorm:"column:join_source" json:"joinSource"`
153
157
OperatorUserID string `gorm:"column:operator_user_id;type:varchar(64)" json:"operatorUserID"`
154
158
Ex string `gorm:"column:ex;type:varchar(1024)" json:"ex"`
159
+ AttachedInfo string `gorm:"column:attached_info;type:varchar(1024)" json:"attachedInfo"`
155
160
}
156
161
157
162
//message GroupRequest{
@@ -190,6 +195,7 @@ type LocalGroupRequest struct {
190
195
HandleUserID string `gorm:"column:handle_user_id;type:varchar(64)" json:"handleUserID"`
191
196
HandledTime uint32 `gorm:"column:handle_time" json:"handledTime"`
192
197
Ex string `gorm:"column:ex;type:varchar(1024)" json:"ex"`
198
+ AttachedInfo string `gorm:"column:attached_info;type:varchar(1024)" json:"attachedInfo"`
193
199
}
194
200
195
201
//string UserID = 1;
@@ -214,6 +220,7 @@ type LocalUser struct {
214
220
CreateTime uint32 `gorm:"column:create_time" json:"createTime"`
215
221
AppMangerLevel int32 `gorm:"column:app_manger_level" json:"-"`
216
222
Ex string `gorm:"column:ex;type:varchar(1024)" json:"ex"`
223
+ AttachedInfo string `gorm:"column:attached_info;type:varchar(1024)" json:"attachedInfo"`
217
224
}
218
225
219
226
//message BlackInfo{
@@ -235,6 +242,7 @@ type LocalBlack struct {
235
242
AddSource int32 `gorm:"column:add_source" json:"addSource"`
236
243
OperatorUserID string `gorm:"column:operator_user_id;type:varchar(64)" json:"operatorUserID"`
237
244
Ex string `gorm:"column:ex;type:varchar(1024)" json:"ex"`
245
+ AttachedInfo string `gorm:"column:attached_info;type:varchar(1024)" json:"attachedInfo"`
238
246
}
239
247
240
248
type LocalSeqData struct {
0 commit comments