mirror of
https://github.com/kongyuebin1/dongfeng-pay.git
synced 2024-11-13 14:09:20 +08:00
24 lines
543 B
Go
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"
|
|
}
|