Files
2022-05-10 23:01:03 +08:00

14 lines
195 B
Go

package model
import (
"SciencesServer/app/common/model"
)
type SysIndustry struct {
*model.SysIndustry
}
func NewSysIndustry() *SysIndustry {
return &SysIndustry{model.NewSysIndustry()}
}