feat:完善项目

This commit is contained in:
henry
2022-01-17 14:34:53 +08:00
parent 4850f6348f
commit 8385800662
6 changed files with 196 additions and 0 deletions

View File

@ -0,0 +1,23 @@
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}
}
}