base.go 378 B

123456789101112131415161718192021
  1. /*
  2. * @desc:
  3. * @company:云南奇讯科技有限公司
  4. * @Author: yixiaohu
  5. * @Date: 2022/3/4 18:19
  6. */
  7. package controller
  8. import (
  9. "github.com/gogf/gf/v2/frame/g"
  10. "github.com/gogf/gf/v2/net/ghttp"
  11. )
  12. type BaseController struct {
  13. }
  14. // Init 自动执行的初始化方法
  15. func (c *BaseController) Init(r *ghttp.Request) {
  16. g.Log().Debug(r.GetCtx(), "BaseController.Init")
  17. }