Files
cas_tt_cloud_backend/app/enterprise/model/technology_patent.go
2021-10-15 11:05:38 +08:00

12 lines
238 B
Go

package model
import "SciencesServer/app/common/model"
type TechnologyPatent struct {
*model.TechnologyPatent
}
func NewTechnologyPatent() *TechnologyPatent {
return &TechnologyPatent{TechnologyPatent: model.NewTechnologyPatent()}
}