From 92921431668181fb6d3387368c751ccc40aba8cf Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期五, 28 十一月 2025 17:14:32 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/dev-dataBoard'
---
src/services/api/typings.d.ts | 144 ++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 144 insertions(+), 0 deletions(-)
diff --git a/src/services/api/typings.d.ts b/src/services/api/typings.d.ts
index 202b621..e6dfa4b 100644
--- a/src/services/api/typings.d.ts
+++ b/src/services/api/typings.d.ts
@@ -1424,6 +1424,44 @@
templateId?: string;
}
+ interface APIgetDataBoardBountyUseAmountRankParams {
+ /** 鏌ヨ鏁伴噺 */
+ take?: number;
+ }
+
+ interface APIgetDataBoardInsurePeopleCountRankParams {
+ /** 鏌ヨ鏁伴噺 */
+ take?: number;
+ }
+
+ interface APIgetDataBoardNewBountyApplyCountParams {
+ input?: GetDataBoardNewBountyApplyCountInput;
+ }
+
+ interface APIgetDataBoardNewBountyReleaseAmountCountParams {
+ input?: GetDataBoardNewBountyReleaseAmountCountInput;
+ }
+
+ interface APIgetDataBoardNewBountyUseAmountCountParams {
+ input?: GetDataBoardNewBountyUseAmountCountInput;
+ }
+
+ interface APIgetDataBoardNewCustomerCountParams {
+ input?: GetDataBoardNewCustomerCountInput;
+ }
+
+ interface APIgetDataBoardNewInsurePeopleCountParams {
+ input?: GetDataBoardNewInsurePeopleCountInput;
+ }
+
+ interface APIgetDataBoardOverviewByParkParams {
+ industrialParkId?: string;
+ }
+
+ interface APIgetDataBoardOverviewParams {
+ input?: GetDataBoardOverviewInput;
+ }
+
interface APIgetDefaultConnectionStringParams {
id?: string;
}
@@ -7800,12 +7838,118 @@
/** 濂栧姳閲戞ā鏉縄d */
bountyTemplateId?: string;
userId?: string;
+ isApply?: boolean;
}
interface GetCustomerUploadFileRecordOutput {
id?: string;
}
+ interface GetDataBoardBountyUseAmountRankOutput {
+ items?: GetDataBoardBountyUseAmountRankOutputItem[];
+ }
+
+ interface GetDataBoardBountyUseAmountRankOutputItem {
+ /** 浼佷笟鍚嶇О */
+ enterpriseName?: string;
+ /** 閲戦 */
+ amount?: number;
+ }
+
+ interface GetDataBoardInsurePeopleCountRankOutput {
+ items?: GetDataBoardInsurePeopleCountRankOutputItem[];
+ }
+
+ interface GetDataBoardInsurePeopleCountRankOutputItem {
+ /** 浼佷笟鍚嶇О */
+ enterpriseName?: string;
+ /** 浜烘暟 */
+ count?: number;
+ }
+
+ type GetDataBoardNewBountyApplyCountInput = Record<string, any>;
+
+ interface GetDataBoardNewBountyApplyCountOutput {
+ /** X杞� */
+ x?: string[];
+ /** 褰撴湀鏁版嵁 */
+ currentMonthData?: number[];
+ /** 涓婃湀鏁版嵁 */
+ lastMonthData?: number[];
+ }
+
+ type GetDataBoardNewBountyReleaseAmountCountInput = Record<string, any>;
+
+ interface GetDataBoardNewBountyReleaseAmountCountOutput {
+ /** X杞� */
+ x?: string[];
+ /** 褰撴湀鏁版嵁 */
+ currentMonthData?: number[];
+ /** 涓婃湀鏁版嵁 */
+ lastMonthData?: number[];
+ }
+
+ type GetDataBoardNewBountyUseAmountCountInput = Record<string, any>;
+
+ interface GetDataBoardNewBountyUseAmountCountOutput {
+ /** X杞� */
+ x?: string[];
+ /** 褰撴湀鏁版嵁 */
+ currentMonthData?: number[];
+ /** 涓婃湀鏁版嵁 */
+ lastMonthData?: number[];
+ }
+
+ type GetDataBoardNewCustomerCountInput = Record<string, any>;
+
+ interface GetDataBoardNewCustomerCountOutput {
+ /** X杞� */
+ x?: string[];
+ /** 褰撴湀鏁版嵁 */
+ currentMonthData?: number[];
+ /** 涓婃湀鏁版嵁 */
+ lastMonthData?: number[];
+ }
+
+ type GetDataBoardNewInsurePeopleCountInput = Record<string, any>;
+
+ interface GetDataBoardNewInsurePeopleCountOutput {
+ /** X杞� */
+ x?: string[];
+ /** 鏁版嵁 */
+ data?: number[];
+ }
+
+ interface GetDataBoardOverviewByParkOutput {
+ /** 鎬诲叆椹讳紒涓� */
+ totalCustomerCount?: number;
+ /** 濂栧姳閲戝彂鏀炬�婚 */
+ sumBountyReleaseAmount?: number;
+ /** 濂栧姳閲戜娇鐢ㄦ�婚 */
+ sumBountyUseAmount?: number;
+ /** 鎶曚繚浜烘暟 */
+ insurePeopleCount?: number;
+ }
+
+ type GetDataBoardOverviewInput = Record<string, any>;
+
+ interface GetDataBoardOverviewOutput {
+ /** 鎬诲叆椹讳紒涓� */
+ totalCustomerCount?: number;
+ /** 鎬荤敵鎶ユ暟閲� */
+ totalBountyApplyCount?: number;
+ /** 濂栧姳閲戝彂鏀炬�婚 */
+ sumBountyReleaseAmount?: number;
+ /** 濂栧姳閲戜娇鐢ㄦ�婚 */
+ sumBountyUseAmount?: number;
+ /** 褰撴湀鍙戞斁棰� */
+ currentMonthSumBountyReleaseAmount?: number;
+ /** 褰撴湀浣跨敤棰� */
+ currentMonthSumBountyUseAmount?: number;
+ /** 褰撴湀鎶曚繚浜烘暟 */
+ currentMonthInsurePeopleCount?: number;
+ }
+
interface GetEnterpriseBuntyTradeDto {
id?: string;
payDateTime?: string;
--
Gitblit v1.9.1