Files
2022-01-05 11:29:27 +08:00

12 lines
196 B
Go

package model
import "SciencesServer/app/common/model"
type UserIdentity struct {
*model.UserIdentity
}
func NewUserIdentity() *UserIdentity {
return &UserIdentity{model.NewUserIdentity()}
}