feat:完善信息
This commit is contained in:
19
app/enterprise/model/tenant_user.go
Normal file
19
app/enterprise/model/tenant_user.go
Normal file
@ -0,0 +1,19 @@
|
||||
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()}
|
||||
}
|
Reference in New Issue
Block a user