55693fab35
* Improve comment in classify package * improve comment in config package * improve entity package comments * grammar error in comments
14 lines
415 B
Go
14 lines
415 B
Go
package entity
|
|
|
|
// Category of labels regroups labels with the same or a similar meaning using a main/root label
|
|
type Category struct {
|
|
LabelID uint `gorm:"primary_key;auto_increment:false"`
|
|
CategoryID uint `gorm:"primary_key;auto_increment:false"`
|
|
Label *Label
|
|
Category *Label
|
|
}
|
|
|
|
// TableName returns Category table identifier "categories"
|
|
func (Category) TableName() string {
|
|
return "categories"
|
|
}
|