Files

12 lines
196 B
Go
Raw Normal View History

2021-11-01 11:19:49 +08:00
package model
import "SciencesServer/app/common/model"
type UserInstance struct {
*model.UserInstance
}
func NewUserInstance() *UserInstance {
return &UserInstance{model.NewUserInstance()}
}