From 0886e91fdfe3b5528f80d2b6742083aa11d16ebb Mon Sep 17 00:00:00 2001 From: zhengyiming <540361168@qq.com> Date: 星期三, 02 四月 2025 15:54:15 +0800 Subject: [PATCH] fix: 四期bug --- packages/services/api/typings.d.ts | 88 ++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 88 insertions(+), 0 deletions(-) diff --git a/packages/services/api/typings.d.ts b/packages/services/api/typings.d.ts index 6408be4..17297cc 100644 --- a/packages/services/api/typings.d.ts +++ b/packages/services/api/typings.d.ts @@ -524,6 +524,29 @@ type?: number; } + interface ChannelDataListOutPut { + /** Top5娓犻亾鏀舵 */ + receiveList?: ChannelDataReceive[]; + /** Top5娓犻亾鐢ㄦ埛 */ + userNumberList?: ChannelDataUserNumber[]; + } + + interface ChannelDataReceive { + /** 娓犻亾鍚嶇О */ + channelName?: string; + /** 鏀舵 */ + receivePrice?: number; + /** 浣i噾 */ + channlesRakePrice?: number; + } + + interface ChannelDataUserNumber { + /** 娓犻亾鍚嶇О */ + channelName?: string; + /** 鐢ㄦ埛鏁伴噺 */ + number?: number; + } + interface ChannelOutput { name?: string; channlesNum?: string; @@ -540,6 +563,11 @@ checkChannelId?: string; } + interface ChannlesRakeListOutPut { + /** 30澶╀剑閲� */ + channlesRakeList?: ReceiptsDetail[]; + } + interface CheckLoginVerificationCodeInput { messageType?: string; phoneNumber: string; @@ -549,6 +577,10 @@ interface ClockDto { kind?: string; } + + type ConsumptionFlowEnum = 10 | 20; + + type ConsumptionFrozenStatusEnum = 10 | 20; interface ControllerApiDescriptionModel { controllerName?: string; @@ -1184,6 +1216,44 @@ } type LifePayChannlesTypeEnum = 10 | 20; + + interface LifePayConsumptionListOutput { + /** 缂栧彿 */ + id?: string; + /** 骞冲彴璁㈠崟鍙� */ + orderNo?: string; + /** 澶栭儴璁㈠崟鍙� */ + acoolyOrderNo?: string; + /** 浜ゆ槗閲戦 */ + amount?: number; + acoolyStatus?: ACOOLYStatusEnum; + /** 璁拌处鏃堕棿 */ + finishTime?: string; + frozenStatus?: ConsumptionFrozenStatusEnum; + flow?: ConsumptionFlowEnum; + /** 鎵f閲戦 */ + deductionAmount?: number; + /** 鍐荤粨閲戦 */ + frozenAmount?: number; + } + + interface LifePayConsumptionListOutputPageOutput { + pageModel?: Pagination; + objectData?: any; + data?: LifePayConsumptionListOutput[]; + } + + interface LifePayConsumptionPageInput { + pageModel?: Pagination; + checkChannelId?: string; + /** 鏌ヨ鏉′欢 */ + keyWord?: string; + flow?: ConsumptionFlowEnum; + /** 璁拌处寮�濮嬫椂闂� */ + timeBegin?: string; + /** 璁拌处缁撴潫鏃堕棿 */ + timeEnd?: string; + } interface LifePayExpensesReceiptsListOutput { /** 缂栧彿 */ @@ -1852,6 +1922,10 @@ providerKey?: string; } + interface QueryLifePayChannlesInput { + status?: LifePayChannelsStatsEnum; + } + interface QueryLifePayOrderListInput { pageModel?: Pagination; checkChannelId?: string; @@ -1938,6 +2012,20 @@ loginTimeEnd?: string; } + interface ReceiptsDetail { + /** 鍒涘缓鏃堕棿 */ + creationTime?: string; + /** 閲戦 */ + amount?: number; + } + + interface ReceiptsListOutPut { + /** 30澶╂敹娆� */ + receiveList?: ReceiptsDetail[]; + /** 30澶╂敹鍏� */ + incomeList?: ReceiptsDetail[]; + } + interface RefundLifePayOrderInput { id?: string; /** 涓婁紶鍑瘉 */ -- Gitblit v1.9.1