123456789101112131415161718192021 |
- package controllers
- import (
- "fmt"
- "hongze/hongze_open_api/utils"
- )
- // QuanShiControllerCommon 报告模块
- type QuanShiControllerCommon struct {
- BaseCommon
- }
- // CallBack
- // @Title 全时回调接口
- // @Description 全时回调接口
- // @router /callback [post]
- func (c *QuanShiControllerCommon) CallBack() {
- utils.FileLog.Info(fmt.Sprintf("全时回调参数:%s", string(c.Ctx.Input.RequestBody)))
- //c.OkDetailed("ok", "获取成功")
- c.Ok()
- }
|