feat:完善信息

This commit is contained in:
henry
2021-10-25 11:34:40 +08:00
parent e753e99fd8
commit d4ab041711
5 changed files with 205 additions and 0 deletions

View File

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