base.go 295 B

12345678910111213141516171819
  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/net/ghttp"
  10. )
  11. type BaseController struct {
  12. }
  13. // Init 自动执行的初始化方法
  14. func (c *BaseController) Init(r *ghttp.Request) {
  15. }