schema

package
v1.7.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 9, 2024 License: GPL-3.0 Imports: 1 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AccessctlCreateDTO added in v1.7.0

type AccessctlCreateDTO struct {
	Path        string `gorm:"column:path" json:"Path" form:"Path" comment:"Path"`
	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"`
	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"`
	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{}

func (ClientVO) GetListVO

func (c ClientVO) 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   time.Time
	UpdatedAt   time.Time
}

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{}

func (DictVO) GetListVO added in v1.7.0

func (c DictVO) GetListVO() interface{}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL