| | |
| | | // @Tags Satisfaction |
| | | // @Summary 更新满意度 |
| | | // @Produce application/json |
| | | // @Param object body request.UpdateSatisfactions true "查询参数" |
| | | // @Success 200 {object} contextx.Response{} |
| | | // @Param object body request.UpdateSatisfactions true "查询参数" |
| | | // @Success 200 {object} contextx.Response{} |
| | | // @Router /api/satisfaction/update [put] |
| | | func (s *SatisfactionApi) Update(c *gin.Context) { |
| | | var params request.UpdateSatisfactions |
| | |
| | | |
| | | // List |
| | | // |
| | | // @Tags Satisfaction |
| | | // @Summary 满意度列表 |
| | | // @Produce application/json |
| | | // @Success 200 {object} contextx.Response{data=response.SatisfactionResponse} |
| | | // @Router /api/satisfaction/list [get] |
| | | // @Tags Satisfaction |
| | | // @Summary 满意度列表 |
| | | // @Produce application/json |
| | | // @Success 200 {object} contextx.Response{data=response.SatisfactionResponse} |
| | | // @Router /api/satisfaction/list [get] |
| | | func (s *SatisfactionApi) List(c *gin.Context) { |
| | | ctx, ok := contextx.NewContext(c, nil) |
| | | if !ok { |