mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/1Panel-dev/1Panel.git
synced 2026-09-21 00:24:12 +08:00
10 lines
274 B
Go
10 lines
274 B
Go
package model
|
|
|
|
type WebsiteCA struct {
|
|
BaseModel
|
|
CSR string `gorm:"not null;" json:"csr"`
|
|
Name string `gorm:"not null;" json:"name"`
|
|
PrivateKey string `gorm:"not null" json:"privateKey"`
|
|
KeyType string `gorm:"not null;default:RSA2048" json:"keyType"`
|
|
}
|