14 lines
201 B
Go
14 lines
201 B
Go
package model
|
|
|
|
import (
|
|
"SciencesServer/app/common/model"
|
|
)
|
|
|
|
type UserTenant struct {
|
|
*model.UserTenant
|
|
}
|
|
|
|
func NewUserTenant() *UserTenant {
|
|
return &UserTenant{UserTenant: model.NewUserTenant()}
|
|
}
|