dongfeng-pay/gateway/controllers/gateway/error_controller.go

24 lines
551 B
Go
Raw Normal View History

2021-04-27 15:33:49 +08:00
/***************************************************
** @Desc : This file for ...
** @Time : 2019/10/26 16:56
** @Author : yuebin
** @File : error_gateway
** @Last Modified by : yuebin
** @Last Modified time: 2019/10/26 16:56
** @Software: GoLand
****************************************************/
package gateway
import (
"github.com/beego/beego/v2/server/web"
2021-04-27 15:33:49 +08:00
)
type ErrorGatewayController struct {
web.Controller
2021-04-27 15:33:49 +08:00
}
func (c *ErrorGatewayController) ErrorParams() {
web.ReadFromRequest(&c.Controller)
2021-04-27 15:33:49 +08:00
c.TplName = "err/params.html"
}