12 lines
184 B
Go
12 lines
184 B
Go
package model
|
|
|
|
import "SciencesServer/app/common/model"
|
|
|
|
type UserExpert struct {
|
|
*model.UserExpert
|
|
}
|
|
|
|
func NewUserExpert() *UserExpert {
|
|
return &UserExpert{model.NewUserExpert()}
|
|
}
|