Files

12 lines
196 B
Go
Raw Normal View History

2021-12-01 14:12:23 +08:00
package model
import "SciencesServer/app/common/model"
type UserIdentity struct {
*model.UserIdentity
}
func NewUserIdentity() *UserIdentity {
return &UserIdentity{model.NewUserIdentity()}
}