Files
houston-be/entity/severity.go
2023-03-30 12:33:59 +05:30

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"
}