Files

12 lines
184 B
Go
Raw Normal View History

2022-01-14 17:09:06 +08:00
package model
import "SciencesServer/app/common/model"
type UserPatent struct {
*model.UserPatent
}
func NewUserPatent() *UserPatent {
return &UserPatent{model.NewUserPatent()}
}