feat:完善入驻信息管理
This commit is contained in:
20
app/api/enterprise/controller/settled/instance.go
Normal file
20
app/api/enterprise/controller/settled/instance.go
Normal file
@ -0,0 +1,20 @@
|
||||
package settled
|
||||
|
||||
import "SciencesServer/app/session"
|
||||
|
||||
type Instance struct {
|
||||
*session.Enterprise
|
||||
local string
|
||||
}
|
||||
|
||||
type InstanceHandle func(session *session.Enterprise, local string) *Instance
|
||||
|
||||
func (c *Instance) Index() {
|
||||
|
||||
}
|
||||
|
||||
func NewInstance() InstanceHandle {
|
||||
return func(session *session.Enterprise, local string) *Instance {
|
||||
return &Instance{Enterprise: session, local: local}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user