feat:完善信息
This commit is contained in:
25
app/enterprise/controller/technology/instance.go
Normal file
25
app/enterprise/controller/technology/instance.go
Normal file
@ -0,0 +1,25 @@
|
||||
package technology
|
||||
|
||||
import "SciencesServer/app/service"
|
||||
|
||||
// Instance 技术管理
|
||||
type Instance struct{ *service.SessionEnterprise }
|
||||
|
||||
type InstanceHandle func(enterprise *service.SessionEnterprise) *Instance
|
||||
|
||||
func (c *Instance) List(status, page, pageSize int) {
|
||||
}
|
||||
|
||||
func (c *Instance) Form() {
|
||||
|
||||
}
|
||||
|
||||
func (c *Instance) Delete() {
|
||||
|
||||
}
|
||||
|
||||
func NewInstance() InstanceHandle {
|
||||
return func(enterprise *service.SessionEnterprise) *Instance {
|
||||
return &Instance{enterprise}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user