From 39e69d80759b3e65ac6116a5779115dec0da5368 Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期五, 31 十月 2025 09:20:43 +0800
Subject: [PATCH] feat: 1.3
---
packages/services/apiV2/typings.d.ts | 577 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
1 files changed, 565 insertions(+), 12 deletions(-)
diff --git a/packages/services/apiV2/typings.d.ts b/packages/services/apiV2/typings.d.ts
index 57302ba..750820f 100644
--- a/packages/services/apiV2/typings.d.ts
+++ b/packages/services/apiV2/typings.d.ts
@@ -180,6 +180,11 @@
roleId?: string;
}
+ interface APIgetPartyAEnterpriseParams {
+ /** 鍚堜綔Id */
+ id?: string;
+ }
+
interface APIgetPersonalLoginInfoParams {
/** 鏌ヨ涓汉鐢ㄦ埛鐧诲綍淇℃伅 */
request?: GetPersonalLoginInfoQuery;
@@ -245,6 +250,11 @@
isImport?: boolean;
/** 鎿嶄綔浠ょ墝 */
operatorToken?: string;
+ }
+
+ interface APIgetSupplierEnterpriseSelectParams {
+ /** 鏌ヨ渚涘簲鍟嗛�夋嫨鍣ㄦ暟鎹� */
+ request?: GetSupplierEnterpriseSelectQuery;
}
interface APIgetTaskEnterpriseParams {
@@ -354,6 +364,25 @@
auditRemark?: string;
/** 鎿嶄綔浠ょ墝 */
operatorToken?: string;
+ /** 鍚嶅崟 */
+ rosters?: AuditTaskSettlementCommandRoster[];
+ }
+
+ interface AuditTaskSettlementCommandRoster {
+ /** 鍚嶅崟Id */
+ id?: string;
+ /** 鏈嶅姟璐癸紙鍏冿級 */
+ serviceFee?: number;
+ /** 瓒呮椂锛堝皬鏃讹級 */
+ timeoutHours?: number;
+ /** 瓒呮椂璐圭敤锛堝厓锛� */
+ timeoutFee?: number;
+ /** 鍏朵粬璐圭敤锛堝厓锛� */
+ otherFee?: number;
+ /** 澶囨敞 */
+ remark?: string;
+ /** 缁撶畻閲戦 */
+ settlementAmount: number;
}
interface BaiduOcrBusinessLicenseResultModel {
@@ -442,6 +471,24 @@
operatorToken?: string;
}
+ interface CalcTaskCheckReceiveCommand {
+ /** 浠诲姟Id */
+ taskInfoId?: string;
+ /** 绛惧埌鏃堕棿 */
+ checkInTime?: string;
+ /** 绛惧嚭鏃堕棿 */
+ checkOutTime?: string;
+ }
+
+ interface CalcTaskCheckReceiveCommandResult {
+ /** 鏈嶅姟璐癸紙鍏冿級 */
+ serviceFee?: number;
+ /** 瓒呮椂锛堝皬鏃讹級 */
+ timeoutHours?: number;
+ /** 瓒呮椂璐圭敤锛堝厓锛� */
+ timeoutFee?: number;
+ }
+
interface ChangePhoneNumberCommand {
/** 鎵嬫満鍙风爜 */
phoneNumber: string;
@@ -457,6 +504,13 @@
interface CheckElectronSignAccessEnabledsCommand {
/** 閫氶亾 */
accesses?: EnumElectronSignAccess[];
+ }
+
+ interface CheckExistContractTemplateCodeCommand {
+ /** 妯℃澘Id锛堢紪杈戞椂浼犲叆锛� */
+ id?: string;
+ /** 涓氬姟缂栧彿 */
+ code: string;
}
type CheckHealthQuery = Record<string, any>;
@@ -477,6 +531,18 @@
checkInTime?: string;
/** 绛惧嚭鏃堕棿 */
checkOutTime?: string;
+ /** 鏈嶅姟璐癸紙鍏冿級 */
+ serviceFee?: number;
+ /** 瓒呮椂锛堝皬鏃讹級 */
+ timeoutHours?: number;
+ /** 瓒呮椂璐圭敤锛堝厓锛� */
+ timeoutFee?: number;
+ /** 鍏朵粬璐圭敤锛堝厓锛� */
+ otherFee?: number;
+ /** 澶囨敞 */
+ remark?: string;
+ /** 缁撶畻閲戦 */
+ settlementAmount?: number;
checkReceiveStatus?: EnumTaskUserSubmitCheckReceiveStatus;
}
@@ -552,16 +618,24 @@
interface EditTaskSettlementOrderRosterCommand {
/** 鍚嶅崟Id */
id?: string;
- /** 绱宸ユ椂 */
- totalWorkHours?: number;
+ /** 鏈嶅姟璐癸紙鍏冿級 */
+ serviceFee?: number;
+ /** 瓒呮椂锛堝皬鏃讹級 */
+ timeoutHours?: number;
+ /** 瓒呮椂璐圭敤锛堝厓锛� */
+ timeoutFee?: number;
+ /** 鍏朵粬璐圭敤锛堝厓锛� */
+ otherFee?: number;
+ /** 澶囨敞 */
+ remark?: string;
/** 缁撶畻閲戦 */
settlementAmount: number;
/** 瀹炲彂閲戦 */
actualSettlementAmount: number;
/** 鏀舵璐︽埛 */
- receiveAccount: string;
+ receiveAccount?: string;
/** 鎵�灞為摱琛� */
- bank: string;
+ bank?: string;
/** 寮�鎴锋敮琛屽悕绉� */
bankBranch?: string;
}
@@ -723,6 +797,20 @@
Face = 20,
}
+ enum EnumEnterpriseCooperationSignStatus {
+ /**鏈绾� */
+ None = 10,
+ /**宸茬绾� */
+ Completed = 20,
+ }
+
+ enum EnumEnterpriseCooperationStatus {
+ /**鏈悎浣� */
+ None = 10,
+ /**宸插悎浣� */
+ Completed = 20,
+ }
+
enum EnumEnterpriseCostStatus {
/**鎵h垂鎴愬姛 */
Success = 10,
@@ -742,6 +830,13 @@
Identity3 = 10,
/**浼佷笟鍥涜绱� */
Identity4 = 20,
+ }
+
+ enum EnumEnterpriseType {
+ /**渚涘簲鍟� */
+ Supplier = 0,
+ /**鐢叉柟浼佷笟 */
+ PartyA = 1,
}
enum EnumEnterpriseWalletAccess {
@@ -812,6 +907,27 @@
Recharge = 10,
/**杞处 */
Transfer = 20,
+ }
+
+ enum EnumGetArrangeTaskUsersQueryApplyStatus {
+ /**鏈姤鍚� */
+ None = 10,
+ /**宸叉姤鍚� */
+ Completed = 20,
+ }
+
+ enum EnumGetCheckReceiveTaskCheckInUsersQueryStatus {
+ /**宸茬鍒� */
+ CheckOut = 10,
+ /**鏈埌宀� */
+ UnCheck = 20,
+ }
+
+ enum EnumGetCheckReceiveTasksQueryResultItemCheckStatus {
+ /**鏈埌宀� */
+ None = 10,
+ /**宸茬鍒� */
+ Completed = 20,
}
enum EnumGetEnterpriseEmployeesQuerySignContractStatus {
@@ -1111,6 +1227,13 @@
Complete = 20,
}
+ enum EnumTaskUserApplyStatus {
+ /**鏈姤鍚� */
+ None = 10,
+ /**宸叉姤鍚� */
+ Completed = 20,
+ }
+
enum EnumTaskUserArrangeStatus {
/**鏈畨鎺� */
Wait = 10,
@@ -1145,8 +1268,6 @@
CheckOut = 20,
/**鏈埌宀� */
UnCheckIn = 30,
- /**鏈鍑� */
- UnCheckOut = 40,
}
enum EnumTaskUserSubmitCheckReceiveStatus {
@@ -1438,6 +1559,24 @@
timestamp?: number;
}
+ interface FriendlyResultCalcTaskCheckReceiveCommandResult {
+ /** 璺熻釜Id */
+ traceId?: string;
+ /** 鐘舵�佺爜 */
+ code?: number;
+ /** 閿欒鐮� */
+ errorCode?: string;
+ data?: CalcTaskCheckReceiveCommandResult;
+ /** 鎵ц鎴愬姛 */
+ success?: boolean;
+ /** 閿欒淇℃伅 */
+ msg?: any;
+ /** 闄勫姞鏁版嵁 */
+ extras?: any;
+ /** 鏃堕棿鎴� */
+ timestamp?: number;
+ }
+
interface FriendlyResultEnterpriseUserElectronSignCommandResult {
/** 璺熻釜Id */
traceId?: string;
@@ -1500,6 +1639,24 @@
/** 閿欒鐮� */
errorCode?: string;
data?: GetBankOcrCommandResult;
+ /** 鎵ц鎴愬姛 */
+ success?: boolean;
+ /** 閿欒淇℃伅 */
+ msg?: any;
+ /** 闄勫姞鏁版嵁 */
+ extras?: any;
+ /** 鏃堕棿鎴� */
+ timestamp?: number;
+ }
+
+ interface FriendlyResultGetCheckReceiveTaskCheckInUsersQueryResult {
+ /** 璺熻釜Id */
+ traceId?: string;
+ /** 鐘舵�佺爜 */
+ code?: number;
+ /** 閿欒鐮� */
+ errorCode?: string;
+ data?: GetCheckReceiveTaskCheckInUsersQueryResult;
/** 鎵ц鎴愬姛 */
success?: boolean;
/** 閿欒淇℃伅 */
@@ -2076,6 +2233,24 @@
/** 閿欒鐮� */
errorCode?: string;
data?: GetOperationUserInfosQueryResult;
+ /** 鎵ц鎴愬姛 */
+ success?: boolean;
+ /** 閿欒淇℃伅 */
+ msg?: any;
+ /** 闄勫姞鏁版嵁 */
+ extras?: any;
+ /** 鏃堕棿鎴� */
+ timestamp?: number;
+ }
+
+ interface FriendlyResultGetPartyAEnterpriseQueryResult {
+ /** 璺熻釜Id */
+ traceId?: string;
+ /** 鐘舵�佺爜 */
+ code?: number;
+ /** 閿欒鐮� */
+ errorCode?: string;
+ data?: GetPartyAEnterpriseQueryResult;
/** 鎵ц鎴愬姛 */
success?: boolean;
/** 閿欒淇℃伅 */
@@ -3074,6 +3249,25 @@
timestamp?: number;
}
+ interface FriendlyResultListSelectOptionGuidGetSupplierEnterpriseSelectQueryOption {
+ /** 璺熻釜Id */
+ traceId?: string;
+ /** 鐘舵�佺爜 */
+ code?: number;
+ /** 閿欒鐮� */
+ errorCode?: string;
+ /** 鏁版嵁 */
+ data?: SelectOptionGuidGetSupplierEnterpriseSelectQueryOption[];
+ /** 鎵ц鎴愬姛 */
+ success?: boolean;
+ /** 閿欒淇℃伅 */
+ msg?: any;
+ /** 闄勫姞鏁版嵁 */
+ extras?: any;
+ /** 鏃堕棿鎴� */
+ timestamp?: number;
+ }
+
interface FriendlyResultListSelectOptionGuidGetTaskSelectQueryOption {
/** 璺熻釜Id */
traceId?: string;
@@ -3239,6 +3433,24 @@
timestamp?: number;
}
+ interface FriendlyResultPagedListQueryResultGetPartyAEnterprisesQueryResultItem {
+ /** 璺熻釜Id */
+ traceId?: string;
+ /** 鐘舵�佺爜 */
+ code?: number;
+ /** 閿欒鐮� */
+ errorCode?: string;
+ data?: PagedListQueryResultGetPartyAEnterprisesQueryResultItem;
+ /** 鎵ц鎴愬姛 */
+ success?: boolean;
+ /** 閿欒淇℃伅 */
+ msg?: any;
+ /** 闄勫姞鏁版嵁 */
+ extras?: any;
+ /** 鏃堕棿鎴� */
+ timestamp?: number;
+ }
+
interface FriendlyResultPagedListQueryResultGetRolesQueryResultItem {
/** 璺熻釜Id */
traceId?: string;
@@ -3247,6 +3459,24 @@
/** 閿欒鐮� */
errorCode?: string;
data?: PagedListQueryResultGetRolesQueryResultItem;
+ /** 鎵ц鎴愬姛 */
+ success?: boolean;
+ /** 閿欒淇℃伅 */
+ msg?: any;
+ /** 闄勫姞鏁版嵁 */
+ extras?: any;
+ /** 鏃堕棿鎴� */
+ timestamp?: number;
+ }
+
+ interface FriendlyResultPagedListQueryResultGetSupplierEnterprisesQueryResultItem {
+ /** 璺熻釜Id */
+ traceId?: string;
+ /** 鐘舵�佺爜 */
+ code?: number;
+ /** 閿欒鐮� */
+ errorCode?: string;
+ data?: PagedListQueryResultGetSupplierEnterprisesQueryResultItem;
/** 鎵ц鎴愬姛 */
success?: boolean;
/** 閿欒淇℃伅 */
@@ -3421,6 +3651,7 @@
/** 鍏抽敭瀛楋紙濮撳悕/韬唤璇�/鐢佃瘽锛� */
keywords?: string;
arrangeStatus?: EnumTaskUserArrangeStatus;
+ applyStatus?: EnumGetArrangeTaskUsersQueryApplyStatus;
pageModel?: PagedListQueryPageModel;
}
@@ -3479,6 +3710,40 @@
number?: string;
}
+ interface GetCheckReceiveTaskCheckInUsersQuery {
+ /** 浠诲姟Id */
+ taskInfoId?: string;
+ /** 鏃ユ湡 */
+ date?: string;
+ status?: EnumGetCheckReceiveTaskCheckInUsersQueryStatus;
+ pageModel?: PagedListQueryPageModel;
+ }
+
+ interface GetCheckReceiveTaskCheckInUsersQueryResult {
+ pageModel?: PagedListQueryResultPageModel;
+ /** 鏁版嵁 */
+ data?: GetCheckReceiveTaskCheckInUsersQueryResultItem[];
+ }
+
+ interface GetCheckReceiveTaskCheckInUsersQueryResultItem {
+ /** 浠诲姟浜哄憳Id */
+ id?: string;
+ /** 澶村儚 */
+ avatar?: string;
+ /** 濮撳悕 */
+ name?: string;
+ /** 韬唤璇佸彿 */
+ identity?: string;
+ gender?: EnumUserGender;
+ /** 骞撮緞 */
+ age?: number;
+ /** 鎵嬫満鍙� */
+ contactPhoneNumber?: string;
+ /** 鏄惁瀹炲悕 */
+ isReal?: boolean;
+ realMethod?: EnumUserRealMethod;
+ }
+
interface GetCheckReceiveTaskQuery {
/** 浠诲姟Id */
taskInfoId?: string;
@@ -3525,9 +3790,14 @@
/** 鏈�杩戞彁浜ゆ椂闂� */
lastSubmitTime?: string;
checkReceiveStatus?: EnumTaskCheckReceiveStatus;
+ submitCheckReceiveStatus?: EnumTaskUserSubmitCheckReceiveStatus;
}
interface GetCheckReceiveTaskQueryResultObjectData {
+ /** 渚涘簲鍟咺d */
+ supplierEnterpriseId?: string;
+ /** 闇�姹備汉鏁� */
+ needPeopleNumber?: number;
/** 浠诲姟鍚嶇О */
name?: string;
/** 浠诲姟鍗曞彿 */
@@ -3579,6 +3849,10 @@
interface GetCheckReceiveTasksQueryResultItem {
/** 浠诲姟Id */
id?: string;
+ /** 渚涘簲鍟咺d */
+ supplierEnterpriseId?: string;
+ /** 闇�姹備汉鏁� */
+ needPeopleNumber?: number;
/** 浠诲姟鍚嶇О */
name?: string;
/** 浠诲姟鍗曞彿 */
@@ -3611,11 +3885,14 @@
checkReceiveStatus?: EnumTaskCheckReceiveStatus;
/** 鏈�杩戦獙鏀舵椂闂� */
lastCheckReceiveTime?: string;
+ checkedStatus?: EnumGetCheckReceiveTasksQueryResultItemCheckStatus;
}
interface GetCheckReceiveTaskUserSubmitCheckHistoriesQuery {
/** 浠诲姟Id */
taskInfoId?: string;
+ /** 浠诲姟浜哄憳Id */
+ taskInfoUserId?: string;
/** 鏃ユ湡 */
date?: string;
type?: EnumTaskUserSubmitCheckHistoryType;
@@ -3852,6 +4129,10 @@
access?: EnumElectronSignAccess;
/** 妯℃澘Id */
templateId?: string;
+ /** 鏄惁鑷姩绛� */
+ isAutoSign?: boolean;
+ /** 鑷姩绛炬巿鏉冧功 */
+ autoSignPowerAttorneyUrl?: string;
/** 鍙橀噺 */
values?: GetContractTemplateQueryResultValue[];
/** 鍒涘缓鎿嶄綔浜� */
@@ -4120,6 +4401,8 @@
/** 妯℃澘Id */
templateId?: string;
access?: EnumElectronSignAccess;
+ /** 鏄惁鑷姩绛� */
+ isAutoSign?: boolean;
/** 涓氬姟缂栫爜 */
code?: string;
/** 妯℃澘 */
@@ -4376,6 +4659,10 @@
identity?: string;
/** 浣欓 */
balance?: number;
+ /** 鍙敤浣欓 */
+ availableBalance?: number;
+ /** 宸插喕缁� */
+ freezeBalance?: number;
}
interface GetEnterpriseWalletExpandindirectOrderQueryResult {
@@ -4907,6 +5194,7 @@
releaseStatus?: EnumTaskReleaseStatus;
recommendStatus?: EnumTaskRecommendStatus;
checkReceiveStatus?: EnumTaskCheckReceiveStatus;
+ applyStatus?: EnumTaskUserApplyStatus;
pageModel?: PagedListQueryPageModel;
}
@@ -4960,6 +5248,84 @@
name?: string;
}
+ interface GetPartyAEnterpriseQueryResult {
+ /** 鍚堜綔Id */
+ id?: string;
+ /** 鐢叉柟浼佷笟Id */
+ partyAEnterpriseId?: string;
+ /** 浼佷笟鍚嶇О */
+ enterpriseName?: string;
+ /** 娉曚汉濮撳悕 */
+ legalPerson?: string;
+ /** 娉曚汉韬唤璇佸彿 */
+ legalIdentity?: string;
+ /** 缁熶竴绀句細淇$敤浠g爜 */
+ societyCreditCode?: string;
+ /** 娉ㄥ唽璧勬湰 */
+ registeredCapital?: string;
+ /** 浼佷笟绫诲瀷 */
+ enterpriseType?: string;
+ /** 鎴愮珛鏃ユ湡 */
+ establishmentDate?: string;
+ /** 鎵�鍦ㄧ渷浠界紪鍙� */
+ provinceCode?: string;
+ /** 鎵�鍦ㄧ渷浠� */
+ provinceContent?: string;
+ /** 鎵�鍦ㄥ煄甯傜紪鍙� */
+ cityCode?: string;
+ /** 鎵�鍦ㄥ煄甯� */
+ cityContent?: string;
+ /** 璇︾粏鍦板潃 */
+ address?: string;
+ /** 缁忚惀鑼冨洿 */
+ mainBusiness?: string;
+ /** 鑱旂郴浜� */
+ contacts?: string;
+ /** 鑱旂郴鐢佃瘽 */
+ contactPhoneNumber?: string;
+ /** 鑱旂郴閭 */
+ contactEmail?: string;
+ cooperationStatus?: EnumEnterpriseCooperationStatus;
+ signStatus?: EnumEnterpriseCooperationSignStatus;
+ /** 鍚堜綔鍗忚 */
+ cooperationAgreementUrl?: string;
+ /** 鐢ㄦ埛Id */
+ userId?: string;
+ /** 璐﹀彿 */
+ userName?: string;
+ }
+
+ interface GetPartyAEnterprisesQuery {
+ /** 鍏抽敭瀛� */
+ keywords?: string;
+ cooperationStatus?: EnumEnterpriseCooperationStatus;
+ signStatus?: EnumEnterpriseCooperationSignStatus;
+ pageModel?: PagedListQueryPageModel;
+ }
+
+ interface GetPartyAEnterprisesQueryResultItem {
+ /** 鍚堜綔Id */
+ id?: string;
+ /** 浼佷笟鍏ㄧО */
+ enterpriseName?: string;
+ /** 缁熶竴绀句細淇$敤浠g爜 */
+ societyCreditCode?: string;
+ /** 瀹㈡埛ID */
+ partyAEnterpriseId?: string;
+ /** 娉曚汉濮撳悕 */
+ legalPerson?: string;
+ /** 鑱旂郴浜� */
+ contacts?: string;
+ /** 鑱旂郴鐢佃瘽 */
+ contactPhoneNumber?: string;
+ /** 鎵�鍦ㄧ渷浠� */
+ provinceContent?: string;
+ /** 鎵�鍦ㄥ煄甯� */
+ cityContent?: string;
+ cooperationStatus?: EnumEnterpriseCooperationStatus;
+ signStatus?: EnumEnterpriseCooperationSignStatus;
+ }
+
interface GetPersonalApplyTaskInfosQuery {
status?: GetPersonalApplyTaskInfosQueryStatus;
pageModel?: PagedListQueryPageModel;
@@ -4974,6 +5340,10 @@
interface GetPersonalApplyTaskInfosQueryResultItem {
/** 浠诲姟Id */
id?: string;
+ /** 渚涘簲鍟咺d */
+ supplierEnterpriseId?: string;
+ /** 闇�姹備汉鏁� */
+ needPeopleNumber?: number;
/** 浠诲姟鍚嶇О */
name?: string;
/** 浠诲姟寮�濮嬫椂闂� */
@@ -5009,6 +5379,8 @@
WaitHire = 10,
/**寰呯绾� */
WaitSignContract = 20,
+ /**宸茶阿缁� */
+ HireRefuse = 30,
}
interface GetPersonalCancelTaskInfosQuery {
@@ -5024,6 +5396,10 @@
interface GetPersonalCancelTaskInfosQueryResultItem {
/** 浠诲姟Id */
id?: string;
+ /** 渚涘簲鍟咺d */
+ supplierEnterpriseId?: string;
+ /** 闇�姹備汉鏁� */
+ needPeopleNumber?: number;
/** 浠诲姟鍚嶇О */
name?: string;
/** 浠诲姟寮�濮嬫椂闂� */
@@ -5054,6 +5430,8 @@
}
interface GetPersonalHireTaskInfosQuery {
+ hireStatus?: EnumTaskUserHireStatus;
+ arrangeStatus?: EnumTaskUserArrangeStatus;
status?: GetPersonalHireTaskInfosQueryStatus;
pageModel?: PagedListQueryPageModel;
}
@@ -5067,6 +5445,10 @@
interface GetPersonalHireTaskInfosQueryResultItem {
/** 浠诲姟Id */
id?: string;
+ /** 渚涘簲鍟咺d */
+ supplierEnterpriseId?: string;
+ /** 闇�姹備汉鏁� */
+ needPeopleNumber?: number;
/** 浠诲姟鍚嶇О */
name?: string;
/** 浠诲姟寮�濮嬫椂闂� */
@@ -5133,6 +5515,8 @@
hireRefuseTaskCount?: number;
/** 浠诲姟涓� */
inProcessTaskCount?: number;
+ /** 宸插畨鎺� */
+ arrangeCompleteTaskCount?: number;
/** 浣欓 */
balance?: number;
/** 鎴戠殑鏀剁泭 */
@@ -5613,6 +5997,7 @@
/** 鍚嶇О */
name?: string;
userType?: EnumUserType;
+ enterpriseType?: EnumEnterpriseType;
clientType?: EnumClientType;
/** 鏈�浣庣骇鍒� */
minLevel?: number;
@@ -5633,6 +6018,7 @@
interface GetRolesQuery {
userType?: EnumUserType;
+ enterpriseType?: EnumEnterpriseType;
clientType?: EnumClientType;
/** 鍏抽敭瀛� */
keywords?: string;
@@ -5645,6 +6031,7 @@
/** 鍚嶇О */
name?: string;
userType?: EnumUserType;
+ enterpriseType?: EnumEnterpriseType;
clientType?: EnumClientType;
/** 鏈�浣庣骇鍒� */
minLevel?: number;
@@ -5694,6 +6081,8 @@
interface GetSettlementTasksQuery {
/** 鍏抽敭瀛� */
keywords?: string;
+ /** 浠诲姟Id */
+ taskInfoId?: string;
paymentStatus?: GetSettlementTasksQueryPaymentStatus;
settlementOrderStatus?: EnumTaskSettlementOrderStatus;
settlementStatus?: EnumTaskSettlementStatus;
@@ -5768,6 +6157,10 @@
interface GetSettlementTaskUsersQueryResultDetail {
/** 缁撶畻璁㈠崟Id */
id?: string;
+ /** 渚涘簲鍟咺d */
+ supplierEnterpriseId?: string;
+ /** 闇�姹備汉鏁� */
+ needPeopleNumber?: number;
/** 鏍¢獙楠屾敹璧峰鏃ユ湡 */
checkReceiveBeginDate?: string;
/** 鏍¢獙楠屾敹鎴鏃ユ湡 */
@@ -5828,14 +6221,22 @@
/** 鏄惁瀹炲悕 */
isReal?: boolean;
realMethod?: EnumUserRealMethod;
- /** 绱宸ユ椂 */
- totalWorkHours?: number;
/** 鎵�灞為摱琛� */
bank?: string;
/** 寮�鎴锋敮琛屽悕绉� */
bankBranch?: string;
/** 鏀舵璐︽埛 */
receiveAccount?: string;
+ /** 鏈嶅姟璐癸紙鍏冿級 */
+ serviceFee?: number;
+ /** 瓒呮椂锛堝皬鏃讹級 */
+ timeoutHours?: number;
+ /** 瓒呮椂璐圭敤锛堝厓锛� */
+ timeoutFee?: number;
+ /** 鍏朵粬璐圭敤锛堝厓锛� */
+ otherFee?: number;
+ /** 澶囨敞 */
+ remark?: string;
/** 缁撶畻閲戦 */
settlementAmount?: number;
/** 瀹炲彂閲戦 */
@@ -5937,6 +6338,52 @@
signName?: string;
}
+ type GetSupplierEnterpriseSelectQuery = Record<string, any>;
+
+ interface GetSupplierEnterpriseSelectQueryOption {
+ /** 渚涘簲鍟咺d */
+ supplierEnterpriseId?: string;
+ supplierEnterprise?: GetSupplierEnterpriseSelectQueryOptionEnterprise;
+ }
+
+ interface GetSupplierEnterpriseSelectQueryOptionEnterprise {
+ /** 浼佷笟鍏ㄧО */
+ enterpriseName?: string;
+ }
+
+ interface GetSupplierEnterprisesQuery {
+ /** 鍏抽敭瀛� */
+ keywords?: string;
+ cooperationStatus?: EnumEnterpriseCooperationStatus;
+ signStatus?: EnumEnterpriseCooperationSignStatus;
+ pageModel?: PagedListQueryPageModel;
+ }
+
+ interface GetSupplierEnterprisesQueryResultItem {
+ /** 鍚堜綔Id */
+ id?: string;
+ /** 浼佷笟鍏ㄧО */
+ enterpriseName?: string;
+ /** 缁熶竴绀句細淇$敤浠g爜 */
+ societyCreditCode?: string;
+ /** 渚涘簲鍟咺D */
+ supplierEnterpriseId?: string;
+ /** 娉曚汉濮撳悕 */
+ legalPerson?: string;
+ /** 鑱旂郴浜� */
+ contacts?: string;
+ /** 鑱旂郴鐢佃瘽 */
+ contactPhoneNumber?: string;
+ /** 鎵�鍦ㄧ渷浠� */
+ provinceContent?: string;
+ /** 鎵�鍦ㄥ煄甯� */
+ cityContent?: string;
+ /** 鎵�灞炶涓� */
+ industryTypeContent?: string;
+ cooperationStatus?: EnumEnterpriseCooperationStatus;
+ signStatus?: EnumEnterpriseCooperationSignStatus;
+ }
+
interface GetTaskEnterpriseQueryResult {
/** 浼佷笟鍏ㄧО */
enterpriseName?: string;
@@ -5961,6 +6408,12 @@
interface GetTaskInfoQueryResult {
/** Id */
id?: string;
+ /** 渚涘簲鍟咺d */
+ supplierEnterpriseId?: string;
+ /** 渚涘簲鍟� */
+ supplierEnterpriseName?: string;
+ /** 闇�姹備汉鏁� */
+ needPeopleNumber?: number;
/** 浼佷笟Id */
enterpriseId?: string;
/** 浼佷笟鍏ㄧО */
@@ -6093,6 +6546,7 @@
checkReceiveStatus?: EnumTaskCheckReceiveStatus;
/** 鏄惁鏀惰棌 */
isCollected?: boolean;
+ applyStatus?: EnumTaskUserApplyStatus;
pageModel?: PagedListQueryPageModel;
}
@@ -6106,11 +6560,21 @@
interface GetTaskInfosQueryResultItem {
/** Id */
id?: string;
+ /** 渚涘簲鍟咺d */
+ supplierEnterpriseId?: string;
+ /** 渚涘簲鍟� */
+ supplierEnterpriseName?: string;
+ /** 渚涘簲鍟嗚处鍙� */
+ supplierEnterpriseUserName?: string;
+ /** 闇�姹備汉鏁� */
+ needPeopleNumber?: number;
/** 浠诲姟鍚嶇О */
name: string;
/** 浠诲姟鍗曞彿 */
code?: string;
- /** 浼佷笟鍏ㄧО */
+ /** 鎵�灞炲鎴稩d */
+ enterpriseId?: string;
+ /** 鎵�灞炲鎴� */
enterpriseName?: string;
/** 鐢ㄦ埛鍚� */
userName?: string;
@@ -6393,6 +6857,8 @@
height?: number;
/** 浣撻噸 */
weight?: number;
+ /** 闉嬬爜 */
+ shoeSize?: number;
/** 鐢熸椿鐓� */
photos?: string[];
/** 鐢熸椿鐓� */
@@ -6494,6 +6960,8 @@
height?: number;
/** 浣撻噸 */
weight?: number;
+ /** 闉嬬爜 */
+ shoeSize?: number;
/** 鐢熸椿鐓� */
photos?: string[];
/** 鐢熸椿鐓� */
@@ -6702,12 +7170,20 @@
bankBranch?: string;
/** 鏀舵璐︽埛 */
receiveAccount?: string;
- /** 绱宸ユ椂 */
- totalWorkHours?: number;
+ /** 鏈嶅姟璐癸紙鍏冿級 */
+ serviceFee?: number;
+ /** 瓒呮椂锛堝皬鏃讹級 */
+ timeoutHours?: number;
+ /** 瓒呮椂璐圭敤锛堝厓锛� */
+ timeoutFee?: number;
+ /** 鍏朵粬璐圭敤锛堝厓锛� */
+ otherFee?: number;
/** 缁撶畻閲戦 */
settlementAmount?: number;
/** 瀹炲彂閲戦 */
actualSettlementAmount?: number;
+ /** 澶囨敞 */
+ remark?: string;
}
interface InviteElectronSignCommand {
@@ -6856,10 +7332,22 @@
data?: GetEnterprisesQueryResultItem[];
}
+ interface PagedListQueryResultGetPartyAEnterprisesQueryResultItem {
+ pageModel?: PagedListQueryResultPageModel;
+ /** 鏁版嵁 */
+ data?: GetPartyAEnterprisesQueryResultItem[];
+ }
+
interface PagedListQueryResultGetRolesQueryResultItem {
pageModel?: PagedListQueryResultPageModel;
/** 鏁版嵁 */
data?: GetRolesQueryResultItem[];
+ }
+
+ interface PagedListQueryResultGetSupplierEnterprisesQueryResultItem {
+ pageModel?: PagedListQueryResultPageModel;
+ /** 鏁版嵁 */
+ data?: GetSupplierEnterprisesQueryResultItem[];
}
interface PagedListQueryResultPageModel {
@@ -6882,6 +7370,7 @@
password: string;
type?: EnumUserType;
clientType?: EnumClientType;
+ enterpriseType?: EnumEnterpriseType;
}
interface PersonalUserElectronSignCommand {
@@ -7029,6 +7518,10 @@
access?: EnumElectronSignAccess;
/** 妯℃澘Id */
templateId?: string;
+ /** 鏄惁鑷姩绛� */
+ isAutoSign?: boolean;
+ /** 鑷姩绛炬巿鏉冧功 */
+ autoSignPowerAttorneyUrl?: string;
/** Id */
id?: string;
}
@@ -7287,6 +7780,49 @@
id?: string;
}
+ interface SavePartyAEnterpriseCommand {
+ /** 浼佷笟鍚嶇О */
+ enterpriseName: string;
+ /** 娉曚汉濮撳悕 */
+ legalPerson?: string;
+ /** 娉曚汉韬唤璇佸彿 */
+ legalIdentity?: string;
+ /** 缁熶竴绀句細淇$敤浠g爜 */
+ societyCreditCode: string;
+ /** 娉ㄥ唽璧勬湰 */
+ registeredCapital?: string;
+ /** 浼佷笟绫诲瀷 */
+ enterpriseType?: string;
+ /** 鎴愮珛鏃ユ湡 */
+ establishmentDate?: string;
+ /** 鎵�鍦ㄧ渷浠界紪鍙� */
+ provinceCode?: string;
+ /** 鎵�鍦ㄥ煄甯傜紪鍙� */
+ cityCode?: string;
+ /** 璇︾粏鍦板潃 */
+ address?: string;
+ /** 缁忚惀鑼冨洿 */
+ mainBusiness?: string;
+ /** 鑱旂郴浜� */
+ contacts?: string;
+ /** 鑱旂郴鐢佃瘽 */
+ contactPhoneNumber?: string;
+ /** 鑱旂郴閭 */
+ contactEmail?: string;
+ cooperationStatus?: EnumEnterpriseCooperationStatus;
+ signStatus?: EnumEnterpriseCooperationSignStatus;
+ /** 鍚堜綔鍗忚 */
+ cooperationAgreementUrl?: string;
+ /** 璐﹀彿 */
+ userName?: string;
+ /** 瀵嗙爜锛堥�夊~ 濉簡灏辨敼涓嶅~灏变笉鏀癸級 */
+ password?: string;
+ /** 鎿嶄綔瀵嗙爜锛堥�夊~ 濉簡灏辨敼涓嶅~灏变笉鏀癸級 */
+ operatorPassword?: string;
+ /** Id */
+ id?: string;
+ }
+
interface SavePersonalUserBankCardCommand {
/** 鐏靛伐Id */
enterpriseEmployeeId?: string;
@@ -7311,6 +7847,7 @@
/** 鍚嶇О */
name?: string;
userType?: EnumUserType;
+ enterpriseType?: EnumEnterpriseType;
clientType?: EnumClientType;
/** 鏈�浣庣骇鍒� */
minLevel?: number;
@@ -7349,11 +7886,15 @@
}
interface SaveTaskInfoCommand {
+ /** 渚涘簲鍟咺d */
+ supplierEnterpriseId?: string;
+ /** 闇�姹備汉鏁� */
+ needPeopleNumber?: number;
/** 浠诲姟鍚嶇О */
name: string;
billingMethod: EnumBillingMethod;
/** 鏈嶅姟璐� */
- serviceFee: number;
+ serviceFee?: number;
/** 鏍稿畾宸ユ椂 */
verifyWorkHours?: number;
/** 瓒呮椂鏈嶅姟璐� */
@@ -7445,6 +7986,8 @@
height?: number;
/** 浣撻噸 */
weight?: number;
+ /** 闉嬬爜 */
+ shoeSize?: number;
/** 鐢熸椿鐓� */
photos?: string[];
/** 涓汉瑙嗛 */
@@ -7520,6 +8063,14 @@
/** 鏍囩 */
label?: string;
data?: GetEnterpriseWalletAccessSelectQueryOption;
+ }
+
+ interface SelectOptionGuidGetSupplierEnterpriseSelectQueryOption {
+ /** 鍊� */
+ value?: string;
+ /** 鏍囩 */
+ label?: string;
+ data?: GetSupplierEnterpriseSelectQueryOption;
}
interface SelectOptionGuidGetTaskSelectQueryOption {
@@ -7721,6 +8272,7 @@
verifyCode?: string;
type?: EnumUserType;
clientType?: EnumClientType;
+ enterpriseType?: EnumEnterpriseType;
}
interface StopElectronSignCommand {
@@ -8544,5 +9096,6 @@
/** 鐢ㄦ埛鐧诲綍鍑瘉 */
code: string;
type?: EnumUserType;
+ enterpriseType?: EnumEnterpriseType;
}
}
--
Gitblit v1.9.1