蛋蛋星球 后台端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

36 lines
1.2 KiB

  1. package cloud_bundle
  2. import (
  3. "applet/app/svc/cloud_bundle"
  4. "github.com/gin-gonic/gin"
  5. )
  6. // VersionBase
  7. // @Summary 云打包-云打包-图片配置
  8. // @Tags 云打包
  9. // @Description 云打包-图片配置
  10. // @Accept json
  11. // @Produce json
  12. // @param Authorization header string true "验证参数Bearer和token空格拼接"
  13. // @Success 200 {object} md.CloudBundleVersionResp "具体数据"
  14. // @Failure 400 {object} md.Response "具体错误"
  15. // @Router /api/cloudBundle/version/base [get]
  16. func VersionBase(c *gin.Context) {
  17. cloud_bundle.VersionBase(c)
  18. }
  19. // VersionBaseSave
  20. // @Summary 云打包-图片配置
  21. // @Tags 云打包
  22. // @Description 云打包-图片配置
  23. // @Accept json
  24. // @Produce json
  25. // @param Authorization header string true "验证参数Bearer和token空格拼接"
  26. // @Param req body md.CloudBundleVersion true "(分页信息必填)"
  27. // @Success 200 {string} "具体数据"
  28. // @Failure 400 {object} md.Response "具体错误"
  29. // @Router /api/cloudBundle/version/base/save [post]
  30. func VersionBaseSave(c *gin.Context) {
  31. cloud_bundle.VersionBaseSave(c)
  32. }