feat:完善信息

This commit is contained in:
henry
2021-10-12 11:40:02 +08:00
parent 7830ab0c86
commit 37fd5abdac
5 changed files with 278 additions and 7 deletions

View File

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