You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dongfeng-pay/jhgateway/controllers/gateway/error_gateway.go

24 lines
543 B
Go

5 years ago
/***************************************************
** @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"
}