wupengfei
2025-04-07 1ea740c51e84a80e6eb069846ba4a58438f9795c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* eslint-disable */
// @ts-ignore
import { request } from '@/utils/request';
 
/** 获取银行联行号查询 POST /api/PingAn/GetBankNo */
export async function getBankNo(body: API.QueryBankNoInput, options?: API.RequestConfig) {
  return request<API.BankNoQueryOutput>('/api/PingAn/GetBankNo', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}