13 lines
253 B
Go
13 lines
253 B
Go
![]() |
package model
|
||
|
|
||
|
import "SciencesServer/app/common/model"
|
||
|
|
||
|
// TechnologyDemand 技术需求
|
||
|
type TechnologyDemand struct {
|
||
|
*model.TechnologyDemand
|
||
|
}
|
||
|
|
||
|
func NewTechnologyDemand() *TechnologyDemand {
|
||
|
return &TechnologyDemand{model.NewTechnologyDemand()}
|
||
|
}
|