feat:完善信息

This commit is contained in:
henry
2021-10-14 15:58:51 +08:00
parent cb130b6081
commit 456b8a849e
8 changed files with 382 additions and 6 deletions

View File

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