|
@@ -99,4 +99,60 @@ export function investorReportQuery(options: CommonFetchOptions<{ request: Parti
|
|
|
...options.data
|
|
...options.data
|
|
|
}
|
|
}
|
|
|
return httpClient.commonRequest('/reportForm/investorReportQuery', 'get', options)
|
|
return httpClient.commonRequest('/reportForm/investorReportQuery', 'get', options)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+/**
|
|
|
|
|
+ * 报表管理-->银行资金报表
|
|
|
|
|
+ */
|
|
|
|
|
+export function cusbankReportQuery(options: CommonFetchOptions<{ request: Partial<Model.CusbankReportReq>; response: Model.CusbankReportRsp[]; }>) {
|
|
|
|
|
+ return httpClient.commonRequest('/reportForm/cusbank', 'get', options)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+/**
|
|
|
|
|
+ * 报表管理-->银行资金报表-->导出
|
|
|
|
|
+ */
|
|
|
|
|
+export function cusbankReportQueryExport(options: CommonFetchOptions<{ request: Model.CusbankReportExportReq; }>) {
|
|
|
|
|
+ return httpClient.commonRequest('/reportForm/cusbankexport', 'get', options)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+/**
|
|
|
|
|
+ * 报表管理-->商品交易报表
|
|
|
|
|
+ */
|
|
|
|
|
+export function dayGoodsCountReportQuery(options: CommonFetchOptions<{ request: Partial<Model.DayGoodsCountReportReq>; response: Model.DayGoodsCountReportRsp; }>) {
|
|
|
|
|
+ return httpClient.commonRequest('/reportForm/daygoodscount', 'get', options)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+/**
|
|
|
|
|
+ * 报表管理-->商品交易报表-->导出
|
|
|
|
|
+ */
|
|
|
|
|
+export function dayGoodsCountExport(options: CommonFetchOptions<{ request: Model.DayGoodsCountReportExportReq; }>) {
|
|
|
|
|
+ return httpClient.commonRequest('/reportForm/goodscountexport', 'get', options)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+/**
|
|
|
|
|
+ * 报表管理-->交易商资金报表 --> 导出
|
|
|
|
|
+ */
|
|
|
|
|
+export function investorReportExport(options: CommonFetchOptions<{ request: Model.InvestorReportExportReq; }>) {
|
|
|
|
|
+ return httpClient.commonRequest('/reportForm/investorReportExport', 'get', options)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+/**
|
|
|
|
|
+ * 报表管理-->机构资金报表 --> 导出
|
|
|
|
|
+ */
|
|
|
|
|
+export function investorReportOrgExport(options: CommonFetchOptions<{ request: Model.InvestorReportOrgExportReq; }>) {
|
|
|
|
|
+ return httpClient.commonRequest('/reportForm/investorReportOrgExport', 'get', options)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+/**
|
|
|
|
|
+ * 报表管理-->服务费分润报表
|
|
|
|
|
+ */
|
|
|
|
|
+export function manageDivReportQuery(options: CommonFetchOptions<{ request: Partial<Model.ManageDivReq>; response: Model.ManageDivRsp[]; }>) {
|
|
|
|
|
+ return httpClient.commonRequest('/reportForm/managediv', 'get', options)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+/**
|
|
|
|
|
+ * 报表管理-->服务费分润报表 --> 导出
|
|
|
|
|
+ */
|
|
|
|
|
+export function manageDivExport(options: CommonFetchOptions<{ request: Partial<Model.ManageDivExportReq>; }>) {
|
|
|
|
|
+ return httpClient.commonRequest('/reportForm/managedivexport', 'get', options)
|
|
|
}
|
|
}
|