feat:完善信息

This commit is contained in:
henry
2021-10-15 15:01:21 +08:00
parent bea9ceabba
commit af8691e943
56 changed files with 78 additions and 51 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()}
}