新增根据网关账号获取门店信息
This commit is contained in:
@ -24,4 +24,5 @@ type IStoreV1 interface {
|
||||
GetStoreAreaList(ctx context.Context, req *v1.GetStoreAreaListReq) (res *v1.GetStoreAreaListRes, err error)
|
||||
GetNetfeeSetting(ctx context.Context, req *v1.GetNetfeeSettingReq) (res *v1.GetNetfeeSettingRes, err error)
|
||||
SaveNetfeeSetting(ctx context.Context, req *v1.SaveNetfeeSettingReq) (res *v1.SaveNetfeeSettingRes, err error)
|
||||
GetStoreInfoByNetbar(ctx context.Context, req *v1.GetStoreInfoByNetbarReq) (res *v1.GetStoreInfoByNetbarRes, err error)
|
||||
}
|
||||
|
||||
@ -143,3 +143,12 @@ type SaveNetfeeSettingReq struct {
|
||||
type SaveNetfeeSettingRes struct {
|
||||
Success bool `json:"success" dc:"是否成功"`
|
||||
}
|
||||
|
||||
type GetStoreInfoByNetbarReq struct {
|
||||
g.Meta `path:"/store/getStoreInfoByNetbar" method:"get" tags:"PC/Store" summary:"(用户)根据网关账号获取门店信息"`
|
||||
NetbarAccount string `json:"netbarAccount" v:"required" dc:"网关账号"`
|
||||
}
|
||||
|
||||
type GetStoreInfoByNetbarRes struct {
|
||||
Store interface{} `json:"store"`
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user