Files
cas_tt_cloud_backend/app/api/enterprise/model/technology_instance.go

12 lines
232 B
Go
Raw Normal View History

2021-10-12 11:40:02 +08:00
package model
import "SciencesServer/app/common/model"
type TechnologyInstance struct {
*model.TechnologyInstance
}
func NewTechnologyInstance() *TechnologyInstance {
return &TechnologyInstance{model.NewTechnologyInstance()}
}