From dc5dbf0304050a2a84cd16df3330949de41ca723 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期一, 10 十一月 2025 16:45:19 +0800
Subject: [PATCH] fix: bug
---
packages/services/apiV2/typings.d.ts | 138 ++++++++++++++++++++++++++++++++++++++++------
1 files changed, 120 insertions(+), 18 deletions(-)
diff --git a/packages/services/apiV2/typings.d.ts b/packages/services/apiV2/typings.d.ts
index 387657b..f91f135 100644
--- a/packages/services/apiV2/typings.d.ts
+++ b/packages/services/apiV2/typings.d.ts
@@ -519,6 +519,27 @@
timeoutFee?: number;
}
+ interface CalcTaskTotalServiceFeeCommand {
+ billingMethod?: EnumBillingMethod;
+ /** 鏈嶅姟璐� */
+ serviceFee?: number;
+ /** 鏍稿畾宸ユ椂 */
+ verifyWorkHours?: number;
+ /** 鎬讳欢鏁� */
+ totalPieceQuantity?: number;
+ /** 闇�姹備汉鏁� */
+ needPeopleNumber?: number;
+ /** 浠诲姟寮�濮嬫椂闂� */
+ beginTime?: string;
+ /** 浠诲姟缁撴潫鏃堕棿 */
+ endTime?: string;
+ }
+
+ interface CalcTaskTotalServiceFeeCommandResult {
+ /** 鏈嶅姟璐� */
+ totalServiceFee?: number;
+ }
+
interface ChangePhoneNumberCommand {
/** 鎵嬫満鍙风爜 */
phoneNumber: string;
@@ -557,10 +578,6 @@
taskInfoUserId?: string;
/** 鏃ユ湡 */
date?: string;
- /** 绛惧埌鏃堕棿 */
- checkInTime?: string;
- /** 绛惧嚭鏃堕棿 */
- checkOutTime?: string;
/** 鏈嶅姟璐癸紙鍏冿級 */
serviceFee?: number;
/** 瓒呮椂锛堝皬鏃讹級 */
@@ -573,6 +590,7 @@
remark?: string;
/** 缁撶畻閲戦 */
settlementAmount?: number;
+ checkHistoryType?: EnumTaskUserSubmitCheckHistoryType;
checkReceiveStatus?: EnumTaskUserSubmitCheckReceiveStatus;
}
@@ -1325,9 +1343,9 @@
WaitSubmit = 10,
/**寰呴獙鏀� */
WaitCheckReceive = 20,
- /**楠屾敹閫氳繃/宸茬鍒� */
+ /**楠屾敹閫氳繃 */
Success = 30,
- /**楠屾敹鏈�氳繃/鏈埌宀� */
+ /**楠屾敹鏈�氳繃 */
Fail = 40,
}
@@ -1632,6 +1650,24 @@
/** 閿欒鐮� */
errorCode?: string;
data?: CalcTaskCheckReceiveCommandResult;
+ /** 鎵ц鎴愬姛 */
+ success?: boolean;
+ /** 閿欒淇℃伅 */
+ msg?: any;
+ /** 闄勫姞鏁版嵁 */
+ extras?: any;
+ /** 鏃堕棿鎴� */
+ timestamp?: number;
+ }
+
+ interface FriendlyResultCalcTaskTotalServiceFeeCommandResult {
+ /** 璺熻釜Id */
+ traceId?: string;
+ /** 鐘舵�佺爜 */
+ code?: number;
+ /** 閿欒鐮� */
+ errorCode?: string;
+ data?: CalcTaskTotalServiceFeeCommandResult;
/** 鎵ц鎴愬姛 */
success?: boolean;
/** 閿欒淇℃伅 */
@@ -3918,16 +3954,24 @@
/** 鏄惁瀹炲悕 */
isReal?: boolean;
realMethod?: EnumUserRealMethod;
- /** 绛惧埌鏃堕棿 */
+ /** 鐢ㄦ埛绛惧埌鏃堕棿 */
+ userCheckInTime?: string;
+ /** 鐢ㄦ埛绛惧嚭鏃堕棿 */
+ userCheckOutTime?: string;
+ userCheckHistoryType?: EnumTaskUserSubmitCheckHistoryType;
+ /** 浜哄伐绛惧埌鏃堕棿 */
checkInTime?: string;
- /** 绛惧嚭鏃堕棿 */
+ /** 浜哄伐绛惧嚭鏃堕棿 */
checkOutTime?: string;
+ checkHistoryType?: EnumTaskUserSubmitCheckHistoryType;
/** 鎿嶄綔浜� */
operator?: string;
/** 鏈�杩戞彁浜ゆ椂闂� */
lastSubmitTime?: string;
checkReceiveStatus?: EnumTaskCheckReceiveStatus;
submitCheckReceiveStatus?: EnumTaskUserSubmitCheckReceiveStatus;
+ /** 楠屾敹鏂瑰紡 */
+ checkReceiveMethods?: EnumTaskCheckReceiveMethod[];
}
interface GetCheckReceiveTaskQueryResultObjectData {
@@ -3946,6 +3990,8 @@
verifyWorkHours?: number;
/** 瓒呮椂鏈嶅姟璐� */
timeoutServiceFee?: number;
+ /** 鎬讳欢鏁� */
+ totalPieceQuantity?: number;
settlementCycle?: EnumSettlementCycle;
/** 浠诲姟寮�濮嬫椂闂� */
beginTime?: string;
@@ -3955,7 +4001,8 @@
applyBeginTime?: string;
/** 鎶ュ悕缁撴潫鏃堕棿 */
applyEndTime?: string;
- checkReceiveMethod?: EnumTaskCheckReceiveMethod;
+ /** 楠屾敹鏂瑰紡 */
+ checkReceiveMethods?: EnumTaskCheckReceiveMethod[];
paymentMethod?: EnumTaskPaymentMethod;
settlementAccess?: EnumEnterpriseWalletAccess;
/** 浠诲姟鎻忚堪 */
@@ -4001,6 +4048,8 @@
verifyWorkHours?: number;
/** 瓒呮椂鏈嶅姟璐� */
timeoutServiceFee?: number;
+ /** 鎬讳欢鏁� */
+ totalPieceQuantity?: number;
settlementCycle?: EnumSettlementCycle;
/** 鍙戝竷鏃堕棿 */
createdTime?: string;
@@ -4012,7 +4061,8 @@
applyBeginTime?: string;
/** 鎶ュ悕缁撴潫鏃堕棿 */
applyEndTime?: string;
- checkReceiveMethod?: EnumTaskCheckReceiveMethod;
+ /** 楠屾敹鏂瑰紡 */
+ checkReceiveMethods?: EnumTaskCheckReceiveMethod[];
paymentMethod?: EnumTaskPaymentMethod;
settlementAccess?: EnumEnterpriseWalletAccess;
/** 浠诲姟鎻忚堪 */
@@ -4063,6 +4113,7 @@
checkTime?: string;
/** 鎿嶄綔浜� */
operator?: string;
+ operatorType?: EnumUserType;
type?: EnumTaskUserSubmitCheckHistoryType;
}
@@ -4075,8 +4126,22 @@
/** 鎻愪氦鏃堕棿 */
createdTime?: string;
checkReceiveStatus?: EnumTaskUserSubmitCheckReceiveStatus;
+ /** 鐢ㄦ埛绛惧埌鏃堕棿 */
+ userCheckInTime?: string;
+ /** 鐢ㄦ埛绛惧嚭鏃堕棿 */
+ userCheckOutTime?: string;
+ userCheckHistoryType?: EnumTaskUserSubmitCheckHistoryType;
+ /** 浜哄伐绛惧埌鏃堕棿 */
+ checkInTime?: string;
+ /** 浜哄伐绛惧嚭鏃堕棿 */
+ checkOutTime?: string;
+ checkHistoryType?: EnumTaskUserSubmitCheckHistoryType;
/** 楠屾敹鐓х墖 */
files?: string[];
+ /** 楠屾敹鏂瑰紡 */
+ checkReceiveMethods?: EnumTaskCheckReceiveMethod[];
+ /** 瓒呮椂鏈嶅姟璐� */
+ timeoutServiceFee?: number;
}
interface GetCheckReceiveTaskUserSubmitsQuery {
@@ -4099,10 +4164,16 @@
id?: string;
/** 楠屾敹鏃堕棿 */
date?: string;
- /** 绛惧埌鏃堕棿 */
+ /** 鐢ㄦ埛绛惧埌鏃堕棿 */
+ userCheckInTime?: string;
+ /** 鐢ㄦ埛绛惧嚭鏃堕棿 */
+ userCheckOutTime?: string;
+ userCheckHistoryType?: EnumTaskUserSubmitCheckHistoryType;
+ /** 浜哄伐绛惧埌鏃堕棿 */
checkInTime?: string;
- /** 绛惧嚭鏃堕棿 */
+ /** 浜哄伐绛惧嚭鏃堕棿 */
checkOutTime?: string;
+ checkHistoryType?: EnumTaskUserSubmitCheckHistoryType;
/** 鎿嶄綔浜� */
operator?: string;
/** 鎻愪氦鏃堕棿 */
@@ -4112,6 +4183,8 @@
checkReceiveStatus?: EnumTaskUserSubmitCheckReceiveStatus;
/** 楠屾敹鏃堕棿 */
checkReceiveTime?: string;
+ /** 楠屾敹鏂瑰紡 */
+ checkReceiveMethods?: EnumTaskCheckReceiveMethod[];
}
interface GetCheckReceiveTaskUserSubmitsQueryResultObjectData {
@@ -4149,6 +4222,8 @@
endTime?: string;
/** 浠诲姟鍦扮偣鍚嶇О */
addressName?: string;
+ /** 楠屾敹鏂瑰紡 */
+ checkReceiveMethods?: EnumTaskCheckReceiveMethod[];
}
interface GetCodeUrlQueryResult {
@@ -4328,6 +4403,8 @@
amount?: number;
/** 鍏呭�兼椂闂� */
createdTime?: string;
+ /** 澶囨敞 */
+ remark?: string;
transactionStatus?: EnumEnterpriseCooperationWalletTransactionStatus;
/** 鍑瘉 */
files?: string[];
@@ -5613,7 +5690,8 @@
applyBeginTime?: string;
/** 鎶ュ悕缁撴潫鏃堕棿 */
applyEndTime?: string;
- checkReceiveMethod?: EnumTaskCheckReceiveMethod;
+ /** 楠屾敹鏂瑰紡 */
+ checkReceiveMethods?: EnumTaskCheckReceiveMethod[];
paymentMethod?: EnumTaskPaymentMethod;
settlementAccess?: EnumEnterpriseWalletAccess;
/** 浠诲姟鎻忚堪 */
@@ -5625,6 +5703,8 @@
verifyWorkHours?: number;
/** 瓒呮椂鏈嶅姟璐� */
timeoutServiceFee?: number;
+ /** 鎬讳欢鏁� */
+ totalPieceQuantity?: number;
settlementCycle?: EnumSettlementCycle;
/** 绂忓埄 */
benefits?: GetTaskInfoQueryResultBenefit[];
@@ -5669,7 +5749,8 @@
applyBeginTime?: string;
/** 鎶ュ悕缁撴潫鏃堕棿 */
applyEndTime?: string;
- checkReceiveMethod?: EnumTaskCheckReceiveMethod;
+ /** 楠屾敹鏂瑰紡 */
+ checkReceiveMethods?: EnumTaskCheckReceiveMethod[];
paymentMethod?: EnumTaskPaymentMethod;
settlementAccess?: EnumEnterpriseWalletAccess;
/** 浠诲姟鎻忚堪 */
@@ -5681,6 +5762,8 @@
verifyWorkHours?: number;
/** 瓒呮椂鏈嶅姟璐� */
timeoutServiceFee?: number;
+ /** 鎬讳欢鏁� */
+ totalPieceQuantity?: number;
settlementCycle?: EnumSettlementCycle;
/** 绂忓埄 */
benefits?: GetTaskInfoQueryResultBenefit[];
@@ -5718,7 +5801,8 @@
applyBeginTime?: string;
/** 鎶ュ悕缁撴潫鏃堕棿 */
applyEndTime?: string;
- checkReceiveMethod?: EnumTaskCheckReceiveMethod;
+ /** 楠屾敹鏂瑰紡 */
+ checkReceiveMethods?: EnumTaskCheckReceiveMethod[];
paymentMethod?: EnumTaskPaymentMethod;
settlementAccess?: EnumEnterpriseWalletAccess;
/** 浠诲姟鎻忚堪 */
@@ -5730,6 +5814,8 @@
verifyWorkHours?: number;
/** 瓒呮椂鏈嶅姟璐� */
timeoutServiceFee?: number;
+ /** 鎬讳欢鏁� */
+ totalPieceQuantity?: number;
settlementCycle?: EnumSettlementCycle;
/** 绂忓埄 */
benefits?: GetTaskInfoQueryResultBenefit[];
@@ -6388,6 +6474,8 @@
checkReceiveStatus?: EnumTaskCheckReceiveStatus;
/** 缁撶畻鍗曞彿 */
settlementCode?: string;
+ /** 渚涘簲鍟嗗悕绉� */
+ supplierEnterpriseName?: string;
settlementOrderStatus?: EnumTaskSettlementOrderStatus;
/** 缁撶畻鍗曞悕绉� */
settlementOrderName?: string;
@@ -6458,6 +6546,8 @@
verifyWorkHours?: number;
/** 瓒呮椂鏈嶅姟璐� */
timeoutServiceFee?: number;
+ /** 鎬讳欢鏁� */
+ totalPieceQuantity?: number;
settlementAccess?: EnumEnterpriseWalletAccess;
settlementOrderStatus?: EnumTaskSettlementOrderStatus;
/** 缁撶畻鍗曞悕绉� */
@@ -6721,6 +6811,8 @@
verifyWorkHours?: number;
/** 瓒呮椂鏈嶅姟璐� */
timeoutServiceFee?: number;
+ /** 鎬讳欢鏁� */
+ totalPieceQuantity?: number;
settlementCycle?: EnumSettlementCycle;
/** 缁撶畻鏃ユ湡 */
settlementDate?: number;
@@ -6757,7 +6849,8 @@
applyBeginTime?: string;
/** 鎶ュ悕缁撴潫鏃堕棿 */
applyEndTime?: string;
- checkReceiveMethod?: EnumTaskCheckReceiveMethod;
+ /** 楠屾敹鏂瑰紡 */
+ checkReceiveMethods?: EnumTaskCheckReceiveMethod[];
paymentMethod?: EnumTaskPaymentMethod;
settlementAccess?: EnumEnterpriseWalletAccess;
/** 浠诲姟鎻忚堪 */
@@ -6869,6 +6962,8 @@
verifyWorkHours?: number;
/** 瓒呮椂鏈嶅姟璐� */
timeoutServiceFee?: number;
+ /** 鎬讳欢鏁� */
+ totalPieceQuantity?: number;
settlementCycle?: EnumSettlementCycle;
/** 绂忓埄 */
benefits?: GetTaskInfoQueryResultBenefit[];
@@ -6903,7 +6998,8 @@
/** 鎶ュ悕缁撴潫鏃堕棿 */
applyEndTime?: string;
applyStatus?: EnumTaskApplyStatus;
- checkReceiveMethod?: EnumTaskCheckReceiveMethod;
+ /** 楠屾敹鏂瑰紡 */
+ checkReceiveMethods?: EnumTaskCheckReceiveMethod[];
paymentMethod?: EnumTaskPaymentMethod;
settlementAccess?: EnumEnterpriseWalletAccess;
/** 浠诲姟鎻忚堪 */
@@ -7758,6 +7854,8 @@
type RepairContractTemplateValuePointBy1202Command = Record<string, any>;
+ type RepairTaskEstimatedServiceFee1301Command = Record<string, any>;
+
interface ResendResourceCommand {
/** 璧勬簮鏃ュ織Id */
id?: string;
@@ -8206,6 +8304,8 @@
verifyWorkHours?: number;
/** 瓒呮椂鏈嶅姟璐� */
timeoutServiceFee?: number;
+ /** 鎬讳欢鏁� */
+ totalPieceQuantity?: number;
settlementCycle: EnumSettlementCycle;
/** 缁撶畻鏃ユ湡 */
settlementDate: number;
@@ -8238,7 +8338,8 @@
applyBeginTime?: string;
/** 鎶ュ悕缁撴潫鏃堕棿 */
applyEndTime?: string;
- checkReceiveMethod?: EnumTaskCheckReceiveMethod;
+ /** 楠屾敹鏂瑰紡 */
+ checkReceiveMethods?: EnumTaskCheckReceiveMethod[];
paymentMethod?: EnumTaskPaymentMethod;
settlementAccess?: EnumEnterpriseWalletAccess;
/** 浠诲姟鎻忚堪 */
@@ -8592,6 +8693,7 @@
taskInfoId?: string;
/** 鏃ユ湡 */
date?: string;
+ userCheckHistoryType?: EnumTaskUserSubmitCheckHistoryType;
/** 闄勪欢 */
files?: string[];
}
--
Gitblit v1.9.1