feat:完善网站信息,增加创新服务数据模型

This commit is contained in:
henry
2021-12-20 10:35:20 +08:00
parent cb5ab0ae37
commit 91f5d0868f
7 changed files with 208 additions and 41 deletions

View File

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

View File

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