wupengfei
2025-02-25 e53e33dd46fdf138c851b10f12cdc00131a8d644
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 || {}),
  });
}