package models import ( "github.com/jinzhu/gorm" ) // Privilege ๆƒ้™ๅˆ—่กจ type Privilege struct { gorm.Model PrivilegeName string `gorm:"size:50;not null;"` PrivilegeID int32 }