Files
cas_tt_cloud_backend/app/api/admin/model/technology_demand.go

13 lines
253 B
Go
Raw Normal View History

2022-01-17 14:34:53 +08:00
package model
import "SciencesServer/app/common/model"
// TechnologyDemand 技术需求
type TechnologyDemand struct {
*model.TechnologyDemand
}
func NewTechnologyDemand() *TechnologyDemand {
return &TechnologyDemand{model.NewTechnologyDemand()}
}