quanshi.go 457 B

123456789101112131415161718192021
  1. package controllers
  2. import (
  3. "fmt"
  4. "hongze/hongze_open_api/utils"
  5. )
  6. // QuanShiControllerCommon 报告模块
  7. type QuanShiControllerCommon struct {
  8. BaseCommon
  9. }
  10. // CallBack
  11. // @Title 全时回调接口
  12. // @Description 全时回调接口
  13. // @router /callback [post]
  14. func (c *QuanShiControllerCommon) CallBack() {
  15. utils.FileLog.Info(fmt.Sprintf("全时回调参数:%s", string(c.Ctx.Input.RequestBody)))
  16. //c.OkDetailed("ok", "获取成功")
  17. c.Ok()
  18. }