12 lines
184 B
Go
12 lines
184 B
Go
![]() |
package model
|
||
|
|
||
|
import "SciencesServer/app/common/model"
|
||
|
|
||
|
type UserPatent struct {
|
||
|
*model.UserPatent
|
||
|
}
|
||
|
|
||
|
func NewUserPatent() *UserPatent {
|
||
|
return &UserPatent{model.NewUserPatent()}
|
||
|
}
|