|
@@ -68,9 +68,9 @@ public class HfMerchantConfigController extends BaseController {
|
|
|
}
|
|
|
|
|
|
@ApiOperation("根据机构id查询汇付商户配置")
|
|
|
- @GetMapping(value = "/queryByTenantId")
|
|
|
- public HttpResponseResult<HfMerchantConfig> queryByTenantId(String payerName, Integer id) {
|
|
|
- return succeed(hfMerchantConfigService.queryByTenantId(id, payerName));
|
|
|
+ @GetMapping(value = "/queryByTenantId/{id}")
|
|
|
+ public HttpResponseResult<HfMerchantConfig> queryByTenantId(@ApiParam(value = "机构id", required = true) @PathVariable Integer id) {
|
|
|
+ return succeed(hfMerchantConfigService.queryByTenantId(id));
|
|
|
}
|
|
|
|
|
|
@ApiOperation("分页查询汇付商户配置")
|