14 lines
203 B
Go
14 lines
203 B
Go
package model
|
|
|
|
import (
|
|
"SciencesServer/app/api/enterprise/model"
|
|
)
|
|
|
|
type SysIndustry struct {
|
|
*model.SysIndustry
|
|
}
|
|
|
|
func NewSysIndustry() *SysIndustry {
|
|
return &SysIndustry{model.NewSysIndustry()}
|
|
}
|