From 8eec3bdd93b15bb26f53e3e4b1f5c1679f2efc1a Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期五, 31 十月 2025 13:15:12 +0800
Subject: [PATCH] fix: s
---
src/services/api/typings.d.ts | 186 +++++++++++++++++++++++++++++++++++++++++++++-
1 files changed, 181 insertions(+), 5 deletions(-)
diff --git a/src/services/api/typings.d.ts b/src/services/api/typings.d.ts
index d5768e6..54b580e 100644
--- a/src/services/api/typings.d.ts
+++ b/src/services/api/typings.d.ts
@@ -510,6 +510,12 @@
signChannel?: SignChannelEnum;
/** 妯℃澘缂栬緫鏁版嵁 */
templateEditData?: string;
+ /** 鏄惁鑷姩绛� */
+ isAutoSign?: boolean;
+ /** 鑷姩绛炬巿鏉冧功 */
+ autoSignPowerAttorneyUrl?: string;
+ /** 鑷畾涔夊唴瀹� */
+ customContentIds?: string[];
}
interface AddUpdateCustomerInput {
@@ -1288,6 +1294,13 @@
moduleId?: string;
}
+ interface APIgetAllSystemTemplateDataParamSettingListParams {
+ /** 鏄惁榛樿 */
+ isDefault?: boolean;
+ /** 妯℃澘Id */
+ lgGigWorkerCustomerTemplateId?: string;
+ }
+
interface APIgetBatchBillStaffListParams {
insurancePolicyId?: string;
batchBillId?: string;
@@ -1373,10 +1386,6 @@
interface APIgetCustomerTemplateParamListByTemplateIdParams {
templateId?: string;
- }
-
- interface APIgetCustomerUploadFileRecordParams {
- withMonth?: string;
}
interface APIgetDefaultConnectionStringParams {
@@ -2812,6 +2821,32 @@
userIds?: string[];
/** 鏈嶅姟浜哄憳Id */
serviceStaffId?: string;
+ }
+
+ interface BatchSignContractInput {
+ /** 瀵瑰鐢ㄦ埛Id */
+ outUserId?: string;
+ /** 瀵瑰鍚堝悓Id */
+ outContractIds?: string[];
+ }
+
+ interface BatchSignContractOutput {
+ /** 鎴愬姛鍚堝悓Id */
+ successIds?: string[];
+ errors?: BatchSignContractOutputError[];
+ }
+
+ interface BatchSignContractOutputError {
+ /** 瀵瑰鍚堝悓Id */
+ outContractId?: string;
+ /** 閿欒娑堟伅 */
+ errorMessages?: string;
+ }
+
+ interface BatchUpdateContractParamterStatusInput {
+ /** 鍙傛暟Id */
+ ids?: string[];
+ status?: EnumElectronSignContractParameterStatus;
}
interface BestSignDownloadImageDataResponse {
@@ -4984,6 +5019,10 @@
name: string;
/** 妯℃澘缂栧彿 */
templateCode: string;
+ /** 鏄惁鑷姩绛� */
+ isAutoSign?: boolean;
+ /** 鑷姩绛炬巿鏉冧功 */
+ autoSignPowerAttorneyUrl?: string;
/** 妯℃澘鍙橀噺 */
values: CreateOrUpdateContractTemplateValueInput[];
}
@@ -4998,6 +5037,12 @@
name?: string;
/** 鏄惁蹇呭~ */
required?: boolean;
+ /** 鍧愭爣X */
+ x?: number;
+ /** 鍧愭爣Y */
+ y?: number;
+ /** 椤电爜 */
+ page?: number;
}
interface CreateOrUpdateCooperationApplyInput {
@@ -5196,6 +5241,9 @@
incomeBankName?: string;
enterpriseId?: string;
selfAuditStatus?: EnumParkBountyTradeDetailAuditStatus;
+ auditType?: EnumParkBountyTradeDetailAuditType;
+ /** 姹熺淇濊嚜涓诲嚭璐﹀叧鑱斾繚鍗昳d */
+ insurancePolicyId?: string;
}
interface CreateParkOrHRAdvertiseInput {
@@ -6227,6 +6275,8 @@
configuration?: Record<string, any>;
}
+ type EnumElectronSignContractParameterStatus = 10 | 20;
+
type EnumElectronSignContractStatus = 1 | 2 | 3 | 4 | 5 | 9 | 99;
type EnumElectronSignContractSupplier = 10 | 20;
@@ -6248,6 +6298,8 @@
type EnumPagedListOrder = 0 | 1;
type EnumParkBountyTradeDetailAuditStatus = 10 | 20 | 30;
+
+ type EnumParkBountyTradeDetailAuditType = 10 | 100;
type EnumParkRewardStatisticsDetailScene = 1 | 2 | 3 | 4 | 5;
@@ -6423,7 +6475,7 @@
fileId?: string;
}
- type FinanceStatusEnum = 1 | 2 | 3;
+ type FinanceStatusEnum = 1 | 2 | 3 | -1;
type FinanceTypeEnum = 10 | 20 | 30;
@@ -7171,6 +7223,35 @@
completedEndDate?: string;
}
+ interface GetContractParamterListInput {
+ pageModel?: Pagination;
+ /** 鍏抽敭瀛� */
+ keywords?: string;
+ status?: EnumElectronSignContractParameterStatus;
+ }
+
+ interface GetContractParamterListItem {
+ /** 鍙傛暟Id */
+ id?: string;
+ /** 鏁版嵁鍙傛暟鍚嶇О */
+ dataParamName?: string;
+ /** 鏁版嵁鍙傛暟瀛楁鍚嶇О */
+ dataParamNameFieldName?: string;
+ /** 鏁版嵁鍙傛暟榛樿鍊� */
+ dataParamDefaultValue?: string;
+ /** 鏄惁 涓嶆槸鏁板�煎弬鏁帮紝鍗虫棤闇�鍊� */
+ isNotValueParam?: boolean;
+ /** 鏄惁榛樿 */
+ isDefault?: boolean;
+ status?: EnumElectronSignContractParameterStatus;
+ }
+
+ interface GetContractParamterListItemPageOutput {
+ pageModel?: Pagination;
+ objectData?: any;
+ data?: GetContractParamterListItem[];
+ }
+
interface GetContractTemplateDto {
/** Id */
id?: string;
@@ -7183,6 +7264,10 @@
name?: string;
/** 妯℃澘缂栧彿 */
templateCode?: string;
+ /** 鏄惁鑷姩绛� */
+ isAutoSign?: boolean;
+ /** 鑷姩绛炬巿鏉冧功 */
+ autoSignPowerAttorneyUrl?: string;
/** 妯℃澘鍙橀噺 */
values?: GetContractTemplateValueDto[];
}
@@ -7211,6 +7296,12 @@
name?: string;
/** 鏄惁蹇呭~ */
required?: boolean;
+ /** 鍧愭爣X */
+ x?: number;
+ /** 鍧愭爣Y */
+ y?: number;
+ /** 椤电爜 */
+ page?: number;
}
interface GetCooperationApplyInput {
@@ -7402,6 +7493,23 @@
creatorId?: string;
/** 鏄惁鍙互缂栬緫鍚嶇О */
isCanEditName?: boolean;
+ /** 鏄惁鑷姩绛� */
+ isAutoSign?: boolean;
+ /** 鑷姩绛炬巿鏉冧功锛堥�夋嫨鑷姩绛炬椂鏄剧ず锛� */
+ autoSignPowerAttorneyUrl?: string;
+ /** 鑷畾涔夊唴瀹� */
+ customContents?: GetCustomerTemplateDetailOutputCustomContent[];
+ }
+
+ interface GetCustomerTemplateDetailOutputCustomContent {
+ /** 妯℃澘Id */
+ templateId?: string;
+ /** Id */
+ id?: string;
+ /** 鏁版嵁鍙傛暟鍚嶇О */
+ dataParamName?: string;
+ /** 鍊� */
+ value?: string;
}
interface GetCustomerTemplateListOutput {
@@ -7419,6 +7527,10 @@
platedTime?: string;
/** 鎿嶄綔浜� */
operator?: string;
+ /** 鏄惁鑷姩绛� */
+ isAutoSign?: boolean;
+ /** 鑷畾涔夊唴瀹� */
+ customContents?: GetCustomerTemplateDetailOutputCustomContent[];
}
interface GetCustomerUploadApplyFilesByTypeInput {
@@ -7467,6 +7579,11 @@
parkName?: string;
/** 闄勪欢 */
items?: GetCustomerUploadApplyFilesOutput[];
+ }
+
+ interface GetCustomerUploadFileRecordInput {
+ withMonth?: string;
+ userId?: string;
}
interface GetCustomerUploadFileRecordOutput {
@@ -9186,6 +9303,8 @@
selfAuditOperator?: string;
/** 浼佷笟鑷韩鎿嶄綔浜篒d */
selfAuditOperatorId?: string;
+ /** 姹熺淇濅笂浼犵殑淇濆崟鏂囦欢 */
+ insureBillUrl?: string;
}
interface GetParkBountyTradeDetailOutputPageOutput {
@@ -9286,6 +9405,10 @@
financeType?: FinanceTypeEnum;
/** 杩涜处鍗曚綅 */
incomeCompanyName?: string;
+ /** 浼佷笟鑷韩瀹℃牳鍑瘉 */
+ selfAuditFileUrl?: string;
+ /** 姹熺淇濅笂浼犵殑淇濆崟鏂囦欢 */
+ insureBillUrl?: string;
}
interface GetParkCustomerBountyConsumptionOutputPageOutput {
@@ -14251,6 +14374,8 @@
compayId?: string;
/** 闇�瑕佺绾︾殑鐢ㄦ埛绛剧害id */
listLgWorkerSignId?: string[];
+ /** 鏉ヨ嚜鑷姩绛� */
+ fromAutoSign?: boolean;
}
interface LgGigWorkerBussinessAutoSignOutput {
@@ -16296,6 +16421,15 @@
extraListFiles?: CustomerUploadMonthApplyFileTypeDto[];
}
+ interface OutReCheckParkBountyApplyInput {
+ parkBountyApplyId?: string;
+ outReCheckStatus?: BountyCheckStatusEnum;
+ /** 澶囨敞 */
+ remark?: string;
+ /** 鎬荤殑棰濆琛ュ厖鏉愭枡 */
+ extraListFiles?: CustomerUploadMonthApplyFileTypeDto[];
+ }
+
interface PagedListQueryPageModel {
/** 琛屾暟 */
rows?: number;
@@ -18031,6 +18165,8 @@
userInfoEmailAddress?: string;
/** 娉ㄥ唽鏃ユ湡 */
registDate?: string;
+ /** 浜т笟鍥尯id */
+ industrialParkId?: string;
}
interface PriceInfo {
@@ -20185,6 +20321,20 @@
receiptName?: string;
}
+ interface SaveContractTemplateParamterInput {
+ /** 鍙傛暟Id */
+ id?: string;
+ /** 鏁版嵁鍙傛暟鍚嶇О */
+ dataParamName?: string;
+ /** 鏁版嵁鍙傛暟瀛楁鍚嶇О */
+ dataParamNameFieldName?: string;
+ /** 鏁版嵁鍙傛暟榛樿鍊� */
+ dataParamDefaultValue?: string;
+ /** 鏄惁 涓嶆槸鏁板�煎弬鏁帮紝鍗虫棤闇�鍊� */
+ isNotValueParam?: boolean;
+ status?: EnumElectronSignContractParameterStatus;
+ }
+
interface SaveCustomerTemplateParamInput {
/** 妯℃澘id */
lgGigWorkerCustomerTemplateId?: string;
@@ -21628,6 +21778,9 @@
selfAuditFileUrl?: string;
/** 濂栧姳閲戜綑棰� */
bountyAmount?: number;
+ auditType?: EnumParkBountyTradeDetailAuditType;
+ /** 姹熺淇濊嚜涓诲嚭璐﹀叧鑱斾繚鍗昳d */
+ insurancePolicyId?: string;
}
interface SysOrgDetailOutput {
@@ -22216,6 +22369,20 @@
id?: string;
}
+ interface UpdateCustomerContractTemplateCustomContentValueInput {
+ /** 鍚堝悓妯℃澘Id */
+ templateId?: string;
+ /** 鑷畾涔夊唴瀹� */
+ customContents?: UpdateCustomerContractTemplateCustomContentValueInputItem[];
+ }
+
+ interface UpdateCustomerContractTemplateCustomContentValueInputItem {
+ /** Id */
+ id?: string;
+ /** 鍊� */
+ value?: string;
+ }
+
interface UpdateEnterpriseMaterialInput {
/** 骞� */
year?: number;
@@ -22648,6 +22815,13 @@
id?: string;
}
+ interface UpdateParkBountyApplyTradeInsuranceBillFile {
+ /** 姹熺淇濊嚜涓诲嚭璐﹀叧鑱斾繚鍗昳d */
+ insurancePolicyId?: string;
+ /** 姹熺淇濅笂浼犵殑淇濆崟鏂囦欢 */
+ insureBillUrl?: string;
+ }
+
interface UpdatePassWordInput {
id?: string;
passWord?: string;
@@ -22925,6 +23099,8 @@
enterpriseName?: string;
/** 濮撳悕 */
contacter?: string;
+ /** 浜т笟鍥尯id */
+ industrialParkId?: string;
}
interface UpdateUserOrderContactStatusInput {
--
Gitblit v1.9.1