作者 郑周

1 修复BUG

@@ -52,7 +52,7 @@ type ( @@ -52,7 +52,7 @@ type (
52 MessageBusinessItem { 52 MessageBusinessItem {
53 Id int64 `json:"id"` 53 Id int64 `json:"id"`
54 Type int `json:"type"` // 分类 (1回复 2点赞 3被采纳) 54 Type int `json:"type"` // 分类 (1回复 2点赞 3被采纳)
55 - OptType int `json:"optType"` // 操作类型(1针对文章、1针对评论、2针对圆桌) 55 + OptType int `json:"optType"` // 操作类型(1针对文章、2针对评论、3针对圆桌)
56 CompanyId int64 `json:"companyId"` // 操作人公司ID 56 CompanyId int64 `json:"companyId"` // 操作人公司ID
57 UserId int64 `json:"userId"` // 操作人用户ID 57 UserId int64 `json:"userId"` // 操作人用户ID
58 RecipientId int64 `json:"recipientId"` // 接收者ID 58 RecipientId int64 `json:"recipientId"` // 接收者ID
@@ -278,7 +278,7 @@ type MessageBusinessResponse struct { @@ -278,7 +278,7 @@ type MessageBusinessResponse struct {
278 type MessageBusinessItem struct { 278 type MessageBusinessItem struct {
279 Id int64 `json:"id"` 279 Id int64 `json:"id"`
280 Type int `json:"type"` // 分类 (1回复 2点赞 3被采纳) 280 Type int `json:"type"` // 分类 (1回复 2点赞 3被采纳)
281 - OptType int `json:"optType"` // 操作类型(1针对文章、1针对评论、2针对圆桌) 281 + OptType int `json:"optType"` // 操作类型(1针对文章、2针对评论、3针对圆桌)
282 CompanyId int64 `json:"companyId"` // 操作人公司ID 282 CompanyId int64 `json:"companyId"` // 操作人公司ID
283 UserId int64 `json:"userId"` // 操作人用户ID 283 UserId int64 `json:"userId"` // 操作人用户ID
284 RecipientId int64 `json:"recipientId"` // 接收者ID 284 RecipientId int64 `json:"recipientId"` // 接收者ID
@@ -12,7 +12,7 @@ import ( @@ -12,7 +12,7 @@ import (
12 type MessageBusiness struct { 12 type MessageBusiness struct {
13 Id int64 // 唯一标识 13 Id int64 // 唯一标识
14 Type int `json:"type"` // 分类 (1回复 2点赞 3被采纳) 14 Type int `json:"type"` // 分类 (1回复 2点赞 3被采纳)
15 - OptType int `json:"optType"` // 操作类型(1针对文章、1针对评论、2针对圆桌) 15 + OptType int `json:"optType"` // 操作类型(1针对文章、2针对评论、3针对圆桌)
16 CompanyId int64 `json:"companyId"` // 操作人公司ID 16 CompanyId int64 `json:"companyId"` // 操作人公司ID
17 UserId int64 `json:"userId"` // 操作人用户ID 17 UserId int64 `json:"userId"` // 操作人用户ID
18 RecipientId int64 `json:"recipientId"` // 接收人用户ID 18 RecipientId int64 `json:"recipientId"` // 接收人用户ID
@@ -8,7 +8,7 @@ import ( @@ -8,7 +8,7 @@ import (
8 type MessageBusiness struct { 8 type MessageBusiness struct {
9 Id int64 // 唯一标识 9 Id int64 // 唯一标识
10 Type MsgBusinessType `json:"type"` // 分类 (1回复 2点赞 3被采纳) 10 Type MsgBusinessType `json:"type"` // 分类 (1回复 2点赞 3被采纳)
11 - OptType MsgBusinessOpt `json:"optType"` // 操作类型(1针对文章、1针对评论、2针对圆桌) 11 + OptType MsgBusinessOpt `json:"optType"` // 操作类型(1针对文章、2针对评论、3针对圆桌)
12 CompanyId int64 `json:"companyId"` // 操作人公司ID 12 CompanyId int64 `json:"companyId"` // 操作人公司ID
13 UserId int64 `json:"userId"` // 操作人用户ID 13 UserId int64 `json:"userId"` // 操作人用户ID
14 RecipientId int64 `json:"recipientId"` // 接收人用户ID 14 RecipientId int64 `json:"recipientId"` // 接收人用户ID