feat:完善项目

This commit is contained in:
henry
2021-09-28 11:51:15 +08:00
parent da7b3130fe
commit ef9213f261
51 changed files with 67 additions and 67 deletions

View File

@ -0,0 +1,13 @@
package model
import (
model2 "SciencesServer/app/common/model"
)
type SysRoleMenu struct {
*model2.SysRoleMenu
}
func NewSysRoleMenu() *SysRoleMenu {
return &SysRoleMenu{SysRoleMenu: model2.NewSysRoleMenu()}
}