21 lines
656 B
Go
21 lines
656 B
Go
// Code generated by gorm.io/gen. DO NOT EDIT.
|
|
// Code generated by gorm.io/gen. DO NOT EDIT.
|
|
// Code generated by gorm.io/gen. DO NOT EDIT.
|
|
|
|
package models
|
|
|
|
const TableNameCertCert = "certCerts"
|
|
|
|
// CertCert mapped from table <certCerts>
|
|
type CertCert struct {
|
|
CertID int32 `gorm:"column:certID;type:INTEGER" json:"certID"`
|
|
Description string `gorm:"column:description;type:TEXT" json:"description"`
|
|
GroupID int32 `gorm:"column:groupID;type:INTEGER" json:"groupID"`
|
|
Name string `gorm:"column:name;type:VARCHAR(255)" json:"name"`
|
|
}
|
|
|
|
// TableName CertCert's table name
|
|
func (*CertCert) TableName() string {
|
|
return TableNameCertCert
|
|
}
|