12 lines
203 B
Go
12 lines
203 B
Go
![]() |
package model
|
||
|
|
||
|
import "SciencesServer/app/common/model"
|
||
|
|
||
|
type SysIndustry struct {
|
||
|
*model.SysIndustry
|
||
|
}
|
||
|
|
||
|
func NewSysIndustry() *SysIndustry {
|
||
|
return &SysIndustry{SysIndustry: model.NewSysIndustry()}
|
||
|
}
|