version

package
v1.9.3 Latest Latest
Warning

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

Go to latest
Published: Nov 17, 2025 License: MIT Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Dao

type Dao interface {
	CreateOrUpdateVersion(ctx context.Context, version string) error
	GetVersion(ctx context.Context) (string, error)
	// 菜单相关方法
	SetMenuHash(ctx context.Context, hash string) error
	GetMenuHash(ctx context.Context) (string, error)
}

func NewDao

func NewDao(db *mongox.Mongo) Dao

type Service

type Service interface {
	// CreateOrUpdateVersion 创建或更新版本信息
	CreateOrUpdateVersion(ctx context.Context, version string) error

	// GetVersion 获取当前版本
	GetVersion(ctx context.Context) (string, error)

	// SetMenuHash 设置菜单 Hash
	SetMenuHash(ctx context.Context, hash string) error

	// GetMenuHash 获取菜单 Hash
	GetMenuHash(ctx context.Context) (string, error)
}

func NewService

func NewService(dao Dao) Service

type Version

type Version struct {
	// 当前服务初始化数据版本
	CurrentVersion string `json:"current_version" bson:"current_version"`
	// 菜单文件 MD5 哈希值
	MenuHash string `json:"menu_hash" bson:"menu_hash"`
	Ctime    int64  `bson:"ctime"`
	Utime    int64  `bson:"utime"`
}

Jump to

Keyboard shortcuts

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