增加抽取参数的方法

This commit is contained in:
白茶清欢 2021-07-26 17:14:12 +08:00
parent 2af054db74
commit 76ca91c2a9

15
request/param.go Normal file
View File

@ -0,0 +1,15 @@
// Package request 请求转发参数处理
//
// Author go_developer@163.com<白茶清欢>
package request
// ExtractParameterRule抽取参数提取的规则
//
// Author go_developer@163.com<白茶清欢>
type ExtractParameterRule struct {
RequestParameterName string // 入参参数名称
ForwardParameterName string // 转发参数名称
ValueType string // 值的数据类型
Required bool // 是否必须存在
DefaultValue interface{} // 默认值
}