12 lines
217 B
Go
12 lines
217 B
Go
![]() |
package model
|
||
|
|
||
|
import "SciencesServer/app/common/model"
|
||
|
|
||
|
type SysTenantAuth struct {
|
||
|
*model.SysTenantAuth
|
||
|
}
|
||
|
|
||
|
func NewSysTenantAuth() *SysTenantAuth {
|
||
|
return &SysTenantAuth{SysTenantAuth: model.NewSysTenantAuth()}
|
||
|
}
|