Files
cas_tt_cloud_backend/app/enterprise/model/technology_demand.go
2021-10-14 15:58:51 +08:00

12 lines
220 B
Go

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