wupengfei
2025-05-07 6bac509f8e6efc205d9f37a84c9b019ec828467a
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
/* eslint-disable */
// @ts-ignore
import { request } from '@/utils/request';
 
/** BEDL_C00601
智能清分台账编码近期明细查询1_银企直联 POST /api/PingAnBEDL/InquiryIntoTheCurrentDetailsOfMainSubaccountAccountOne */
export async function inquiryIntoTheCurrentDetailsOfMainSubaccountAccountOne(
  body: API.PrimaryAcctDetialInputBase,
  options?: API.RequestConfig
) {
  return request<API.InquiryIntoTheCurrentDetailsOfMainSubaccountAccountOutput>(
    '/api/PingAnBEDL/InquiryIntoTheCurrentDetailsOfMainSubaccountAccountOne',
    {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json',
      },
      data: body,
      ...(options || {}),
    }
  );
}
 
/** BEDL_C00602
智能清分台账编码近期明细查询2_银企直联 POST /api/PingAnBEDL/InquiryIntoTheCurrentDetailsOfMainSubaccountAccountTwo */
export async function inquiryIntoTheCurrentDetailsOfMainSubaccountAccountTwo(
  body: API.InquiryIntoTheCurrentDetailsOfMainSubaccountAccountTwoInput,
  options?: API.RequestConfig
) {
  return request<API.InquiryIntoTheCurrentDetailsOfMainSubaccountAccountOutput>(
    '/api/PingAnBEDL/InquiryIntoTheCurrentDetailsOfMainSubaccountAccountTwo',
    {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json',
      },
      data: body,
      ...(options || {}),
    }
  );
}
 
/** BEDL_C014
智能清分账户转账笔数和限额维护和查询_银企直联 POST /api/PingAnBEDL/MaintainInquireSmartClearingAccount */
export async function maintainInquireSmartClearingAccount(
  body: API.MaintainInquireSmartClearingAccountInput,
  options?: API.RequestConfig
) {
  return request<API.MaintainInquireSmartClearingAccountOutput>(
    '/api/PingAnBEDL/MaintainInquireSmartClearingAccount',
    {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json',
      },
      data: body,
      ...(options || {}),
    }
  );
}
 
/** BEDL_C011
转账对手白名单维护_银企直联 POST /api/PingAnBEDL/MaintainTransferCounterpartyWhiteList */
export async function maintainTransferCounterpartyWhiteList(
  body: API.MaintainTransferCounterpartyWhiteListInput,
  options?: API.RequestConfig
) {
  return request<API.MaintainTransferCounterpartyWhiteListOutput>(
    '/api/PingAnBEDL/MaintainTransferCounterpartyWhiteList',
    {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json',
      },
      data: body,
      ...(options || {}),
    }
  );
}
 
/** BEDL_C012
智能清分来账自动清分规则维护_银企直联 POST /api/PingAnBEDL/MaintainVosAcctAutomaticClearingRule */
export async function maintainVosAcctAutomaticClearingRule(
  body: API.MaintainVosAcctAutomaticClearingRuleInput,
  options?: API.RequestConfig
) {
  return request<API.MaintainVosAcctAutomaticClearingRuleOutput>(
    '/api/PingAnBEDL/MaintainVosAcctAutomaticClearingRule',
    {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json',
      },
      data: body,
      ...(options || {}),
    }
  );
}
 
/** BEDL_C007
支付单状态查询_银企直联 POST /api/PingAnBEDL/PaymentOrderStatusQuery */
export async function paymentOrderStatusQuery(
  body: API.PaymentOrderStatusQueryInput,
  options?: API.RequestConfig
) {
  return request<API.PaymentOrderStatusQueryOutput>('/api/PingAnBEDL/PaymentOrderStatusQuery', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
 
/** BEDL_C006
智能清分台帐编码近期明细查询_银企直联 POST /api/PingAnBEDL/PrimaryAcctDetialQuery */
export async function primaryAcctDetialQuery(
  body: API.PrimaryAcctDetialQueryInput,
  options?: API.RequestConfig
) {
  return request<API.PrimaryAcctDetialQueryOutput>('/api/PingAnBEDL/PrimaryAcctDetialQuery', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
 
/** BEDL_C001
智能清分台账编码关系查询_银企直联 POST /api/PingAnBEDL/PrimaryAcctRelationshipQuery */
export async function primaryAcctRelationshipQuery(
  body: API.PrimaryAcctRelationshipQueryInput,
  options?: API.RequestConfig
) {
  return request<API.PrimaryAcctRelationshipQueryOutput>(
    '/api/PingAnBEDL/PrimaryAcctRelationshipQuery',
    {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json',
      },
      data: body,
      ...(options || {}),
    }
  );
}
 
/** BEDL_C013
能清分来账自动清分规则查询_银企直联 POST /api/PingAnBEDL/QueryVosAcctAutomaticClearingRule */
export async function queryVosAcctAutomaticClearingRule(
  body: API.QueryVosAcctAutomaticClearingRuleInput,
  options?: API.RequestConfig
) {
  return request<API.QueryVosAcctAutomaticClearingRuleOutput>(
    '/api/PingAnBEDL/QueryVosAcctAutomaticClearingRule',
    {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json',
      },
      data: body,
      ...(options || {}),
    }
  );
}
 
/** BEDL_C008
清分台账编码余额查询_银企直联 POST /api/PingAnBEDL/SubAccountBalanceQuery */
export async function subAccountBalanceQuery(
  body: API.SubAccountBalanceQueryInput,
  options?: API.RequestConfig
) {
  return request<API.SubAccountBalanceQueryOutput>('/api/PingAnBEDL/SubAccountBalanceQuery', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
 
/** BEDL_C005
清分台账编码余额调整_银企直联 POST /api/PingAnBEDL/SubAcctBalanceAdjust */
export async function subAcctBalanceAdjust(
  body: API.SubAcctBalanceAdjustInput,
  options?: API.RequestConfig
) {
  return request<API.SubAcctBalanceAdjustOutput>('/api/PingAnBEDL/SubAcctBalanceAdjust', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
 
/** BEDL_C002
清分台账编码维护和权限同步(AUDR)_银企直联 POST /api/PingAnBEDL/SubAcctMaintenance */
export async function subAcctMaintenance(
  body: API.SubAcctMaintenanceInput,
  options?: API.RequestConfig
) {
  return request<API.SubAcctMaintenanceOutput>('/api/PingAnBEDL/SubAcctMaintenance', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
 
/** BEDL_C009
清分台账编码手工结息_银企直联 POST /api/PingAnBEDL/SubAcctSettlement */
export async function subAcctSettlement(
  body: API.SubAcctSettlementInput,
  options?: API.RequestConfig
) {
  return request<API.SubAcctSettlementOutput>('/api/PingAnBEDL/SubAcctSettlement', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
 
/** 此处后端没有提供注释 GET /api/PingAnBEDL/Test */
export async function test(options?: API.RequestConfig) {
  return request<number>('/api/PingAnBEDL/Test', {
    method: 'GET',
    ...(options || {}),
  });
}