Files
cas_tt_cloud_backend/app/api/enterprise/model/technology_instance.go
2021-10-15 15:06:02 +08:00

12 lines
232 B
Go

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