Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AccessCreateDTO ¶ added in v1.9.1
type AccessCreateDTO struct { Id string `gorm:"column:id;primaryKey" json:"Id" form:"Id" comment:"Id"` UserId string `gorm:"column:user_id" json:"UserId" form:"UserId" comment:"UserId"` Path string `gorm:"column:path" json:"Path" form:"Path" comment:"Path"` Access int `gorm:"column:access;default:1" json:"Access" form:"Access" comment:"Access"` Count int `gorm:"column:Count;type:int" json:"Count" form:"Count" comment:"Count"` Description string `gorm:"column:description" json:"Description" form:"Description" comment:"Description"` Status int `gorm:"column:status;type:int" json:"Status"` }
type AccessQueryDTO ¶ added in v1.9.1
type AccessQueryDTO struct { Id string `gorm:"column:id;primaryKey" json:"Id" form:"Id" comment:"Id"` UserId string `gorm:"column:user_id" json:"UserId" form:"UserId" comment:"UserId"` Path string `gorm:"column:path" json:"Path" form:"Path" comment:"Path"` Access int `gorm:"column:access;default:1" json:"Access" form:"Access" comment:"Access"` Ip string `gorm:"column:ip" json:"Ip" form:"Ip" comment:"Ip"` Count int `gorm:"column:Count;type:int" json:"Count" form:"Count" comment:"Count"` Description string `gorm:"column:description" json:"Description" form:"Description" comment:"Description"` Status int `gorm:"column:status;type:int" json:"Status"` CreatedAt app.ISO8601Time `gorm:"column:created_at" json:"CreatedAt" form:"CreatedAt" comment:"CreatedAt"` UpdatedAt app.ISO8601Time `gorm:"column:updated_at" json:"UpdatedAt" form:"UpdatedAt" comment:"UpdatedAt"` }
type AccessVO ¶ added in v1.9.1
type AccessVO struct { Id string `gorm:"column:id;primaryKey" json:"Id" form:"Id" comment:"Id"` UserId string `gorm:"column:user_id" json:"UserId" form:"UserId" comment:"UserId"` Path string `gorm:"column:path" json:"Path" form:"Path" comment:"Path"` Access int `gorm:"column:access;default:1" json:"Access" form:"Access" comment:"Access"` Ip string `gorm:"column:ip" json:"Ip" form:"Ip" comment:"Ip"` Count int `gorm:"column:Count;type:int" json:"Count" form:"Count" comment:"Count"` Description string `gorm:"column:description" json:"Description" form:"Description" comment:"Description"` Status int `gorm:"column:status;type:int" json:"Status"` CreatedAt app.ISO8601Time `gorm:"column:created_at" json:"CreatedAt" form:"CreatedAt" comment:"CreatedAt"` UpdatedAt app.ISO8601Time `gorm:"column:updated_at" json:"UpdatedAt" form:"UpdatedAt" comment:"UpdatedAt"` }
func (AccessVO) GetDetailVO ¶ added in v1.9.1
func (c AccessVO) GetDetailVO() interface{}
type AccessctlCreateDTO ¶ added in v1.7.0
type AccessctlCreateDTO struct { Path string `gorm:"column:path" json:"Path" form:"Path" comment:"Path"` Ips string `gorm:"column:ips" json:"Ips" form:"Ips" comment:"Ips"` Access int `gorm:"column:access;default:1" json:"Access" form:"Access" comment:"Access"` Description string `gorm:"column:description" json:"Description" form:"Description" comment:"Description"` Status int `gorm:"column:status;type:int" json:"Status"` }
type AccessctlQueryDTO ¶ added in v1.7.0
type AccessctlQueryDTO struct { Path string `gorm:"column:path" json:"Path" form:"Path" comment:"Path"` Ips string `gorm:"column:ips" json:"Ips" form:"Ips" comment:"Ips"` Access int `gorm:"column:access;default:1" json:"Access" form:"Access" comment:"Access"` Description string `gorm:"column:description" json:"Description" form:"Description" comment:"Description"` Status int `gorm:"column:status;type:int" json:"Status"` }
type AccessctlVO ¶
type AccessctlVO struct { Id int64 `gorm:"primaryKey;autoIncrement:false" json:"Id,string"` Path string `gorm:"column:path" json:"Path" form:"Path" comment:"Path"` Ips string `gorm:"column:ips" json:"Ips" form:"Ips" comment:"Ips"` Access int `gorm:"column:access" json:"Access" form:"Access" comment:"Access"` Description string `gorm:"column:description" json:"Description" form:"Description" comment:"Description"` Status int `gorm:"column:status;type:int" json:"Status"` }
func (AccessctlVO) GetDetailVO ¶
func (c AccessctlVO) GetDetailVO() interface{}
func (AccessctlVO) GetListVO ¶
func (c AccessctlVO) GetListVO() interface{}
type ClientCreateDTO ¶ added in v1.7.0
type ClientCreateDTO struct { Status int `gorm:"column:status;type:int" json:"Status"` Access int `gorm:"column:access;default:1" json:"Access" form:"Access" comment:"Access"` Task int `gorm:"column:task;type:int" json:"Task"` Cpu string `gorm:"column:cpu;size:255" json:"Cpu"` Mem string `gorm:"column:mem;size:255" json:"Mem"` Account string `gorm:"column:account;size:255" json:"Account"` Name string `gorm:"column:name;size:255" json:"Name"` Ip string `gorm:"column:ip;size:39;unique" json:"Ip"` }
type ClientQueryDTO ¶ added in v1.7.0
type ClientQueryDTO struct { Status int `gorm:"column:status;type:int" json:"Status"` Access int `gorm:"column:access;default:1" json:"Access" form:"Access" comment:"Access"` Task int `gorm:"column:task;type:int" json:"Task"` Cpu string `gorm:"column:cpu;size:255" json:"Cpu"` Mem string `gorm:"column:mem;size:255" json:"Mem"` Account string `gorm:"column:account;size:255" json:"Account"` Name string `gorm:"column:name;size:255" json:"Name"` Ip string `gorm:"column:ip;size:39;unique" json:"Ip"` }
type ClientVO ¶
type ClientVO struct { Id int64 `json:"Id,string"` Status int `gorm:"column:status;type:int" json:"Status"` Access int `gorm:"column:access;default:1" json:"Access" form:"Access" comment:"Access"` Task int `gorm:"column:task;type:int" json:"Task"` Cpu string `gorm:"column:cpu;size:255" json:"Cpu"` Mem string `gorm:"column:mem;size:255" json:"Mem"` Account string `gorm:"column:account;size:255" json:"Account"` Name string `gorm:"column:name;size:255" json:"Name"` Ip string `gorm:"column:ip;size:39;unique" json:"Ip"` }
func (ClientVO) GetDetailVO ¶
func (c ClientVO) GetDetailVO() interface{}
type ConcurrencyDTO ¶ added in v1.8.0
type ConcurrencyDTO struct { UserId string `gorm:"column:user_id" json:"UserId" form:"UserId" comment:"UserId"` // 用户ID Resource string `gorm:"column:resource" json:"Resource" form:"Resource" comment:"Resource"` // 资源名 RateLimit int `gorm:"column:rate_limit" json:"RateLimit" form:"RateLimit" comment:"RateLimit"` // 每秒令牌生成数 Burst int `gorm:"column:burst" json:"Burst" form:"Burst" comment:"Burst"` // 突发容量 WaitTime int `gorm:"column:wait_time" json:"WaitTime" form:"WaitTime" comment:"WaitTime"` // 最大排队等待时间 Status int `gorm:"column:status;default:0" json:"Status" form:"Status" comment:"Status"` }
type ConcurrencyVO ¶ added in v1.8.0
type ConcurrencyVO struct { Id int64 `gorm:"primaryKey;autoIncrement:false" json:"Id,string"` UserId string `gorm:"column:user_id" json:"UserId" form:"UserId" comment:"UserId"` // 用户ID Resource string `gorm:"column:resource" json:"Resource" form:"Resource" comment:"Resource"` // 资源名 RateLimit int `gorm:"column:rate_limit" json:"RateLimit" form:"RateLimit" comment:"RateLimit"` // 每秒令牌生成数 Burst int `gorm:"column:burst" json:"Burst" form:"Burst" comment:"Burst"` // 突发容量 WaitTime int `gorm:"column:wait_time" json:"WaitTime" form:"WaitTime" comment:"WaitTime"` // 最大排队等待时间 Status int `gorm:"column:status;default:0" json:"Status" form:"Status" comment:"Status"` }
func (ConcurrencyVO) GetDetailVO ¶ added in v1.8.0
func (c ConcurrencyVO) GetDetailVO() interface{}
func (ConcurrencyVO) GetListVO ¶ added in v1.8.0
func (c ConcurrencyVO) GetListVO() interface{}
type DataSourceDTO ¶
type DataSourceDTO struct { Alias string `gorm:"column:alias;not null" json:"Alias" form:"Alias" comment:"Alias"` UserName string `gorm:"column:user_name" json:"UserName" form:"UserName" comment:"UserName"` Password string `gorm:"column:password" json:"Password" form:"Password" comment:"Password"` Host string `gorm:"column:host;not null" json:"Host" form:"Host" comment:"Host"` Port int `gorm:"column:port" json:"Port" form:"Port" comment:"Port"` DriverClass string `gorm:"column:driver_class" json:"DriverClass" form:"DriverClass" comment:"DriverClass"` DbName string `gorm:"column:db_name" json:"DbName" form:"DbName" comment:"DbName"` Status int `gorm:"column:status" json:"Status" form:"Status" comment:"Status"` }
type DataSourceVO ¶
type DataSourceVO struct { Id int64 `gorm:"primaryKey;autoIncrement:false" json:"Id,string"` Alias string `gorm:"column:alias;not null" json:"Alias" form:"Alias" comment:"Alias"` UserName string `gorm:"column:user_name" json:"UserName" form:"UserName" comment:"UserName"` Password string `gorm:"column:password" json:"Password" form:"Password" comment:"Password"` Host string `gorm:"column:host;not null" json:"Host" form:"Host" comment:"Host"` Port int `gorm:"column:port" json:"Port" form:"Port" comment:"Port"` DriverClass string `gorm:"column:driver_class" json:"DriverClass" form:"DriverClass" comment:"DriverClass"` DbName string `gorm:"column:db_name" json:"DbName" form:"DbName" comment:"DbName"` Status int `gorm:"column:status" json:"Status" form:"Status" comment:"Status"` CreatedAt app.ISO8601Time UpdatedAt app.ISO8601Time }
func (DataSourceVO) GetDetailVO ¶
func (c DataSourceVO) GetDetailVO() interface{}
func (DataSourceVO) GetListVO ¶
func (c DataSourceVO) GetListVO() interface{}
type DictCreateDTO ¶ added in v1.7.0
type DictCreateDTO struct { ParentId int64 `gorm:"column:parent_id" json:"ParentId,string"` Code string `gorm:"column:code" json:"Code"` Key string `gorm:"column:key" json:"Key"` Value string `gorm:"column:value;size:255" json:"Value"` Status int `gorm:"column:status;type:int" json:"Status"` Remark string `gorm:"column:remark" json:"Remark"` }
type DictQueryDTO ¶ added in v1.7.0
type DictQueryDTO struct { ParentId int64 `gorm:"column:parent_id" json:"ParentId,string"` Code string `gorm:"column:code" json:"Code"` Key string `gorm:"column:key" json:"Key"` Value string `gorm:"column:value;size:255" json:"Value"` Status int `gorm:"column:status;type:int" json:"Status"` Remark string `gorm:"column:remark" json:"Remark"` ParentId_eq string `gorm:"column:parent_id" json:"ParentId_eq"` }
type DictVO ¶ added in v1.7.0
type DictVO struct { Id int64 `gorm:"primaryKey;autoIncrement:false" json:"Id,string"` ParentId int64 `gorm:"column:parent_id" json:"ParentId,string"` Code string `gorm:"column:code" json:"Code"` Key string `gorm:"column:key" json:"Key"` Value string `gorm:"column:value;size:255" json:"Value"` Status int `gorm:"column:status;type:int" json:"Status"` Remark string `gorm:"column:remark" json:"Remark"` }
func (DictVO) GetDetailVO ¶ added in v1.7.0
func (c DictVO) GetDetailVO() interface{}
Click to show internal directories.
Click to hide internal directories.