Files

20 lines
333 B
Go
Raw Normal View History

2021-09-28 18:23:34 +08:00
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()}
}