Files
2021-12-01 14:12:23 +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()}
}