12 lines
178 B
Go
12 lines
178 B
Go
![]() |
package model
|
||
|
|
||
|
import "SciencesServer/app/common/model"
|
||
|
|
||
|
type SysTenant struct {
|
||
|
*model.SysTenant
|
||
|
}
|
||
|
|
||
|
func NewSysTenant() *SysTenant {
|
||
|
return &SysTenant{model.NewSysTenant()}
|
||
|
}
|