...
|
...
|
@@ -7,8 +7,10 @@ import ( |
|
|
"gorm.io/plugin/soft_delete"
|
|
|
)
|
|
|
|
|
|
// MessageBusiness 消息中心业务
|
|
|
type MessageBusiness struct {
|
|
|
Id int64 // 唯一标识
|
|
|
CompanyId int64 `json:"companyId"` // 公司ID
|
|
|
Type int `json:"type"` // 分类 (1回复 2点赞 3被采纳)
|
|
|
OptType int `json:"optType"` // 操作类型(1针对文章、1针对评论、2针对圆桌)
|
|
|
TriggerId int64 `json:"triggerId"` // 触发者ID
|
...
|
...
|
|