zhengyiming
2025-02-19 df7c6af1c1cfd2e9bda249e381aecb5482120d14
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/* eslint-disable */
// @ts-ignore
import { request } from '@/utils/request';
 
/** BEDL_EDZ001
对账数据查询_银企直联 POST /api/PingAnELCP/EDZ001 */
export async function eDZ001(body: API.EDZ001Input, options?: API.RequestConfig) {
  return request<API.EDZ001Output>('/api/PingAnELCP/EDZ001', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
 
/** BEDL_EDZ002
对账结果反馈_银企直联 POST /api/PingAnELCP/EDZ002 */
export async function eDZ002(body: API.EDZ002Input, options?: API.RequestConfig) {
  return request<API.EDZ002Output>('/api/PingAnELCP/EDZ002', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
 
/** BEDL_ELCP07
月结单查询(新)_银企直联 POST /api/PingAnELCP/MonthlyStatementQueryNew */
export async function monthlyStatementQueryNew(
  body: API.MonthlyStatementQueryNewInput,
  options?: API.RequestConfig
) {
  return request<API.MonthlyStatementQueryNewOutput>('/api/PingAnELCP/MonthlyStatementQueryNew', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
 
/** BEDL_ELCP08
当日PDF回单文件查询接口(新)_银企直联 POST /api/PingAnELCP/QueryInterfaceOfPDFReturnSingleFileOnSameDayNew */
export async function queryInterfaceOfPDFReturnSingleFileOnSameDayNew(
  body: API.QueryInterfaceOfPDFReturnSingleFileOnSameDayNewInput,
  options?: API.RequestConfig
) {
  return request<API.QueryInterfaceOfPDFReturnSingleFileOnSameDayNewOutput>(
    '/api/PingAnELCP/QueryInterfaceOfPDFReturnSingleFileOnSameDayNew',
    {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json',
      },
      data: body,
      ...(options || {}),
    }
  );
}
 
/** BEDL_ELC009
当日历史回单数据查询接口_银企直联 POST /api/PingAnELCP/SameDayHistoryReceiptDataQuery */
export async function sameDayHistoryReceiptDataQuery(
  body: API.SameDayHistoryReceiptDataQueryInput,
  options?: API.RequestConfig
) {
  return request<API.SameDayHistoryReceiptDataQueryOutput>(
    '/api/PingAnELCP/SameDayHistoryReceiptDataQuery',
    {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json',
      },
      data: body,
      ...(options || {}),
    }
  );
}
 
/** BEDL_ELC001
回单数据查询_银企直联 POST /api/PingAnELCP/SingleDataQuery */
export async function singleDataQuery(body: API.SingleDataQueryInput, options?: API.RequestConfig) {
  return request<API.SingleDataQueryOutput>('/api/PingAnELCP/SingleDataQuery', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
 
/** BEDL_ELCP10
单笔或多笔回单PDF合并下载(新)_银企直联 POST /api/PingAnELCP/SingleOrBatchReceiptPDFMergeDownloadNew */
export async function singleOrBatchReceiptPDFMergeDownloadNew(
  body: API.SingleOrBatchReceiptPDFMergeDownloadNewInput,
  options?: API.RequestConfig
) {
  return request<API.SingleOrBatchReceiptPDFMergeDownloadNewOutput>(
    '/api/PingAnELCP/SingleOrBatchReceiptPDFMergeDownloadNew',
    {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json',
      },
      data: body,
      ...(options || {}),
    }
  );
}