Hub-Api/models/role.go

12 lines
263 B
Go
Raw Normal View History

2024-06-17 18:54:50 +03:30
package models
import "time"
type Role struct {
Role_id uint `gorm:"primaryKey"`
Name string `gorm:"unique;not null;validate:'required'"`
Created_at time.Time
Modified_at time.Time
Modified_by string
Is_removed bool `gorm:"default:false"`
}