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