Files

12 lines
178 B
Go
Raw Normal View History

2021-10-09 17:32:23 +08:00
package model
import "SciencesServer/app/common/model"
type SysTenant struct {
*model.SysTenant
}
func NewSysTenant() *SysTenant {
return &SysTenant{model.NewSysTenant()}
}