@antchain/ato 1.8.69 → 1.8.73

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@antchain/ato",
3
- "version": "1.8.69",
3
+ "version": "1.8.73",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
package/src/client.ts CHANGED
@@ -1408,6 +1408,8 @@ export class CancelFundPlanRequest extends $tea.Model {
1408
1408
  // RENTING_OUT_REDEEM:退租赎回
1409
1409
  // RENTING_AND_RESALE_REDEEM:租转售赎回
1410
1410
  cancelReason: string;
1411
+ // 融资单的资方社会信用代码
1412
+ fundId?: string;
1411
1413
  static names(): { [key: string]: string } {
1412
1414
  return {
1413
1415
  authToken: 'auth_token',
@@ -1415,6 +1417,7 @@ export class CancelFundPlanRequest extends $tea.Model {
1415
1417
  orderId: 'order_id',
1416
1418
  merchantId: 'merchant_id',
1417
1419
  cancelReason: 'cancel_reason',
1420
+ fundId: 'fund_id',
1418
1421
  };
1419
1422
  }
1420
1423
 
@@ -1425,6 +1428,7 @@ export class CancelFundPlanRequest extends $tea.Model {
1425
1428
  orderId: 'string',
1426
1429
  merchantId: 'string',
1427
1430
  cancelReason: 'string',
1431
+ fundId: 'string',
1428
1432
  };
1429
1433
  }
1430
1434
 
@@ -1530,6 +1534,8 @@ export class SyncFundMerchantpromiseRequest extends $tea.Model {
1530
1534
  merchantId: string;
1531
1535
  // json字符串,填入「MerchantPromiseReq」的json字符串
1532
1536
  bizContent: string;
1537
+ // 资方公司社会信用代码
1538
+ fundId?: string;
1533
1539
  static names(): { [key: string]: string } {
1534
1540
  return {
1535
1541
  authToken: 'auth_token',
@@ -1537,6 +1543,7 @@ export class SyncFundMerchantpromiseRequest extends $tea.Model {
1537
1543
  orderId: 'order_id',
1538
1544
  merchantId: 'merchant_id',
1539
1545
  bizContent: 'biz_content',
1546
+ fundId: 'fund_id',
1540
1547
  };
1541
1548
  }
1542
1549
 
@@ -1547,6 +1554,7 @@ export class SyncFundMerchantpromiseRequest extends $tea.Model {
1547
1554
  orderId: 'string',
1548
1555
  merchantId: 'string',
1549
1556
  bizContent: 'string',
1557
+ fundId: 'string',
1550
1558
  };
1551
1559
  }
1552
1560
 
@@ -1601,6 +1609,8 @@ export class SyncFundFinanceloanresultsRequest extends $tea.Model {
1601
1609
  merchantId: string;
1602
1610
  // json字符串,填入「FinanceLoanResultsReq」的json字符串
1603
1611
  bizContent: string;
1612
+ // 资方的社会信用代码
1613
+ fundId?: string;
1604
1614
  static names(): { [key: string]: string } {
1605
1615
  return {
1606
1616
  authToken: 'auth_token',
@@ -1608,6 +1618,7 @@ export class SyncFundFinanceloanresultsRequest extends $tea.Model {
1608
1618
  orderId: 'order_id',
1609
1619
  merchantId: 'merchant_id',
1610
1620
  bizContent: 'biz_content',
1621
+ fundId: 'fund_id',
1611
1622
  };
1612
1623
  }
1613
1624
 
@@ -1618,6 +1629,7 @@ export class SyncFundFinanceloanresultsRequest extends $tea.Model {
1618
1629
  orderId: 'string',
1619
1630
  merchantId: 'string',
1620
1631
  bizContent: 'string',
1632
+ fundId: 'string',
1621
1633
  };
1622
1634
  }
1623
1635
 
@@ -1675,12 +1687,15 @@ export class GetFundUserpromiseRequest extends $tea.Model {
1675
1687
  orderId: string;
1676
1688
  // 订单所属商户的社会信用代码
1677
1689
  merchantId: string;
1690
+ // 资方的社会信用代码
1691
+ fundId?: string;
1678
1692
  static names(): { [key: string]: string } {
1679
1693
  return {
1680
1694
  authToken: 'auth_token',
1681
1695
  productInstanceId: 'product_instance_id',
1682
1696
  orderId: 'order_id',
1683
1697
  merchantId: 'merchant_id',
1698
+ fundId: 'fund_id',
1684
1699
  };
1685
1700
  }
1686
1701
 
@@ -1690,6 +1705,7 @@ export class GetFundUserpromiseRequest extends $tea.Model {
1690
1705
  productInstanceId: 'string',
1691
1706
  orderId: 'string',
1692
1707
  merchantId: 'string',
1708
+ fundId: 'string',
1693
1709
  };
1694
1710
  }
1695
1711
 
@@ -1998,6 +2014,160 @@ export class NotifyFundFlowResponse extends $tea.Model {
1998
2014
  }
1999
2015
  }
2000
2016
 
2017
+ export class UploadFundCreditRequest extends $tea.Model {
2018
+ // OAuth模式下的授权token
2019
+ authToken?: string;
2020
+ productInstanceId?: string;
2021
+ // 订单号类型
2022
+ orderNoType: string;
2023
+ // 订单号,或资产包号
2024
+ orderNo: string;
2025
+ // 资方统一社会信用代码
2026
+ fundId: string;
2027
+ // 凭证类型
2028
+ creditType: string;
2029
+ // 凭证名称
2030
+ creditName?: string;
2031
+ // 文本类型
2032
+ contentType: string;
2033
+ // 文本下载链接,如果类型是FILE则必填
2034
+ fileUrl?: string;
2035
+ // 内容数据,格式为JSON类型文本,如果类型是JSON_TEXT则必填
2036
+ content?: string;
2037
+ static names(): { [key: string]: string } {
2038
+ return {
2039
+ authToken: 'auth_token',
2040
+ productInstanceId: 'product_instance_id',
2041
+ orderNoType: 'order_no_type',
2042
+ orderNo: 'order_no',
2043
+ fundId: 'fund_id',
2044
+ creditType: 'credit_type',
2045
+ creditName: 'credit_name',
2046
+ contentType: 'content_type',
2047
+ fileUrl: 'file_url',
2048
+ content: 'content',
2049
+ };
2050
+ }
2051
+
2052
+ static types(): { [key: string]: any } {
2053
+ return {
2054
+ authToken: 'string',
2055
+ productInstanceId: 'string',
2056
+ orderNoType: 'string',
2057
+ orderNo: 'string',
2058
+ fundId: 'string',
2059
+ creditType: 'string',
2060
+ creditName: 'string',
2061
+ contentType: 'string',
2062
+ fileUrl: 'string',
2063
+ content: 'string',
2064
+ };
2065
+ }
2066
+
2067
+ constructor(map?: { [key: string]: any }) {
2068
+ super(map);
2069
+ }
2070
+ }
2071
+
2072
+ export class UploadFundCreditResponse extends $tea.Model {
2073
+ // 请求唯一ID,用于链路跟踪和问题排查
2074
+ reqMsgId?: string;
2075
+ // 结果码,一般OK表示调用成功
2076
+ resultCode?: string;
2077
+ // 异常信息的文本描述
2078
+ resultMsg?: string;
2079
+ // 凭证内容id
2080
+ contentId?: string;
2081
+ static names(): { [key: string]: string } {
2082
+ return {
2083
+ reqMsgId: 'req_msg_id',
2084
+ resultCode: 'result_code',
2085
+ resultMsg: 'result_msg',
2086
+ contentId: 'content_id',
2087
+ };
2088
+ }
2089
+
2090
+ static types(): { [key: string]: any } {
2091
+ return {
2092
+ reqMsgId: 'string',
2093
+ resultCode: 'string',
2094
+ resultMsg: 'string',
2095
+ contentId: 'string',
2096
+ };
2097
+ }
2098
+
2099
+ constructor(map?: { [key: string]: any }) {
2100
+ super(map);
2101
+ }
2102
+ }
2103
+
2104
+ export class QueryFundCreditRequest extends $tea.Model {
2105
+ // OAuth模式下的授权token
2106
+ authToken?: string;
2107
+ productInstanceId?: string;
2108
+ // 订单号类型
2109
+ orderNoType: string;
2110
+ // 订单号,或资产包号
2111
+ orderNo: string;
2112
+ // 资方统一社会信用代码
2113
+ fundId: string;
2114
+ static names(): { [key: string]: string } {
2115
+ return {
2116
+ authToken: 'auth_token',
2117
+ productInstanceId: 'product_instance_id',
2118
+ orderNoType: 'order_no_type',
2119
+ orderNo: 'order_no',
2120
+ fundId: 'fund_id',
2121
+ };
2122
+ }
2123
+
2124
+ static types(): { [key: string]: any } {
2125
+ return {
2126
+ authToken: 'string',
2127
+ productInstanceId: 'string',
2128
+ orderNoType: 'string',
2129
+ orderNo: 'string',
2130
+ fundId: 'string',
2131
+ };
2132
+ }
2133
+
2134
+ constructor(map?: { [key: string]: any }) {
2135
+ super(map);
2136
+ }
2137
+ }
2138
+
2139
+ export class QueryFundCreditResponse extends $tea.Model {
2140
+ // 请求唯一ID,用于链路跟踪和问题排查
2141
+ reqMsgId?: string;
2142
+ // 结果码,一般OK表示调用成功
2143
+ resultCode?: string;
2144
+ // 异常信息的文本描述
2145
+ resultMsg?: string;
2146
+ // 内容信息
2147
+ contentInfo?: string;
2148
+ static names(): { [key: string]: string } {
2149
+ return {
2150
+ reqMsgId: 'req_msg_id',
2151
+ resultCode: 'result_code',
2152
+ resultMsg: 'result_msg',
2153
+ contentInfo: 'content_info',
2154
+ };
2155
+ }
2156
+
2157
+ static types(): { [key: string]: any } {
2158
+ return {
2159
+ reqMsgId: 'string',
2160
+ resultCode: 'string',
2161
+ resultMsg: 'string',
2162
+ contentInfo: 'string',
2163
+ };
2164
+ }
2165
+
2166
+ constructor(map?: { [key: string]: any }) {
2167
+ super(map);
2168
+ }
2169
+ }
2170
+
2001
2171
  export class GetInnerProductRequest extends $tea.Model {
2002
2172
  // OAuth模式下的授权token
2003
2173
  authToken?: string;
@@ -5083,7 +5253,7 @@ export class QueryRiskRequest extends $tea.Model {
5083
5253
  authToken?: string;
5084
5254
  productInstanceId?: string;
5085
5255
  // 账户ID
5086
- userId: string;
5256
+ userId?: string;
5087
5257
  // 用户姓名
5088
5258
  userName: string;
5089
5259
  // 用户证件号码
@@ -5091,7 +5261,7 @@ export class QueryRiskRequest extends $tea.Model {
5091
5261
  // 用户手机号码
5092
5262
  mobile: string;
5093
5263
  // 用户ip地址
5094
- ip: string;
5264
+ ip?: string;
5095
5265
  static names(): { [key: string]: string } {
5096
5266
  return {
5097
5267
  authToken: 'auth_token',
@@ -5917,6 +6087,152 @@ export class UploadSignTemplateResponse extends $tea.Model {
5917
6087
  }
5918
6088
  }
5919
6089
 
6090
+ export class UploadSignCreditRequest extends $tea.Model {
6091
+ // OAuth模式下的授权token
6092
+ authToken?: string;
6093
+ productInstanceId?: string;
6094
+ // 订单号类型
6095
+ orderNoType: string;
6096
+ // 订单号,或资产包号
6097
+ orderNo: string;
6098
+ // 凭证合同类型
6099
+ creditType: string;
6100
+ // 凭证名称
6101
+ creditName?: string;
6102
+ // 文本类型
6103
+ contentType: string;
6104
+ // 文本下载链接,如果类型是FILE则必填
6105
+ fileUrl?: string;
6106
+ // 内容数据,格式为JSON类型文本,如果类型是JSON_TEXT则必填
6107
+ content?: string;
6108
+ static names(): { [key: string]: string } {
6109
+ return {
6110
+ authToken: 'auth_token',
6111
+ productInstanceId: 'product_instance_id',
6112
+ orderNoType: 'order_no_type',
6113
+ orderNo: 'order_no',
6114
+ creditType: 'credit_type',
6115
+ creditName: 'credit_name',
6116
+ contentType: 'content_type',
6117
+ fileUrl: 'file_url',
6118
+ content: 'content',
6119
+ };
6120
+ }
6121
+
6122
+ static types(): { [key: string]: any } {
6123
+ return {
6124
+ authToken: 'string',
6125
+ productInstanceId: 'string',
6126
+ orderNoType: 'string',
6127
+ orderNo: 'string',
6128
+ creditType: 'string',
6129
+ creditName: 'string',
6130
+ contentType: 'string',
6131
+ fileUrl: 'string',
6132
+ content: 'string',
6133
+ };
6134
+ }
6135
+
6136
+ constructor(map?: { [key: string]: any }) {
6137
+ super(map);
6138
+ }
6139
+ }
6140
+
6141
+ export class UploadSignCreditResponse extends $tea.Model {
6142
+ // 请求唯一ID,用于链路跟踪和问题排查
6143
+ reqMsgId?: string;
6144
+ // 结果码,一般OK表示调用成功
6145
+ resultCode?: string;
6146
+ // 异常信息的文本描述
6147
+ resultMsg?: string;
6148
+ // 凭证内容id
6149
+ contentId?: string;
6150
+ static names(): { [key: string]: string } {
6151
+ return {
6152
+ reqMsgId: 'req_msg_id',
6153
+ resultCode: 'result_code',
6154
+ resultMsg: 'result_msg',
6155
+ contentId: 'content_id',
6156
+ };
6157
+ }
6158
+
6159
+ static types(): { [key: string]: any } {
6160
+ return {
6161
+ reqMsgId: 'string',
6162
+ resultCode: 'string',
6163
+ resultMsg: 'string',
6164
+ contentId: 'string',
6165
+ };
6166
+ }
6167
+
6168
+ constructor(map?: { [key: string]: any }) {
6169
+ super(map);
6170
+ }
6171
+ }
6172
+
6173
+ export class QuerySignCreditRequest extends $tea.Model {
6174
+ // OAuth模式下的授权token
6175
+ authToken?: string;
6176
+ productInstanceId?: string;
6177
+ // 订单号类型
6178
+ orderNoType: string;
6179
+ // 订单号,或资产包号
6180
+ orderNo: string;
6181
+ static names(): { [key: string]: string } {
6182
+ return {
6183
+ authToken: 'auth_token',
6184
+ productInstanceId: 'product_instance_id',
6185
+ orderNoType: 'order_no_type',
6186
+ orderNo: 'order_no',
6187
+ };
6188
+ }
6189
+
6190
+ static types(): { [key: string]: any } {
6191
+ return {
6192
+ authToken: 'string',
6193
+ productInstanceId: 'string',
6194
+ orderNoType: 'string',
6195
+ orderNo: 'string',
6196
+ };
6197
+ }
6198
+
6199
+ constructor(map?: { [key: string]: any }) {
6200
+ super(map);
6201
+ }
6202
+ }
6203
+
6204
+ export class QuerySignCreditResponse extends $tea.Model {
6205
+ // 请求唯一ID,用于链路跟踪和问题排查
6206
+ reqMsgId?: string;
6207
+ // 结果码,一般OK表示调用成功
6208
+ resultCode?: string;
6209
+ // 异常信息的文本描述
6210
+ resultMsg?: string;
6211
+ // 内容信息
6212
+ contentInfo?: string;
6213
+ static names(): { [key: string]: string } {
6214
+ return {
6215
+ reqMsgId: 'req_msg_id',
6216
+ resultCode: 'result_code',
6217
+ resultMsg: 'result_msg',
6218
+ contentInfo: 'content_info',
6219
+ };
6220
+ }
6221
+
6222
+ static types(): { [key: string]: any } {
6223
+ return {
6224
+ reqMsgId: 'string',
6225
+ resultCode: 'string',
6226
+ resultMsg: 'string',
6227
+ contentInfo: 'string',
6228
+ };
6229
+ }
6230
+
6231
+ constructor(map?: { [key: string]: any }) {
6232
+ super(map);
6233
+ }
6234
+ }
6235
+
5920
6236
  export class SyncTradeRequest extends $tea.Model {
5921
6237
  // OAuth模式下的授权token
5922
6238
  authToken?: string;
@@ -6119,6 +6435,22 @@ export class SyncTradeFinanceloanapplyRequest extends $tea.Model {
6119
6435
  merchantId: string;
6120
6436
  // 融资放款申请接口
6121
6437
  merchantName: string;
6438
+ // 资方的社会信用代码
6439
+ fundId?: string;
6440
+ // 类型
6441
+ // ● 默认为:ORDER, 单订单申请
6442
+ // ● PACKAGE_ORDER , 资产包订单模式
6443
+ type?: string;
6444
+ // 资产包id
6445
+ // type = PACKAGE_ORDER , 必填
6446
+ assetPackageId?: string;
6447
+ // type = PACKAGE_ORDER , 必填
6448
+ //
6449
+ // ● APPEND: 追加订单列表
6450
+ // ● FINIISH : 结束
6451
+ stage?: string;
6452
+ // 订单id列表的jsonArray
6453
+ orderIdList?: string;
6122
6454
  static names(): { [key: string]: string } {
6123
6455
  return {
6124
6456
  authToken: 'auth_token',
@@ -6126,6 +6458,11 @@ export class SyncTradeFinanceloanapplyRequest extends $tea.Model {
6126
6458
  orderId: 'order_id',
6127
6459
  merchantId: 'merchant_id',
6128
6460
  merchantName: 'merchant_name',
6461
+ fundId: 'fund_id',
6462
+ type: 'type',
6463
+ assetPackageId: 'asset_package_id',
6464
+ stage: 'stage',
6465
+ orderIdList: 'order_id_list',
6129
6466
  };
6130
6467
  }
6131
6468
 
@@ -6136,6 +6473,11 @@ export class SyncTradeFinanceloanapplyRequest extends $tea.Model {
6136
6473
  orderId: 'string',
6137
6474
  merchantId: 'string',
6138
6475
  merchantName: 'string',
6476
+ fundId: 'string',
6477
+ type: 'string',
6478
+ assetPackageId: 'string',
6479
+ stage: 'string',
6480
+ orderIdList: 'string',
6139
6481
  };
6140
6482
  }
6141
6483
 
@@ -7648,7 +7990,7 @@ export default class Client {
7648
7990
  req_msg_id: AntchainUtil.getNonce(),
7649
7991
  access_key: this._accessKeyId,
7650
7992
  base_sdk_version: "TeaSDK-2.0",
7651
- sdk_version: "1.8.69",
7993
+ sdk_version: "1.8.73",
7652
7994
  _prod_code: "ATO",
7653
7995
  _prod_channel: "undefined",
7654
7996
  };
@@ -8059,6 +8401,44 @@ export default class Client {
8059
8401
  return $tea.cast<NotifyFundFlowResponse>(await this.doRequest("1.0", "antchain.ato.fund.flow.notify", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new NotifyFundFlowResponse({}));
8060
8402
  }
8061
8403
 
8404
+ /**
8405
+ * Description: 资方资产凭证上传,可以是文本或文件
8406
+ * Summary: 资方资产凭证上传
8407
+ */
8408
+ async uploadFundCredit(request: UploadFundCreditRequest): Promise<UploadFundCreditResponse> {
8409
+ let runtime = new $Util.RuntimeOptions({ });
8410
+ let headers : {[key: string ]: string} = { };
8411
+ return await this.uploadFundCreditEx(request, headers, runtime);
8412
+ }
8413
+
8414
+ /**
8415
+ * Description: 资方资产凭证上传,可以是文本或文件
8416
+ * Summary: 资方资产凭证上传
8417
+ */
8418
+ async uploadFundCreditEx(request: UploadFundCreditRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UploadFundCreditResponse> {
8419
+ Util.validateModel(request);
8420
+ return $tea.cast<UploadFundCreditResponse>(await this.doRequest("1.0", "antchain.ato.fund.credit.upload", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new UploadFundCreditResponse({}));
8421
+ }
8422
+
8423
+ /**
8424
+ * Description: 资方资产凭证查询,需要提供订单号或资产包号
8425
+ * Summary: 资方资产凭证查询
8426
+ */
8427
+ async queryFundCredit(request: QueryFundCreditRequest): Promise<QueryFundCreditResponse> {
8428
+ let runtime = new $Util.RuntimeOptions({ });
8429
+ let headers : {[key: string ]: string} = { };
8430
+ return await this.queryFundCreditEx(request, headers, runtime);
8431
+ }
8432
+
8433
+ /**
8434
+ * Description: 资方资产凭证查询,需要提供订单号或资产包号
8435
+ * Summary: 资方资产凭证查询
8436
+ */
8437
+ async queryFundCreditEx(request: QueryFundCreditRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryFundCreditResponse> {
8438
+ Util.validateModel(request);
8439
+ return $tea.cast<QueryFundCreditResponse>(await this.doRequest("1.0", "antchain.ato.fund.credit.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryFundCreditResponse({}));
8440
+ }
8441
+
8062
8442
  /**
8063
8443
  * Description: 内部调用,商品信息获取
8064
8444
  * Summary: 商品信息获取
@@ -9070,6 +9450,44 @@ export default class Client {
9070
9450
  return $tea.cast<UploadSignTemplateResponse>(await this.doRequest("1.0", "antchain.ato.sign.template.upload", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new UploadSignTemplateResponse({}));
9071
9451
  }
9072
9452
 
9453
+ /**
9454
+ * Description: 商户资产凭证上传,可以是文本或文件
9455
+ * Summary: 商户资产凭证上传
9456
+ */
9457
+ async uploadSignCredit(request: UploadSignCreditRequest): Promise<UploadSignCreditResponse> {
9458
+ let runtime = new $Util.RuntimeOptions({ });
9459
+ let headers : {[key: string ]: string} = { };
9460
+ return await this.uploadSignCreditEx(request, headers, runtime);
9461
+ }
9462
+
9463
+ /**
9464
+ * Description: 商户资产凭证上传,可以是文本或文件
9465
+ * Summary: 商户资产凭证上传
9466
+ */
9467
+ async uploadSignCreditEx(request: UploadSignCreditRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UploadSignCreditResponse> {
9468
+ Util.validateModel(request);
9469
+ return $tea.cast<UploadSignCreditResponse>(await this.doRequest("1.0", "antchain.ato.sign.credit.upload", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new UploadSignCreditResponse({}));
9470
+ }
9471
+
9472
+ /**
9473
+ * Description: 商户资产凭证查询,需要提供订单号或资产包号
9474
+ * Summary: 商户资产凭证查询
9475
+ */
9476
+ async querySignCredit(request: QuerySignCreditRequest): Promise<QuerySignCreditResponse> {
9477
+ let runtime = new $Util.RuntimeOptions({ });
9478
+ let headers : {[key: string ]: string} = { };
9479
+ return await this.querySignCreditEx(request, headers, runtime);
9480
+ }
9481
+
9482
+ /**
9483
+ * Description: 商户资产凭证查询,需要提供订单号或资产包号
9484
+ * Summary: 商户资产凭证查询
9485
+ */
9486
+ async querySignCreditEx(request: QuerySignCreditRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QuerySignCreditResponse> {
9487
+ Util.validateModel(request);
9488
+ return $tea.cast<QuerySignCreditResponse>(await this.doRequest("1.0", "antchain.ato.sign.credit.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QuerySignCreditResponse({}));
9489
+ }
9490
+
9073
9491
  /**
9074
9492
  * Description: 对账saas交易信息同步接口
9075
9493
  * Summary: 对账saas交易信息同步接口