xgodbconfig

package
v0.0.6 Latest Latest
Warning

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

Go to latest
Published: Jun 27, 2023 License: BSD-3-Clause-Clear Imports: 5 Imported by: 0

Documentation

Overview

数据库配置的读写支持

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func GetBool

func GetBool(name string) bool

获取开关值

name	要获取的配置项的配置下标

func GetFloat

func GetFloat(name string) float64

获取浮点数值

name	要获取的配置项的配置下标

func GetInt

func GetInt(name string) int64

读取配置项的值

name	要获取的配置项的配置下标

func GetSelect

func GetSelect(name string) string

获取select下拉列表

name	要获取的配置项的配置下标

func GetString

func GetString(name string) string

获取string值的配置

name	要获取的配置项的配置下标

func SetBool added in v0.0.3

func SetBool(name string, val bool) error

设置bool类型配置

name	配置项的名称
val		配置项的值

func SetFloat added in v0.0.3

func SetFloat(name string, val float64) error

设置float类型配置

name	配置项的名称
val		配置项的值

func SetInt added in v0.0.3

func SetInt(name string, val int64) error

设置int类型配置

name	配置项的名称
val		配置项的值

func SetLongText added in v0.0.3

func SetLongText(name, val string) error

设置longtext类型配置 下拉列表,多项使用,分割key和key_cn使用:分割

name	配置项的名称
val		配置项的值

func SetSelect added in v0.0.3

func SetSelect(name, val string) error

设置select类型配置 下拉列表,多项使用,分割key和key_cn使用:分割

name	配置项的名称
val		配置项的值

func SetString added in v0.0.3

func SetString(name, val string) error

设置string类型配置

name	配置项的名称
val		配置项的值

func SetText added in v0.0.3

func SetText(name, val string) error

设置text类型配置 下拉列表,多项使用,分割key和key_cn使用:分割

name	配置项的名称
val		配置项的值

Types

type Config

type Config struct {
	DB              *gorm.DB
	ConfigTable     string // 配置表名称
	ConfigUserTable string // 用户配置存储表
}

数据库相关配置

var DefaultConfig Config = Config{
	ConfigTable:     "configure",
	ConfigUserTable: "configure_user",
}

默认配置表所在的配置

type Configure

type Configure struct {
	Id          uint    `gorm:"column:id" json:"id" form:"id"`
	NameKey     string  `gorm:"column:name_key" json:"name_key" form:"name_key"`       //配置项key
	NameCn      string  `gorm:"column:name_cn" json:"name_cn" form:"name_cn"`          //配置项名称
	NameGroup   string  `gorm:"column:name_group" json:"name_group" form:"name_group"` //配置项组
	Types       string  `gorm:"column:types" json:"types" form:"types"`                //配置项类型
	Desc        string  `gorm:"column:desc" json:"desc" form:"desc"`                   //配置项介绍信息
	ValueBool   uint8   `gorm:"column:value_bool" json:"value_bool" form:"value_bool"`
	ValueString string  `gorm:"column:value_string" json:"value_string" form:"value_string"`
	ValueInt    int64   `gorm:"column:value_int" json:"value_int" form:"value_int"`
	ValueFloat  float64 `gorm:"column:value_float" json:"value_float" form:"value_float"`
	EnumSelect  string  `gorm:"column:enum_select" json:"enum_select" form:"enum_select"` //下拉列表,多项使用,分割key和key_cn使用:分割,下拉选择的值存储在value_string中
	CreatedAt   string  `gorm:"column:created_at" json:"created_at" form:"created_at"`    //创建时间
	UpdatedAt   string  `gorm:"column:updated_at" json:"updated_at" form:"updated_at"`    //更新时间
}

配置项信息存储表

func Getconfigure

func Getconfigure(name string) Configure

获取配置项的详情值

name	要获取的配置项的配置下标

func (*Configure) TableName added in v0.0.6

func (c *Configure) TableName() string

表名

type ConfigureUser

type ConfigureUser struct {
	Id        uint   `gorm:"column:id" json:"id" form:"id"`                      //用户ID
	Configure string `gorm:"column:configure" json:"configure" form:"configure"` //配置信息JSON串
}

用户个性化配置项存储表

func (*ConfigureUser) TableName added in v0.0.6

func (c *ConfigureUser) TableName() string

Jump to

Keyboard shortcuts

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