goProject/trunk/framework/mqMgr/model/irequest.go
皮蛋13361098506 1b77f62820 初始化项目
2025-01-06 16:01:02 +08:00

14 lines
298 B
Go

package model
// IRequest 请求对象接口
type IRequest interface {
// GetActionName 获取方法名
GetActionName() string
// SetCommonRequestObject 设置公共请求对象
SetCommonRequest(*CommonRequest)
// AssembleParamMap 组装参数字典
AssembleParamMap() map[string]string
}