20 lines
333 B
Go
20 lines
333 B
Go
package model
|
|
|
|
import "SciencesServer/app/common/model"
|
|
|
|
type TenantUser struct {
|
|
*model.TenantUser
|
|
}
|
|
|
|
func (m *TenantUser) UUIDToString() string {
|
|
return ""
|
|
}
|
|
|
|
func (m *TenantUser) ValidatePassword(password string) bool {
|
|
return true
|
|
}
|
|
|
|
func NewTenantUser() *TenantUser {
|
|
return &TenantUser{TenantUser: model.NewTenantUser()}
|
|
}
|