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

12 lines
226 B
Go
Raw Normal View History

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