Files
arenax-server/api/merchantAdmin/v1/merchantAdmin.go
2025-06-11 16:01:00 +08:00

15 lines
361 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 {
MerchantId int64 `json:"merchantId"`
Username string `json:"username"`
Role string `json:"role"`
}