Files

12 lines
202 B
Go
Raw Normal View History

package model
import "SciencesServer/app/common/model"
type ServiceDemand struct {
*model.ServiceDemand
}
func NewServiceDemand() *ServiceDemand {
return &ServiceDemand{model.NewServiceDemand()}
}