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.
|
- package content_reward
-
- import (
- "applet/app/svc/content_reward"
- "github.com/gin-gonic/gin"
- )
-
- // VideoBase
- // @Summary 制度中心-内容奖励-短视频基本信息
- // @Tags 蛋蛋能量
- // @Description 制度中心-内容奖励-短视频基本信息
- // @Accept json
- // @Produce json
- // @param Authorization header string true "验证参数Bearer和token空格拼接"
- // @Success 200 {object} md.VideoBaseData "具体数据"
- // @Failure 400 {object} md.Response "具体错误"
- // @Router /api/institutionalManagement/contentReward/video/base [get]
- func VideoBase(c *gin.Context) {
- content_reward.VideoBase(c)
- }
-
- // VideoBaseSave
- // @Summary 制度中心-内容奖励-短视频基本配置保存
- // @Tags 蛋蛋能量
- // @Description 制度中心-内容奖励-短视频基本配置保存
- // @Accept json
- // @Produce json
- // @param Authorization header string true "验证参数Bearer和token空格拼接"
- // @Param req body md.VideoBaseData true "(分页信息必填)"
- // @Success 200 {string} "具体数据"
- // @Failure 400 {object} md.Response "具体错误"
- // @Router /api/institutionalManagement/contentReward/video/save [post]
- func VideoBaseSave(c *gin.Context) {
- content_reward.VideoBaseSave(c)
- }
|