Files

14 lines
189 B
Go
Raw Normal View History

2021-12-24 12:00:18 +08:00
package model
2021-12-24 15:28:46 +08:00
import (
"SciencesServer/app/common/model"
)
2021-12-24 12:00:18 +08:00
type UserExpert struct {
*model.UserExpert
}
func NewUserExpert() *UserExpert {
return &UserExpert{model.NewUserExpert()}
}