mirror of
https://gitee.com/XM-GO/PandaX.git
synced 2026-04-24 03:18:35 +08:00
项目目录优化,任务模块后端代码
This commit is contained in:
12
apps/system/entity/role_menu.go
Normal file
12
apps/system/entity/role_menu.go
Normal file
@@ -0,0 +1,12 @@
|
||||
package entity
|
||||
|
||||
type SysRoleMenu struct {
|
||||
RoleId int64 `gorm:"type:int(11)"`
|
||||
MenuId int64 `gorm:"type:int(11)"`
|
||||
RoleName string `gorm:"type:varchar(128)"`
|
||||
Id int64 `gorm:"primary_key;AUTO_INCREMENT;column:id" json:"id" form:"id"`
|
||||
}
|
||||
|
||||
type MenuPath struct {
|
||||
Path string `json:"path"`
|
||||
}
|
||||
Reference in New Issue
Block a user