feat:完善用户项目模块数据模型

This commit is contained in:
henry
2021-11-29 14:55:53 +08:00
parent fb5a3d910b
commit 998b78fb23
7 changed files with 304 additions and 1 deletions

View File

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