feat:增加科技产品数据模型管理

This commit is contained in:
henry
2021-11-26 10:15:49 +08:00
parent f82457a503
commit 3908a05bfa
15 changed files with 458 additions and 84 deletions

View File

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