feat:优化项目信息

This commit is contained in:
henry
2021-12-01 14:12:23 +08:00
parent c27e115517
commit 3abfe92add
32 changed files with 397 additions and 429 deletions

View File

@ -0,0 +1,11 @@
package model
import "SciencesServer/app/common/model"
type UserIdentity struct {
*model.UserIdentity
}
func NewUserIdentity() *UserIdentity {
return &UserIdentity{model.NewUserIdentity()}
}

View File

@ -1,11 +0,0 @@
package model
import "SciencesServer/app/common/model"
type UserManage struct {
*model.UserManage
}
func NewUserManage() *UserManage {
return &UserManage{model.NewUserManage()}
}