Files

12 lines
196 B
Go
Raw Normal View History

2022-02-15 17:19:23 +08:00
package model
import "SciencesServer/app/common/model"
type UserInstance struct {
*model.UserInstance
}
func NewUserInstance() *UserInstance {
return &UserInstance{model.NewUserInstance()}
}