增加抽取参数的方法
This commit is contained in:
parent
2af054db74
commit
76ca91c2a9
15
request/param.go
Normal file
15
request/param.go
Normal 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{} // 默认值
|
||||
}
|
Loading…
Reference in New Issue
Block a user