2 Star 0 Fork 0

hero/momo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
dict.go 1.28 KB
一键复制 编辑 原始数据 按行查看 历史
hero 提交于 2024-11-06 16:32 . upd:unique
package model
import (
"errors"
"time"
"gitee.com/linqwen/momo/cache"
"gitee.com/linqwen/momo/app/conf/dao"
"gitee.com/linqwen/momo/base"
"gorm.io/gorm"
)
func init() {
dao.ConfDb.AutoMigrate(&DictEntity{})
initDictCache()
}
type DictEntity struct {
base.SnowflakeIDModel
ParentId int64 `gorm:"column:parent_id" json:"ParentId,string"`
Code string `gorm:"column:code" json:"Code"`
Key string `gorm:"column:key;unique" json:"Key"`
Value string `gorm:"column:value;size:255" json:"value"`
Status int `gorm:"column:status;type:int" json:"Status"`
Remark string `gorm:"column:remark" json:"Remark"`
}
func (DictEntity) TableName() string { return "conf_dict" }
func (s *DictEntity) AfterSave(tx *gorm.DB) (err error) {
go initDictCache()
return nil
}
func (s *DictEntity) AfterDelete(tx *gorm.DB) (err error) {
go initDictCache()
return nil
}
func initDictCache() {
time.Sleep(100 * time.Millisecond)
var objs []DictEntity
var objmap = make(map[string]string)
if err := dao.ConfDb.Where("status = ?", 1).Find(&objs).Error; err != nil {
if errors.Is(err, gorm.ErrRecordNotFound) {
return
}
return
}
if len(objs) > 0 {
for _, a := range objs {
objmap[a.Key] = a.Value
}
cache.SetCache("dict", objmap, time.Now().Add(365*24*time.Hour))
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/linqwen/momo.git
git@gitee.com:linqwen/momo.git
linqwen
momo
momo
v1.1.19

搜索帮助