feat(ui): 增加系统权限管理

This commit is contained in:
吴汉强
2024-03-13 11:41:01 +08:00
parent e8d7ad58be
commit ef2dfe330b
4 changed files with 157 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package model
import "time"
type AdminPermission struct {
Id int `gorm:"primarykey;column:id"`
Name string
Slug string
Sort int
Pid int
CreatedAt time.Time
UpdatedAt time.Time
}