蛋蛋星球 后台端
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.3 KiB

  1. package content_reward
  2. import (
  3. "applet/app/svc/content_reward"
  4. "github.com/gin-gonic/gin"
  5. )
  6. // PlayletBase
  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.PlayletBaseData "具体数据"
  14. // @Failure 400 {object} md.Response "具体错误"
  15. // @Router /api/institutionalManagement/contentReward/playlet/base [get]
  16. func PlayletBase(c *gin.Context) {
  17. content_reward.PlayletBase(c)
  18. }
  19. // PlayletBaseSave
  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.PlayletBaseData true "(分页信息必填)"
  27. // @Success 200 {string} "具体数据"
  28. // @Failure 400 {object} md.Response "具体错误"
  29. // @Router /api/institutionalManagement/contentReward/playlet/save [post]
  30. func PlayletBaseSave(c *gin.Context) {
  31. content_reward.PlayletBaseSave(c)
  32. }