Files
arenax-server/api/merchantAdmin/v1/merchantAdmin.go

13 lines
265 B
Go

package v1
import (
"github.com/gogf/gf/v2/frame/g"
)
type MerchantAdminInfoReq struct {
g.Meta `path:"/merchant/info" method:"get" tags:"MerchantAdmin" summary:"(商户管理员)获取商户管理员信息"`
}
type MerchantAdminInfoRes struct {
Name string
}