message_system.go 1.8 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"
)

// MessageSystem 消息中心-系统消息
type MessageSystem struct {
	Id          int64                 // 唯一标识
	CompanyId   int64                 `json:"companyId"`         // 公司ID
	RecipientId int64                 `json:"recipientId"`       // 接收者ID
	Type        int                   `json:"type"`              // 系统分类(0待定、1业务正常通知、2业务异常通知)
	Title       string                `json:"title,omitempty"`   // 标题
	Content     string                `json:"content,omitempty"` // 内容
	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"`
}

func (m *MessageSystem) TableName() string {
	return "message_system"
}

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

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

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

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

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