github.com/SupenBysz/gf-admin-community@v0.7.4/sys_model/sys_do/sys_config.go (about)

     1  // =================================================================================
     2  // Code generated by GoFrame CLI tool. DO NOT EDIT.
     3  // =================================================================================
     4  
     5  package sys_do
     6  
     7  import (
     8  	"github.com/gogf/gf/v2/frame/g"
     9  	"github.com/gogf/gf/v2/os/gtime"
    10  )
    11  
    12  // SysConfig is the golang structure of table sys_config for DAO operations like Where/Data.
    13  type SysConfig struct {
    14  	g.Meta    `orm:"table:sys_config, do:true"`
    15  	Name      interface{} // 配置名称
    16  	Value     interface{} // 配置信息
    17  	CreatedAt *gtime.Time //
    18  	UpdatedAt *gtime.Time //
    19  }