global

package
v0.0.0-...-ffc85bd Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 5, 2023 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	DB                      *gorm.DB
	DBList                  map[string]*gorm.DB
	REDIS                   *redis.Client
	CONFIG                  config.Server
	VIPER                   *viper.Viper
	LOG                     *zap.Logger
	TIMER                   timer.Timer = timer.NewTimerTask()
	GVA_Concurrency_Control             = &singleflight.Group{}
	BlackCache              local_cache.Cache

	EmailConfig config.Email
)

Functions

func GetGlobalDBByDBName

func GetGlobalDBByDBName(dbname string) *gorm.DB

GetGlobalDBByDBName 通过名称获取db list中的db

func MustGetGlobalDBByDBName

func MustGetGlobalDBByDBName(dbname string) *gorm.DB

MustGetGlobalDBByDBName 通过名称获取db 如果不存在则panic

Types

type BaseMODEL

type BaseMODEL struct {
	CreatedAt time.Time      // 创建时间
	UpdatedAt time.Time      // 更新时间
	DeletedAt gorm.DeletedAt `gorm:"index" json:"-"` // 删除时间
}

type MODEL

type MODEL struct {
	ID        uint           `gorm:"primarykey"` // 主键ID
	CreatedAt time.Time      // 创建时间
	UpdatedAt time.Time      // 更新时间
	DeletedAt gorm.DeletedAt `gorm:"index" json:"-"` // 删除时间
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL