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