user_subscribe.go 2.0 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"
)

type UserSubscribe struct {
	Id        int64                 `json:"id"`                                       // 唯一标识
	Type      int                   `json:"type" gorm:"type:int;"`                    // 分类(1评论回复 2获赞 3关注人更新)
	CompanyId int64                 `json:"companyId"`                                // 公司ID
	UserId    int64                 `json:"userId"`                                   // 用户ID
	Count     int                   `json:"count" gorm:"type:int;"`                   // 订阅次数
	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 *UserSubscribe) TableName() string {
	return "user_subscribe"
}

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

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

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

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

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