From 3633cf70a3d835da15d27a91e7f8f8fd15dbcb35 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期四, 20 三月 2025 10:59:21 +0800
Subject: [PATCH] fix: 三期需求
---
packages/services/api/typings.d.ts | 116 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 116 insertions(+), 0 deletions(-)
diff --git a/packages/services/api/typings.d.ts b/packages/services/api/typings.d.ts
index 7bdd2c6..757003d 100644
--- a/packages/services/api/typings.d.ts
+++ b/packages/services/api/typings.d.ts
@@ -168,6 +168,10 @@
moduleId?: string;
}
+ interface APIgetIntroInfoParams {
+ type?: LifePayOrderTypeEnum;
+ }
+
interface APIgetLifePayChannlesDtoParams {
id?: string;
}
@@ -469,6 +473,7 @@
channlesName?: string;
channlesNum?: string;
channlesRate?: number;
+ channlesRakeRate?: number;
switchType?: LifePaySwitchTypeEnum;
status?: LifePayChannelsStatsEnum;
channlesType?: LifePayChannlesTypeEnum;
@@ -755,6 +760,12 @@
groups?: FeatureGroupDto[];
}
+ interface GetOperateHistoryInput {
+ pageModel?: Pagination;
+ relationId?: string;
+ operateName?: string;
+ }
+
interface GetPayOrderForJsAPIInput {
pageModel?: Pagination;
checkChannelId?: string;
@@ -918,6 +929,8 @@
roleNames: string[];
}
+ type IntroInfoTypeEnum = 0 | 1 | 2 | 3 | 4;
+
interface IStringValueType {
name?: string;
properties?: Record<string, any>;
@@ -997,6 +1010,37 @@
type LifePayChannlesTypeEnum = 10 | 20;
+ interface LifePayIntroInfoDetail {
+ type?: IntroInfoTypeEnum;
+ /** 鎽樿 */
+ contentSummary?: string;
+ /** 鏂囨湰鍐呭 */
+ content?: string;
+ /** 鍥剧墖/瑙嗛璺緞 */
+ path?: string;
+ /** 鎺掑簭 */
+ sequence?: number;
+ }
+
+ interface LifePayIntroInfoInput {
+ lifePayType?: LifePayOrderTypeEnum;
+ /** 鏇存柊鍐呭 */
+ data?: LifePayIntroInfoDetail[];
+ }
+
+ interface LifePayIntroInfoOutput {
+ type?: IntroInfoTypeEnum;
+ lifePayType?: LifePayOrderTypeEnum;
+ /** 鎽樿 */
+ contentSummary?: string;
+ /** 鏂囨湰鍐呭 */
+ content?: string;
+ /** 鍥剧墖/瑙嗛璺緞 */
+ path?: string;
+ /** 鎺掑簭 */
+ sequence?: number;
+ }
+
interface LifePayOrderListOutput {
id?: string;
userId?: string;
@@ -1050,6 +1094,18 @@
phoneNumber: string;
}
+ interface LifePayPremiumInput {
+ premiumType?: LifePayTypeEnum;
+ rate?: number;
+ id?: string;
+ }
+
+ interface LifePayPremiumListOutput {
+ premiumType?: LifePayTypeEnum;
+ rate?: number;
+ id?: string;
+ }
+
interface LifePayRateInput {
rateType?: LifePayRateTypeEnum;
rate?: number;
@@ -1093,6 +1149,10 @@
interface LocalizableStringDto {
name?: string;
resource?: string;
+ }
+
+ interface LogErrorInput {
+ error?: string;
}
interface MethodParameterApiDescriptionModel {
@@ -1208,6 +1268,56 @@
modules?: Record<string, any>;
enums?: Record<string, any>;
}
+
+ interface OperateHistoryDto {
+ /** 鍏宠仈鍏崇郴ID */
+ relationId?: string;
+ /** 琛ㄥ悕 */
+ tableType?: number;
+ /** 鎿嶄綔 */
+ operateName?: string;
+ /** 鎿嶄綔鍐呭 */
+ operateContent?: string;
+ /** 鎿嶄綔浜� */
+ creatorName?: string;
+ /** 鎿嶄綔鏃堕棿 */
+ creationTime?: string;
+ /** 鎿嶄綔缁嗚妭 */
+ operateDetail?: string;
+ }
+
+ interface OperateHistoryDtoPageOutput {
+ pageModel?: Pagination;
+ objectData?: any;
+ data?: OperateHistoryDto[];
+ }
+
+ type OperateHistoryTypeEnum =
+ | 10
+ | 11
+ | 12
+ | 13
+ | 14
+ | 15
+ | 16
+ | 17
+ | 18
+ | 19
+ | 20
+ | 21
+ | 22
+ | 23
+ | 24
+ | 25
+ | 26
+ | 27
+ | 28
+ | 29
+ | 30
+ | 31
+ | 32
+ | 40
+ | 42;
interface OrderInput {
property?: string;
@@ -1345,6 +1455,12 @@
keyWords?: string;
}
+ interface QueryOperateHistoryByTypeInput {
+ pageModel?: Pagination;
+ typeId?: string;
+ operateHistoryType?: OperateHistoryTypeEnum;
+ }
+
interface QueryUserAccountAllListInput {
pageModel?: Pagination;
checkChannelId?: string;
--
Gitblit v1.9.1