supply.go 661 B

12345678910111213141516171819202122232425262728
  1. package api
  2. import (
  3. "3dshow/db/model"
  4. "3dshow/db/repo"
  5. "time"
  6. "github.com/gin-gonic/gin"
  7. )
  8. func Supply(r *GinRouter) {
  9. CreateCRUD(r, "/supply", &CRUDOption{
  10. Collection: repo.CollectionSupply,
  11. NewModel: func(c *gin.Context, _ *ApiSession) (interface{}, error) {
  12. entity := &model.Supply{}
  13. c.ShouldBindJSON(entity)
  14. entity.CreateTime = time.Now()
  15. return entity, nil
  16. },
  17. EmtyModel: func(c *gin.Context, apictx *ApiSession) interface{} {
  18. return &model.Supply{}
  19. },
  20. JWT: true,
  21. SearchProject: []string{"name", "avatar", "contact", "createTime"},
  22. DetailProject: []string{"name", "avatar", "contact", "createTime"},
  23. })
  24. }