feat:完善项目

This commit is contained in:
henry
2022-01-17 14:34:53 +08:00
parent 4850f6348f
commit 8385800662
6 changed files with 196 additions and 0 deletions

View File

@ -0,0 +1,12 @@
package model
import "SciencesServer/app/common/model"
// TechnologyDemand 技术需求
type TechnologyDemand struct {
*model.TechnologyDemand
}
func NewTechnologyDemand() *TechnologyDemand {
return &TechnologyDemand{model.NewTechnologyDemand()}
}