service-background.go 772 B

123456789101112131415161718192021222324252627282930313233343536
  1. package api
  2. import (
  3. "sku3dweb/db/model"
  4. "sku3dweb/db/repo"
  5. "time"
  6. "github.com/gin-gonic/gin"
  7. )
  8. func CreateBackgroundRouter(router *GinRouter) {
  9. //创建贴图操作
  10. CreateCRUD(router, "/background", &CRUDOption{
  11. Collection: repo.CollectionBackground,
  12. NewModel: func(c *gin.Context) interface{} {
  13. body := &struct {
  14. Type int32
  15. }{}
  16. c.ShouldBindJSON(&body)
  17. return &model.CanvasBackground{
  18. Type: body.Type,
  19. Order: 0,
  20. Color: &model.Vect3{0.749, 0.749, 0.749},
  21. Image: &model.OssType{Url: "", Size: 0},
  22. CreateTime: time.Now(),
  23. }
  24. },
  25. EmtyModel: func(*gin.Context) interface{} {
  26. return &model.CanvasBackground{}
  27. },
  28. SearchProject: []string{"image", "createTime", "type", "order", "color"},
  29. })
  30. }