message_business.go 2.3 KB
package models

import (
	"fmt"
	"gitlab.fjmaimaimai.com/allied-creation/sumifcc-discuss/cmd/discuss/interanl/pkg/domain"
	"gorm.io/gorm"
	"gorm.io/plugin/soft_delete"
	"time"
)

// MessageBusiness 消息中心业务
type MessageBusiness struct {
	Id              int64                 // 唯一标识
	Type            int                   `json:"type"`            // 分类   (1回复 2点赞 3被采纳)
	OptType         int                   `json:"optType"`         // 操作类型(1针对文章、2针对评论、3针对圆桌)
	CompanyId       int64                 `json:"companyId"`       // 操作人公司ID
	UserId          int64                 `json:"userId"`          // 操作人用户ID
	RecipientId     int64                 `json:"recipientId"`     // 接收人用户ID
	ArticleId       int64                 `json:"articleId"`       // 文章ID
	CommentId       int64                 `json:"commentId"`       // 评论来源ID
	CommentParentId int64                 `json:"commentParentId"` // 评论上级ID
	CreatedAt       int64                 `json:",omitempty"`
	UpdatedAt       int64                 `json:",omitempty"`
	DeletedAt       int64                 `json:",omitempty"`
	Version         int                   `json:",omitempty"`
	IsDel           soft_delete.DeletedAt `gorm:"softDelete:flag,DeletedAtField:DeletedAt"`
	//DiscussionId        int64                 `json:"discussionId,omitempty"`        // 圆桌ID
	//DiscussionOpinionId int64                 `json:"discussionOpinionId,omitempty"` // 观点ID
}

func (m *MessageBusiness) TableName() string {
	return "message_business"
}

func (m *MessageBusiness) BeforeCreate(tx *gorm.DB) (err error) {
	m.CreatedAt = time.Now().Unix()
	m.UpdatedAt = time.Now().Unix()
	return
}

func (m *MessageBusiness) BeforeUpdate(tx *gorm.DB) (err error) {
	m.UpdatedAt = time.Now().Unix()
	return
}

func (m *MessageBusiness) CacheKeyFunc() string {
	if m.Id == 0 {
		return ""
	}
	return fmt.Sprintf("%v:cache:%v:id:%v", domain.ProjectName, m.TableName(), m.Id)
}

func (m *MessageBusiness) CacheKeyFuncByObject(obj interface{}) string {
	if v, ok := obj.(*MessageBusiness); ok {
		return v.CacheKeyFunc()
	}
	return ""
}

func (m *MessageBusiness) CachePrimaryKeyFunc() string {
	if len("") == 0 {
		return ""
	}
	return fmt.Sprintf("%v:cache:%v:primarykey:%v", domain.ProjectName, m.TableName(), "key")
}