package model import "gorm.io/gorm" type UserRole struct { gorm.Model } func (UserRole) TableName() string { return "t_user_role" }