Files
2022-01-17 14:34:53 +08:00

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}
}
}