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

     1  // =================================================================================
     2  // Code generated by GoFrame CLI tool. DO NOT EDIT.
     3  // =================================================================================
     4  
     5  package sys_entity
     6  
     7  import (
     8  	"github.com/gogf/gf/v2/os/gtime"
     9  )
    10  
    11  // SysConfig is the golang structure for table sys_config.
    12  type SysConfig struct {
    13  	Name      string      `json:"name"      description:"配置名称"`
    14  	Value     string      `json:"value"     description:"配置信息"`
    15  	CreatedAt *gtime.Time `json:"createdAt" description:""`
    16  	UpdatedAt *gtime.Time `json:"updatedAt" description:""`
    17  }