2024-07-23 14:48:37 +08:00
|
|
|
package model
|
|
|
|
|
|
|
|
type Setting struct {
|
|
|
|
BaseModel
|
2024-08-14 10:43:32 +08:00
|
|
|
Key string `json:"key" gorm:"not null;"`
|
|
|
|
Value string `json:"value"`
|
|
|
|
About string `json:"about"`
|
2024-07-23 14:48:37 +08:00
|
|
|
}
|
2024-11-28 18:42:40 +08:00
|
|
|
|
|
|
|
type NodeInfo struct {
|
2024-12-26 15:38:56 +08:00
|
|
|
Scope string `json:"scope"`
|
|
|
|
BaseDir string `json:"baseDir"`
|
2024-12-28 17:58:43 +08:00
|
|
|
NodePort uint `json:"nodePort"`
|
2024-12-26 15:38:56 +08:00
|
|
|
Version string `json:"version"`
|
|
|
|
ServerCrt string `json:"serverCrt"`
|
|
|
|
ServerKey string `json:"serverKey"`
|
2024-11-28 18:42:40 +08:00
|
|
|
}
|