Files

12 lines
220 B
Go
Raw Normal View History

2021-10-14 15:58:51 +08:00
package model
import "SciencesServer/app/common/model"
type TechnologyDemand struct {
*model.TechnologyDemand
}
func NewTechnologyDemand() *TechnologyDemand {
return &TechnologyDemand{model.NewTechnologyDemand()}
}