dongfeng-pay/jhgateway/controllers/gateway/error_gateway.go
2019-12-19 14:47:58 +08:00

24 lines
543 B
Go

/***************************************************
** @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/astaxie/beego"
)
type ErrorGatewayController struct {
beego.Controller
}
func (c *ErrorGatewayController) ErrorParams() {
beego.ReadFromRequest(&c.Controller)
c.TplName = "err/params.html"
}