15 lines
358 B
Go
15 lines
358 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"`
|
|
}
|