12 lines
220 B
Go
12 lines
220 B
Go
package model
|
|
|
|
import "SciencesServer/app/common/model"
|
|
|
|
type TechnologyDemand struct {
|
|
*model.TechnologyDemand
|
|
}
|
|
|
|
func NewTechnologyDemand() *TechnologyDemand {
|
|
return &TechnologyDemand{model.NewTechnologyDemand()}
|
|
}
|