feat:完善项目信息

This commit is contained in:
henry
2021-12-24 15:28:46 +08:00
parent f654b0a4f0
commit b506378003
9 changed files with 241 additions and 15 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()}
}