24 lines
364 B
Go
24 lines
364 B
Go
package technology
|
|
|
|
import "SciencesServer/app/session"
|
|
|
|
type Demand struct {
|
|
*session.Admin
|
|
}
|
|
|
|
type DemandHandle func(session *session.Admin) *Demand
|
|
|
|
func (c *Demand) Instance(tenantID uint64, page, pageSize int) {
|
|
|
|
}
|
|
|
|
func (c *Demand) Delete() {
|
|
|
|
}
|
|
|
|
func NewDemand() DemandHandle {
|
|
return func(session *session.Admin) *Demand {
|
|
return &Demand{session}
|
|
}
|
|
}
|