16 lines
270 B
Go
16 lines
270 B
Go
package entity
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
type SeverityEntity struct {
|
|
gorm.Model
|
|
Name string `gorm:"column:name"`
|
|
Description string `gorm:"column:description"`
|
|
Version int
|
|
Sla int
|
|
}
|
|
|
|
func (SeverityEntity) TableName() string {
|
|
return "severity"
|
|
}
|