新增根据网关账号获取门店信息

This commit is contained in:
chy
2025-07-08 19:25:20 +08:00
parent afa6b8bcd1
commit e3ee281c7f
9 changed files with 57 additions and 1 deletions

View File

@ -27,6 +27,8 @@ type (
GetStoreAreaList(ctx context.Context, in *model.StoreAreaListIn) (out *model.StoreAreaListOut, err error)
GetNetfeeSetting(ctx context.Context, in *model.GetNetfeeSettingIn) (out *model.StoreNetfeeAreaLevel, err error)
SaveNetfeeSetting(ctx context.Context, in *model.SaveNetfeeSettingIn) (out *model.SaveNetfeeSettingOut, err error)
// GetStoreInfoByNetbarAccount 根据网关账号获取门店信息
GetStoreInfoByNetbarAccount(ctx context.Context, in *model.StoreByNetbarAccountIn) (out *model.StoreByNetbarAccountOut, err error)
}
)