feat:完善信息

This commit is contained in:
henry
2021-10-15 11:05:38 +08:00
parent 1fa9adbd25
commit 4fc13250f1
6 changed files with 288 additions and 14 deletions

View File

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