heritage-api/model/role-model.go

8 lines
194 B
Go

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"`
}