| 1234567891011121314151617181920 |
- // Controller基础类,所有Controller会继承此类
- package controllers
- import (
- "github.com/astaxie/beego"
- )
- // Operations about tokens
- type BaseController struct {
- beego.Controller
- }
- //总响应数据及错误信息
- type CommonResult struct {
- Code int `json:"code"`
- Msg string `json:"msg"`
- Data struct {
- Info interface{} `json:"info"`
- } `json:"data"`
- }
|