package model
type Role struct {
ID string `gorm:"type:varchar(32);primaryKey"`
Code string `gorm:"type:varchar(64);not null;uniqueIndex"`
Name string `gorm:"type:varchar(64);not null"`
}