feat:完善项目信息

This commit is contained in:
henry
2021-12-24 12:00:18 +08:00
parent ebf74435ef
commit f654b0a4f0
9 changed files with 248 additions and 17 deletions

View File

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