14 lines
207 B
Go
14 lines
207 B
Go
package entity
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
type ContributingFactorEntity struct {
|
|
gorm.Model
|
|
Label string
|
|
Version int
|
|
}
|
|
|
|
func (ContributingFactorEntity) TableName() string {
|
|
return "contributing_factor"
|
|
}
|