heritage-api/model/role-model.go

8 lines
194 B
Go
Raw Normal View History

2026-03-12 09:28:19 +00:00
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"`
}