github.com/SupenBysz/gf-admin-community@v0.7.4/sys_model/sys_entity/sys_settings.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  // SysSettings is the golang structure for table sys_settings.
    12  type SysSettings struct {
    13  	Name        string      `json:"name"        description:"配置名称"`
    14  	Values      string      `json:"values"      description:"配置信息JSON格式"`
    15  	Desc        string      `json:"desc"        description:"描述"`
    16  	UnionMainId int64       `json:"unionMainId" description:"关联的主体id,为0代表是平台配置"`
    17  	CreatedAt   *gtime.Time `json:"createdAt"   description:""`
    18  	UpdatedAt   *gtime.Time `json:"updatedAt"   description:""`
    19  }