From a48be50fb38f21c6dd7ac8545c80d511783449ab Mon Sep 17 00:00:00 2001 From: zhengyiming <540361168@qq.com> Date: 星期五, 22 八月 2025 15:07:39 +0800 Subject: [PATCH] fix: 签约 --- src/services/api/typings.d.ts | 33 +++++++++++++++++++++++++++++---- 1 files changed, 29 insertions(+), 4 deletions(-) diff --git a/src/services/api/typings.d.ts b/src/services/api/typings.d.ts index 4e3e2ad..e629fd1 100644 --- a/src/services/api/typings.d.ts +++ b/src/services/api/typings.d.ts @@ -67,13 +67,18 @@ } interface APIgetEnabledElectronSignSettingsParams { - /** 鏌ヨ宸插惎鐢ㄧ殑鐢靛瓙绛鹃厤缃� */ - request?: GetEnabledElectronSignSettingsQuery; + /** 浼佷笟Id */ + enterpriseId?: string; } interface APIgetEnterpriseElectronSignSettingParams { /** Id */ id?: string; + } + + interface APIgetEnterpriseEmployeeElectronSignParams { + /** 鏌ヨ涓汉鐢ㄦ埛绛剧害璇︽儏 */ + request?: GetEnterpriseEmployeeElectronSignQuery; } interface APIgetEnterpriseEmployeeParams { @@ -949,6 +954,24 @@ /** 閿欒鐮� */ errorCode?: string; data?: GetEnterpriseElectronSignSettingQueryResult; + /** 鎵ц鎴愬姛 */ + success?: boolean; + /** 閿欒淇℃伅 */ + msg?: any; + /** 闄勫姞鏁版嵁 */ + extras?: any; + /** 鏃堕棿鎴� */ + timestamp?: number; + } + + interface FriendlyResultGetEnterpriseEmployeeElectronSignQueryResult { + /** 璺熻釜Id */ + traceId?: string; + /** 鐘舵�佺爜 */ + code?: number; + /** 閿欒鐮� */ + errorCode?: string; + data?: GetEnterpriseEmployeeElectronSignQueryResult; /** 鎵ц鎴愬姛 */ success?: boolean; /** 閿欒淇℃伅 */ @@ -2413,8 +2436,6 @@ isDisabled?: boolean; } - type GetEnabledElectronSignSettingsQuery = Record<string, any>; - interface GetEnabledElectronSignSettingsQueryResultItem { access?: EnumElectronSignAccess; /** 瀹炲悕璐圭敤 */ @@ -2502,6 +2523,10 @@ electronSignAccesses?: EnumElectronSignAccess[]; } + type GetEnterpriseEmployeeElectronSignQuery = Record<string, any>; + + type GetEnterpriseEmployeeElectronSignQueryResult = Record<string, any>; + interface GetEnterpriseEmployeeElectronSignsQuery { userSignContractStatus?: EnumTaskUserSignContractStatus; pageModel?: PagedListQueryPageModel; -- Gitblit v1.9.1