2021-10-09 11:55:54 +08:00
|
|
|
package technology
|
|
|
|
|
2021-10-13 11:23:55 +08:00
|
|
|
import "SciencesServer/app/service"
|
|
|
|
|
2021-10-09 11:55:54 +08:00
|
|
|
// Patent 专利管理
|
2021-10-13 11:23:55 +08:00
|
|
|
type Patent struct {
|
|
|
|
*service.SessionEnterprise
|
|
|
|
local uint64
|
|
|
|
}
|
|
|
|
|
|
|
|
type PatentHandle func(enterprise *service.SessionEnterprise, local uint64) *Patent
|
|
|
|
|
|
|
|
func NewPatent() PatentHandle {
|
|
|
|
return func(enterprise *service.SessionEnterprise, local uint64) *Patent {
|
|
|
|
return &Patent{SessionEnterprise: enterprise, local: local}
|
|
|
|
}
|
|
|
|
}
|