mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
37 lines
937 B
Go
37 lines
937 B
Go
package entity
|
||
|
||
import "mayfly-go/pkg/model"
|
||
|
||
type Resource struct {
|
||
model.Model
|
||
Pid int `json:"pid"`
|
||
UiPath string `json:"ui_path"` // 唯一标识路径
|
||
Type int8 `json:"type"` // 1:菜单路由;2:资源(按钮等)
|
||
Status int8 `json:"status"` // 1:可用;-1:不可用
|
||
Code string `json:"code"`
|
||
Name string `json:"name"`
|
||
Weight int `json:"weight"`
|
||
Meta string `json:"meta"`
|
||
}
|
||
|
||
func (a *Resource) TableName() string {
|
||
return "t_sys_resource"
|
||
}
|
||
|
||
func (m *Resource) FillBaseInfo(idGenType model.IdGenType, la *model.LoginAccount) {
|
||
// id使用时间戳,减少id冲突概率
|
||
m.Model.FillBaseInfo(model.IdGenTypeTimestamp, la)
|
||
}
|
||
|
||
const (
|
||
ResourceStatusEnable int8 = 1 // 启用状态
|
||
ResourceStatusDisable int8 = -1 // 禁用状态
|
||
|
||
// 资源状态
|
||
ResourceTypeMenu int8 = 1
|
||
ResourceTypePermission int8 = 2
|
||
|
||
// 唯一标识路径分隔符
|
||
ResourceUiPathSp string = "/"
|
||
)
|