13 lines
204 B
Go
13 lines
204 B
Go
package model
|
|
|
|
import "SciencesServer/app/common/model"
|
|
|
|
// SysPatent 专利信息
|
|
type SysPatent struct {
|
|
*model.SysPatent
|
|
}
|
|
|
|
func NewSysPatent() *SysPatent {
|
|
return &SysPatent{model.NewSysPatent()}
|
|
}
|