Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DictDataRes ¶
type DictDataRes struct { DictType string `json:"dictType"` DictSort string `json:"dictSort"` DictValue string `json:"dictValue"` DictLabel string `json:"dictLabel"` CssClass string `json:"cssClass"` ListClass string `json:"listClass"` IsDefault int `json:"isDefault"` Remark string `json:"remark"` }
DictDataRes 字典数据
type DictTypeRes ¶
type SysDictTypeInfoRes ¶
type SysDictTypeInfoRes struct { DictId uint64 `orm:"dict_id,primary" json:"dictId"` // 字典主键 DictName string `orm:"dict_name" json:"dictName"` // 字典名称 DictType string `orm:"dict_type,unique" json:"dictType"` // 字典类型 Status uint `orm:"status" json:"status"` // 状态(0正常 1停用) Remark string `orm:"remark" json:"remark"` // 备注 CreatedAt *gtime.Time `orm:"created_at" json:"createdAt"` // 创建日期 }
type TokenOptions ¶
type TokenOptions struct { // server name ServerName string `json:"serverName"` // 缓存key (每创建一个实例CacheKey必须不相同) CacheKey string `json:"cacheKey"` // 超时时间 默认10天(秒) Timeout int64 `json:"timeout"` // 缓存刷新时间 默认5天(秒) // 处理携带token的请求时当前时间大于超时时间并小于缓存刷新时间时token将自动刷新即重置token存活时间 // MaxRefresh值为0时,token将不会自动刷新 MaxRefresh int64 `json:"maxRefresh"` // 是否允许多点登录 MultiLogin bool `json:"multiLogin"` // Token加密key 32位 EncryptKey []byte `json:"encryptKey"` // 拦截排除地址 ExcludePaths g.SliceStr `json:"excludePaths"` CacheModel string `json:"cacheModel"` }
Click to show internal directories.
Click to hide internal directories.