12 lines
202 B
Go
12 lines
202 B
Go
![]() |
package model
|
||
|
|
||
|
import "SciencesServer/app/common/model"
|
||
|
|
||
|
type ServiceDemand struct {
|
||
|
*model.ServiceDemand
|
||
|
}
|
||
|
|
||
|
func NewServiceDemand() *ServiceDemand {
|
||
|
return &ServiceDemand{model.NewServiceDemand()}
|
||
|
}
|