Files

14 lines
203 B
Go
Raw Normal View History

2021-11-01 11:19:49 +08:00
package model
import (
"SciencesServer/app/api/enterprise/model"
)
type SysIndustry struct {
*model.SysIndustry
}
func NewSysIndustry() *SysIndustry {
return &SysIndustry{model.NewSysIndustry()}
}