Files
houston-be/entity/contributing_factor.go
Shubham Kirve b974cb6bf3 TP-0000 | Initialize houston repo (#1)
* TP-0000 | intialize houston repo

* TP-0000 | intialize houston repo
2023-03-29 00:01:17 +05:30

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