21 lines
808 B
Go
21 lines
808 B
Go
|
|
package entity
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/google/uuid"
|
||
|
|
"time"
|
||
|
|
)
|
||
|
|
|
||
|
|
type UserRoles struct {
|
||
|
|
ID uint `json:"id" gorm:"primaryKey;type:int4;autoIncrement"`
|
||
|
|
Name string `json:"name" gorm:"type:varchar"`
|
||
|
|
Description string `json:"description" gorm:"type:varchar"`
|
||
|
|
Code string `json:"code" gorm:"type:varchar"`
|
||
|
|
StatusId int `json:"status_id" gorm:"type:int4;default:1"`
|
||
|
|
CreatedById *uint `json:"created_by_id" gorm:"type:int4"`
|
||
|
|
UserLevelId uint `json:"user_level_id" gorm:"type:int4"`
|
||
|
|
ClientId *uuid.UUID `json:"client_id" gorm:"type:UUID"`
|
||
|
|
IsActive *bool `json:"is_active" gorm:"type:bool;default:true"`
|
||
|
|
CreatedAt time.Time `json:"created_at" gorm:"default:now()"`
|
||
|
|
UpdatedAt time.Time `json:"updated_at" gorm:"default:now()"`
|
||
|
|
}
|