mirror of
				https://github.com/1Panel-dev/1Panel.git
				synced 2025-10-31 19:26:02 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			271 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			271 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:2048" json:"keyType"`
 | |
| }
 |