蛋蛋星球 后台端
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 advertising
  2. import (
  3. "applet/app/svc/advertising"
  4. "github.com/gin-gonic/gin"
  5. )
  6. // GetLimit
  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.AdvertisingLimit "具体数据"
  14. // @Failure 400 {object} md.Response "具体错误"
  15. // @Router /api/advertising/getLimit [get]
  16. func GetLimit(c *gin.Context) {
  17. advertising.GetLimit(c)
  18. }
  19. // SetLimit
  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.AdvertisingLimit true "(分页信息必填)"
  27. // @Success 200 {string} "具体数据"
  28. // @Failure 400 {object} md.Response "具体错误"
  29. // @Router /api/advertising/setLimit [post]
  30. func SetLimit(c *gin.Context) {
  31. advertising.SetLimit(c)
  32. }