supply.go 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. package api
  2. import (
  3. "3dshow-customer/db/repo"
  4. "github.com/gin-gonic/gin"
  5. )
  6. func Supply(r *GinRouter) {
  7. // CreateCRUD(r, "/supply", &CRUDOption{
  8. // Collection: repo.CollectionSupply,
  9. // NewModel: func(c *gin.Context, _ *ApiSession) (interface{}, error) {
  10. // entity := &model.Supply{}
  11. // c.ShouldBindJSON(entity)
  12. // return entity, nil
  13. // },
  14. // EmtyModel: func(c *gin.Context, apictx *ApiSession) interface{} {
  15. // return &model.Supply{}
  16. // },
  17. // JWT: true,
  18. // SearchProject: []string{"name", "avatar", "contact", "createTime"},
  19. // DetailProject: []string{"name", "avatar", "contact", "createTime"},
  20. // })
  21. r.GET("/supply/list", supplyList)
  22. }
  23. func supplyList(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  24. page, size, query := UtilQueryPageSize(c)
  25. return repo.RepoPageSearch(apictx.CreateRepoCtx(), &repo.PageSearchOptions{
  26. Db: "supply-user",
  27. CollectName: "users",
  28. Page: page,
  29. Size: size,
  30. Query: query,
  31. Project: []string{"_id", "name", "avatar", "email"},
  32. Sort: repo.Map{"createTime": -1},
  33. })
  34. }