feat:增加用户服务需求数据模型

This commit is contained in:
henry
2021-11-29 17:24:48 +08:00
parent 998b78fb23
commit a441d1f2f1
8 changed files with 348 additions and 9 deletions

View File

@ -0,0 +1,11 @@
package model
import "SciencesServer/app/common/model"
type ServiceDemand struct {
*model.ServiceDemand
}
func NewServiceDemand() *ServiceDemand {
return &ServiceDemand{model.NewServiceDemand()}
}