feat:完善信息
This commit is contained in:
19
app/api/enterprise/controller/menu/instance.go
Normal file
19
app/api/enterprise/controller/menu/instance.go
Normal file
@ -0,0 +1,19 @@
|
||||
package menu
|
||||
|
||||
import "SciencesServer/app/service"
|
||||
|
||||
type Instance struct {
|
||||
*service.SessionEnterprise
|
||||
}
|
||||
|
||||
type InstanceHandle func(enterprise *service.SessionEnterprise) *Instance
|
||||
|
||||
func (c *Instance) List() {
|
||||
|
||||
}
|
||||
|
||||
func NewInstance() InstanceHandle {
|
||||
return func(enterprise *service.SessionEnterprise) *Instance {
|
||||
return &Instance{enterprise}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user