15 lines
383 B
Go
15 lines
383 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"`
|
|
StoreId int64 `json:"storeId"` // 下属门店 id
|
|
}
|