123456789101112131415161718192021 |
- package controllers
- import (
- "fmt"
- "hongze/hongze_open_api/utils"
- )
- type QuanShiControllerCommon struct {
- BaseCommon
- }
- func (c *QuanShiControllerCommon) CallBack() {
- utils.FileLog.Info(fmt.Sprintf("全时回调参数:%s", string(c.Ctx.Input.RequestBody)))
-
- c.Ok()
- }
|