13 lines
237 B
Go
13 lines
237 B
Go
|
package entity
|
||
|
|
||
|
import "leafdev.top/Ecosystem/recommender/internal/schema"
|
||
|
|
||
|
type Tag struct {
|
||
|
Id schema.EntityId `gorm:"primarykey" json:"id"`
|
||
|
Name string `json:"name"`
|
||
|
}
|
||
|
|
||
|
func (u *Tag) TableName() string {
|
||
|
return "tags"
|
||
|
}
|