feat:完善信息

This commit is contained in:
henry
2021-10-18 11:57:12 +08:00
parent 282448ab6e
commit fdda4b0209
6 changed files with 316 additions and 0 deletions

View File

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