From 2caafed814dbbaf0905e77db91ed7835d8d854d9 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期一, 16 六月 2025 13:08:37 +0800
Subject: [PATCH] fix: bug

---
 config/openapi.json                               |    2 
 src/services/api/ExternalSystem.ts                |   33 +++++
 src/services/api/Home.ts                          |   13 ++
 src/services/api/typings.d.ts                     |  159 ++++++++++++++++++++++++-
 src/services/api/EnterpriseApplyFile.ts           |   32 +++++
 src/views/MaterialReview/MaterialReviewAudit.vue  |    4 
 .env.development                                  |    4 
 src/services/api/index.ts                         |    4 
 src/services/api/Account.ts                       |   12 ++
 src/services/api/User.ts                          |   20 +++
 src/views/Reward/RewardDeclareDetail.vue          |    4 
 src/services/api/ParkBountyApply.ts               |   18 +++
 src/views/MaterialReview/MaterialReviewDetail.vue |    4 
 13 files changed, 288 insertions(+), 21 deletions(-)

diff --git a/.env.development b/.env.development
index c796369..d8fb9b1 100644
--- a/.env.development
+++ b/.env.development
@@ -11,8 +11,8 @@
 VITE_ROUTER_HISTORY = "h5"
 
 # 寮�鍙戠幆澧冨悗绔湴鍧�
-VITE_PROXY_DOMAIN_REAL = "http://localhost:57190"
-# VITE_PROXY_DOMAIN_REAL = "http://192.168.0.27:57190"
+VITE_PROXY_DOMAIN_REAL = "http://localhost:57191"
+# VITE_PROXY_DOMAIN_REAL = "http://192.168.0.27:57191"
 # VITE_PROXY_DOMAIN_REAL = "https://testrlywx.boleyuma.com"
 
 VITE_COMPRESSION = "none"
diff --git a/config/openapi.json b/config/openapi.json
index f3cf91c..441e64f 100644
--- a/config/openapi.json
+++ b/config/openapi.json
@@ -2,7 +2,7 @@
   "config": [
     {
       "requestLibPath": "import { request } from '@/utils/request'",
-      "schemaPath": "http://localhost:57190/swagger/v1/swagger.json",
+      "schemaPath": "http://localhost:57191/swagger/v1/swagger.json",
       "serversPath": "./src/services"
     }
   ]
diff --git a/src/services/api/Account.ts b/src/services/api/Account.ts
index 7f7fd9a..3dc39aa 100644
--- a/src/services/api/Account.ts
+++ b/src/services/api/Account.ts
@@ -131,6 +131,18 @@
   });
 }
 
+/** 鍒涘缓涓存椂璁块棶浠ょ墝 POST /api/Account/CreateTempToken */
+export async function createTempToken(body: API.CreateTempTokenInput, options?: API.RequestConfig) {
+  return request<string>('/api/Account/CreateTempToken', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
 /** 绠$悊鍛樺垱寤虹敤鎴� POST /api/Account/CreateUserForAdmin */
 export async function createUserForAdmin(
   body: API.CreateUserForAdminInput,
diff --git a/src/services/api/EnterpriseApplyFile.ts b/src/services/api/EnterpriseApplyFile.ts
index 90bd80f..6413946 100644
--- a/src/services/api/EnterpriseApplyFile.ts
+++ b/src/services/api/EnterpriseApplyFile.ts
@@ -32,6 +32,21 @@
   });
 }
 
+/** 鍒犻櫎瀹㈡埛鍥涙祦鏉愭枡 POST /api/EnterpriseApplyFile/DeleteEnterpriseApplyUploadFile */
+export async function deleteEnterpriseApplyUploadFile(
+  // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄)
+  params: API.APIdeleteEnterpriseApplyUploadFileParams,
+  options?: API.RequestConfig
+) {
+  return request<any>('/api/EnterpriseApplyFile/DeleteEnterpriseApplyUploadFile', {
+    method: 'POST',
+    params: {
+      ...params,
+    },
+    ...(options || {}),
+  });
+}
+
 /** 瀹㈡埛绔垹闄ゆ寜鏈堜笂浼犲崟涓枃浠� DELETE /api/EnterpriseApplyFile/DeleteMonthApplySingleFile */
 export async function deleteMonthApplySingleFile(
   body: API.DeleteMonthApplySingleFileInput,
@@ -70,7 +85,7 @@
   body: API.GetCustomerUploadApplyFilesInput,
   options?: API.RequestConfig
 ) {
-  return request<API.GetCustomerUploadApplyFilesOutput[]>(
+  return request<API.GetCustomerUploadApplyFilesResponse>(
     '/api/EnterpriseApplyFile/GetCustomerUploadApplyFiles',
     {
       method: 'POST',
@@ -155,6 +170,21 @@
   );
 }
 
+/** 鏇存柊鍥涙祦鏉愭枡鐢虫姤閲戦 POST /api/EnterpriseApplyFile/UpdateEnterpriseMonthApplyFileApplyAmount */
+export async function updateEnterpriseMonthApplyFileApplyAmount(
+  body: API.UpdateEnterpriseMonthApplyFileApplyAmountInput,
+  options?: API.RequestConfig
+) {
+  return request<any>('/api/EnterpriseApplyFile/UpdateEnterpriseMonthApplyFileApplyAmount', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
 /** 涓婁紶鏉愭枡璇︽儏-缂栬緫-涓婁紶鏂囦欢 POST /api/EnterpriseApplyFile/UploadMonthApplySingleFiles */
 export async function uploadMonthApplySingleFiles(
   body: API.UploadMonthApplySingleFilesInput,
diff --git a/src/services/api/ExternalSystem.ts b/src/services/api/ExternalSystem.ts
new file mode 100644
index 0000000..2018eb9
--- /dev/null
+++ b/src/services/api/ExternalSystem.ts
@@ -0,0 +1,33 @@
+/* eslint-disable */
+// @ts-ignore
+import { request } from '@/utils/request';
+
+/** 鏂板鎴栦慨鏀瑰閮ㄧ郴缁� POST /api/ExternalSystem/CreateOrEditExternalSystem */
+export async function createOrEditExternalSystem(
+  body: API.ExternalSystemDto,
+  options?: API.RequestConfig
+) {
+  return request<string>('/api/ExternalSystem/CreateOrEditExternalSystem', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
+/** 鑾峰彇澶栭儴绯荤粺鍒楄〃 POST /api/ExternalSystem/GetExternalSystemList */
+export async function getExternalSystemList(
+  body: API.GetExternalSystemInput,
+  options?: API.RequestConfig
+) {
+  return request<API.ExternalSystemDtoPageOutput>('/api/ExternalSystem/GetExternalSystemList', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
diff --git a/src/services/api/Home.ts b/src/services/api/Home.ts
new file mode 100644
index 0000000..8689fd8
--- /dev/null
+++ b/src/services/api/Home.ts
@@ -0,0 +1,13 @@
+/* eslint-disable */
+// @ts-ignore
+import { request } from '@/utils/request'
+
+/** 姝ゅ鍚庣娌℃湁鎻愪緵娉ㄩ噴 GET /api/health */
+export async function (
+  options?: API.RequestConfig) {
+  return request<any>('/api/health', {
+  method: 'GET',
+    ...(options || {}),
+  });
+}
+
diff --git a/src/services/api/ParkBountyApply.ts b/src/services/api/ParkBountyApply.ts
index fbeb4ac..e5828b4 100644
--- a/src/services/api/ParkBountyApply.ts
+++ b/src/services/api/ParkBountyApply.ts
@@ -901,6 +901,24 @@
   });
 }
 
+/** 鍚屾濂栧姳閲戝嚭璐︿俊鎭� POST /api/ParkBountyApply/SyncParkBountyApplyTrade */
+export async function syncParkBountyApplyTrade(
+  body: API.CreateParkBountyTradeInput,
+  options?: API.RequestConfig
+) {
+  return request<API.SyncParkBountyApplyTradeOutput>(
+    '/api/ParkBountyApply/SyncParkBountyApplyTrade',
+    {
+      method: 'POST',
+      headers: {
+        'Content-Type': 'application/json',
+      },
+      data: body,
+      ...(options || {}),
+    }
+  );
+}
+
 /** 涓婁紶浼佷笟鏉愭枡 POST /api/ParkBountyApply/UploadParkBountyApplyCompanyFile */
 export async function uploadParkBountyApplyCompanyFile(
   body: API.UploadParkBountyApplyCompanyFileInput,
diff --git a/src/services/api/User.ts b/src/services/api/User.ts
index 81de504..62c8e00 100644
--- a/src/services/api/User.ts
+++ b/src/services/api/User.ts
@@ -49,7 +49,7 @@
 
 /** 鏍¢獙鎵归噺鍒涘缓璁よ瘉鐢ㄦ埛鏁版嵁 POST /api/User/CheckBatchCreateCompanyUserData */
 export async function checkBatchCreateCompanyUserData(
-  body: API.CheckBatchCreateCompanyUserInput[],
+  body: API.CheckBatchCreateCompanyUserDataInput,
   options?: API.RequestConfig
 ) {
   return request<API.CheckBatchCreateCompanyUserResult[]>(
@@ -425,6 +425,24 @@
   });
 }
 
+/** 姝ゅ鍚庣娌℃湁鎻愪緵娉ㄩ噴 GET /api/User/GetUserBaseEnterpriseInfoThridpart */
+export async function getUserBaseEnterpriseInfoThridpart(
+  // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄)
+  params: API.APIgetUserBaseEnterpriseInfoThridpartParams,
+  options?: API.RequestConfig
+) {
+  return request<API.GetUserBaseEnterpriseInfoOutput>(
+    '/api/User/GetUserBaseEnterpriseInfoThridpart',
+    {
+      method: 'GET',
+      params: {
+        ...params,
+      },
+      ...(options || {}),
+    }
+  );
+}
+
 /** 鑾峰彇鐢ㄦ埛璇佷功鐢宠鐘舵�� GET /api/User/GetUserBestSignUserRegStatus */
 export async function getUserBestSignUserRegStatus(options?: API.RequestConfig) {
   return request<number>('/api/User/GetUserBestSignUserRegStatus', {
diff --git a/src/services/api/index.ts b/src/services/api/index.ts
index 925c18e..ea6856d 100644
--- a/src/services/api/index.ts
+++ b/src/services/api/index.ts
@@ -24,11 +24,13 @@
 import * as Customer from './Customer';
 import * as EnterpriseApplyFile from './EnterpriseApplyFile';
 import * as EnterpriseMaterial from './EnterpriseMaterial';
+import * as ExternalSystem from './ExternalSystem';
 import * as Features from './Features';
 import * as FirstPartyCompany from './FirstPartyCompany';
 import * as Fund from './Fund';
 import * as HeadHunter from './HeadHunter';
 import * as HelpQuestion from './HelpQuestion';
+import * as Home from './Home';
 import * as IdentityRole from './IdentityRole';
 import * as IdentityUser from './IdentityUser';
 import * as IdentityUserLookup from './IdentityUserLookup';
@@ -111,11 +113,13 @@
   Customer,
   EnterpriseApplyFile,
   EnterpriseMaterial,
+  ExternalSystem,
   Features,
   FirstPartyCompany,
   Fund,
   HeadHunter,
   HelpQuestion,
+  Home,
   IdentityRole,
   IdentityUser,
   IdentityUserLookup,
diff --git a/src/services/api/typings.d.ts b/src/services/api/typings.d.ts
index 23bdafc..17f2d1d 100644
--- a/src/services/api/typings.d.ts
+++ b/src/services/api/typings.d.ts
@@ -55,7 +55,7 @@
     /** 浼佷笟鍚嶇О */
     enterpriseName: string;
     /** 钀ヤ笟鎵х収鏂囦欢鍦板潃 */
-    licenseUrl: string;
+    licenseUrl?: string;
     /** 缁熶竴绀句細淇$敤浠g爜 */
     societyCreditCode: string;
     certificationMode?: UserCertificationModeEnum;
@@ -73,17 +73,20 @@
     payAmount?: number;
     /** 鎵�灞炲洯鍖� */
     belongPark?: string;
-    /** 閾惰鍗″彿 */
-    bankCardNumber?: string;
     certificationChannel?: UserCertificationChannelEnum;
     /** 鐢ㄦ埛鍚� */
     userName: string;
     /** 鎵嬫満鍙� */
     phoneNumber: string;
     /** 鑱旂郴浜� */
-    contact: string;
+    contact?: string;
     /** 鑱旂郴鐢佃瘽 */
-    contactPhone: string;
+    contactPhone?: string;
+    /** 浜т笟鍥尯id */
+    industrialParkId?: string;
+    bankName?: string;
+    bankBranchName?: string;
+    bankCardNumber?: string;
   }
 
   interface AddEnterpriseMaterialFileInput {
@@ -239,6 +242,8 @@
     suportWithDraw?: boolean;
     /** 鏂囦欢 */
     industrialParkApplyFileFile?: IndustrialParkApplyFileFile[];
+    /** 鏃犻渶鏀垮姟绔鏍� */
+    notNeedGovernmentAudit?: boolean;
   }
 
   interface AddIndustryBodyAuditInput {
@@ -602,7 +607,7 @@
     /** 浼佷笟鍚嶇О */
     enterpriseName: string;
     /** 钀ヤ笟鎵х収鏂囦欢鍦板潃 */
-    licenseUrl: string;
+    licenseUrl?: string;
     /** 缁熶竴绀句細淇$敤浠g爜 */
     societyCreditCode: string;
     certificationMode?: UserCertificationModeEnum;
@@ -620,6 +625,8 @@
     payAmount?: number;
     /** 鎵�灞炲洯鍖� */
     belongPark?: string;
+    /** 浜т笟鍥尯id */
+    industrialParkId?: string;
     /** 閾惰鍗″彿 */
     bankCardNumber?: string;
     certificationChannel?: UserCertificationChannelEnum;
@@ -1035,6 +1042,10 @@
     guid?: string;
   }
 
+  interface APIdeleteEnterpriseApplyUploadFileParams {
+    id?: string;
+  }
+
   interface APIdeleteHeadHunterParams {
     id?: string;
   }
@@ -1366,6 +1377,7 @@
 
   interface APIgetEnterpriseLastUploadEnterPactFileNewParams {
     companyId?: string;
+    parkBountyApplyId?: string;
   }
 
   interface APIgetEnterpriseLastUploadEnterPactFileParams {
@@ -1752,6 +1764,10 @@
 
   interface APIgetTrainingInfoParams {
     id?: string;
+  }
+
+  interface APIgetUserBaseEnterpriseInfoThridpartParams {
+    userId?: string;
   }
 
   interface APIgetUserCanAuthProductListParams {
@@ -2338,6 +2354,10 @@
     /** 缁戝畾閭鍦板潃 */
     bindEmailAddress?: string;
     canLoginUserSign?: CanLoginUserSignEnum;
+    /** 鏄惁鍙互鐧诲綍姹熶綉淇� */
+    canLoginJYB?: boolean;
+    /** 澶栭儴绯荤粺ID */
+    externalSystemCodes?: CanLoginUserSignEnum[];
     bussinessCode?: string;
   }
 
@@ -2755,7 +2775,7 @@
     walletAccountType?: WalletAccountTypeEnum;
   }
 
-  type CanLoginUserSignEnum = 1 | 2 | -1;
+  type CanLoginUserSignEnum = 1 | 2 | 3 | -1;
 
   interface CategoryAllDto {
     /** 绫诲埆Id */
@@ -2853,6 +2873,7 @@
     isPay?: boolean;
     /** 鎵�灞炲洯鍖� */
     belongPark?: string;
+    industrialParkId?: string;
     /** 娉ㄥ唽鏃堕棿 */
     registTime?: string;
     /** 璐︽埛鏄惁閿佷綇锛堟槸鍚︾鐢級 */
@@ -2924,6 +2945,7 @@
     isPay?: boolean;
     /** 鎵�灞炲洯鍖� */
     belongPark?: string;
+    industrialParkId?: string;
     /** 娉ㄥ唽鏃堕棿 */
     registTime?: string;
     /** 璐︽埛鏄惁閿佷綇锛堟槸鍚︾鐢級 */
@@ -3007,7 +3029,14 @@
 
   type ChargeTypeEnum = 1 | 2;
 
+  interface CheckBatchCreateCompanyUserDataInput {
+    list?: CheckBatchCreateCompanyUserInput[];
+    isCheckUserExist?: boolean;
+  }
+
   interface CheckBatchCreateCompanyUserInput {
+    belongPark?: string;
+    industrialParkId?: string;
     enterpriseName?: string;
     /** 缁熶竴绀句細淇$敤浠g爜 */
     societyCreditCode?: string;
@@ -3015,6 +3044,9 @@
     contact?: string;
     /** 鎵嬫満鍙� */
     phoneNumber?: string;
+    bankName?: string;
+    bankBranchName?: string;
+    bankCardNumber?: string;
   }
 
   interface CheckBatchCreateCompanyUserResult {
@@ -3873,6 +3905,8 @@
     /** 缁勭粐鏋舵瀯閮ㄩ棬id */
     departmentOrgId?: string;
     password?: string;
+    /** 浜т笟鍥尯id */
+    industrialParkId?: string;
   }
 
   interface CreateBackClientUserInput {
@@ -4950,6 +4984,7 @@
     payFileUrl?: string;
     /** 娑堣垂绫诲瀷 */
     payRemark?: string;
+    access?: ParkBountyTradeAccessEnum;
   }
 
   interface CreateParkOrHRAdvertiseInput {
@@ -5090,6 +5125,11 @@
     successTime: string;
     /** 澶囨敞 */
     remark?: string;
+  }
+
+  interface CreateTempTokenInput {
+    /** 鐢ㄦ埛Id */
+    userId?: string;
   }
 
   interface CreateUserForAdminInput {
@@ -5440,6 +5480,8 @@
 
   interface CustomerUploadMonthApplyFileInput {
     withMonth?: string;
+    /** 鐢虫姤閲戦 */
+    applyAmount?: number;
     fileTypes?: CustomerUploadMonthApplyFileType[];
   }
 
@@ -5953,6 +5995,25 @@
 
   interface ExtensionPropertyUiTableDto {
     isVisible?: boolean;
+  }
+
+  interface ExternalSystemDto {
+    /** Id */
+    id?: string;
+    /** 绯荤粺鍚� */
+    name?: string;
+    /** ID */
+    code?: string;
+    /** 鍚敤 */
+    enabled?: boolean;
+    /** 澶囨敞 */
+    remark?: string;
+  }
+
+  interface ExternalSystemDtoPageOutput {
+    pageModel?: Pagination;
+    objectData?: any;
+    data?: ExternalSystemDto[];
   }
 
   interface FailOrderInfo {
@@ -6630,6 +6691,7 @@
   interface GetCompanyNameListOutput {
     companyId?: string;
     name?: string;
+    applyAmount?: number;
   }
 
   interface GetCooperationApplyInput {
@@ -6787,6 +6849,7 @@
     id?: string;
     enterpriseId?: string;
     withMonth?: string;
+    parkBountyApplyId?: string;
   }
 
   interface GetCustomerUploadApplyFilesOutput {
@@ -6803,6 +6866,19 @@
     fileTypeName?: string;
     sort?: number;
     listFiles?: CustomerApplyFileDetailDto[];
+  }
+
+  interface GetCustomerUploadApplyFilesResponse {
+    /** 鎵�灞炴湀浠� */
+    withMonth?: string;
+    /** 浼佷笟鍚嶇О */
+    enterpriseName?: string;
+    /** 鐢虫姤閲戦 */
+    applyAmount?: number;
+    /** 鎵�灞炲洯鍖� */
+    parkName?: string;
+    /** 闄勪欢 */
+    items?: GetCustomerUploadApplyFilesOutput[];
   }
 
   interface GetCustomerUploadFileRecordOutput {
@@ -6908,6 +6984,8 @@
     withMonth?: string;
     creationTime?: string;
     uploadStatus?: EnterpriseMonthUploadStatusEnum;
+    /** 鐢虫姤閲戦 */
+    applyAmount?: number;
     applyStatus?: EnterpriseMonthApplyStatusEnum;
   }
 
@@ -7010,6 +7088,12 @@
     checkStatus?: EnterpriseRechargeStatusEnum;
     /** 鎻愪氦鏃ユ湡 */
     creationTime?: string;
+  }
+
+  interface GetExternalSystemInput {
+    pageModel?: Pagination;
+    /** 鍏抽敭瀛� */
+    searchKey?: string;
   }
 
   interface GetFeatureListResultDto {
@@ -8353,6 +8437,7 @@
     tradeAmount?: number;
     /** 鍑鸿处鍑瘉 */
     payFileUrl?: string;
+    access?: ParkBountyTradeAccessEnum;
     /** 娑堣垂绫诲瀷 */
     payRemark?: string;
     /** 鍑鸿处鏃堕棿 */
@@ -10155,6 +10240,8 @@
     suportPlatRecharge?: boolean;
     /** 鏄惁鏀寔鐢ㄦ埛鎻愮幇 */
     suportWithDraw?: boolean;
+    /** 鏃犻渶鏀垮姟绔鏍� */
+    notNeedGovernmentAudit?: boolean;
     /** 娉ㄥ唽鍦板潃 */
     registerAddress?: string;
     /** 澶囨敞 */
@@ -10212,6 +10299,8 @@
     suportPlatRecharge?: boolean;
     /** 鏄惁鏀寔鐢ㄦ埛鎻愮幇 */
     suportWithDraw?: boolean;
+    /** 鏃犻渶鏀垮姟绔鏍� */
+    notNeedGovernmentAudit?: boolean;
   }
 
   interface IndustrialParkListOutputPageOutput {
@@ -14772,6 +14861,8 @@
     parkTypeName?: string;
     /** 鐢宠濂栧姳閲戞湀浠� */
     applyMonth?: string;
+    /** 宸蹭繚瀛樹紒涓氱即绋庢槑缁嗐�佽惀鏀舵眹鎬� */
+    saveGatherFile?: boolean;
     /** 濂栧姳閲戞眹鎬婚噾棰� */
     applySumAmount?: number;
     /** 姹囨�绘槑缁嗚〃 */
@@ -14899,6 +14990,8 @@
     parkBountyApplyId?: string;
     parkBountyApplyDetailId?: string;
     enterpriseId?: string;
+    /** 鐢虫姤閲戦 */
+    applyAmount?: number;
     userName?: string;
     /** 浼佷笟鍚嶇О */
     enterpriseName?: string;
@@ -15040,6 +15133,8 @@
     transferToAmount?: number;
     parkBountyApplyId?: string;
   }
+
+  type ParkBountyTradeAccessEnum = 1;
 
   type ParkCustomersCountTypeEnum = 10 | 50 | 100;
 
@@ -16381,6 +16476,10 @@
     /** 缁戝畾閭鍦板潃 */
     bindEmailAddress?: string;
     canLoginUserSign?: CanLoginUserSignEnum;
+    /** 鏄惁鍙互鐧诲綍姹熶綉淇� */
+    canLoginJYB?: boolean;
+    /** 澶栭儴绯荤粺ID */
+    externalSystemCodes?: CanLoginUserSignEnum[];
     bussinessCode?: string;
     /** 鏄惁鍙互鍚庡彴浠e彂浜鸿祫鍏徃 */
     canPublishParkOrHR?: boolean;
@@ -18535,7 +18634,7 @@
 
   interface SetCanLoginUserSignInput {
     id?: string;
-    canLoginUserSign?: CanLoginUserSignEnum;
+    externalSystemCodes?: CanLoginUserSignEnum[];
     bussinessCode?: string;
   }
 
@@ -18726,12 +18825,18 @@
     enterpriseName?: string;
     societyCreditCode?: string;
     licenseUrl?: string;
+    /** 鐢ㄦ埛Id */
+    userId?: string;
+    disabledSyncUser?: boolean;
   }
 
   interface SetUserEnterpriseBankInfoInput {
     bankName?: string;
     bankBranchName?: string;
     bankCardNumber?: string;
+    /** 鐢ㄦ埛Id */
+    userId?: string;
+    disabledSyncUser?: boolean;
   }
 
   interface SetUserIndustrialParkInput {
@@ -19233,6 +19338,24 @@
     sequence?: number;
   }
 
+  interface SyncParkBountyApplyTradeOutput {
+    bountyAmount?: number;
+    rechargeAmount?: number;
+    details?: SyncParkBountyTradeDetailOutput[];
+  }
+
+  interface SyncParkBountyTradeDetailOutput {
+    enterpriseId?: string;
+    amount?: number;
+    payType?: EnterpriseBountyPayTypeEnum;
+    financeType?: FinanceTypeEnum;
+    access?: ParkBountyTradeAccessEnum;
+    payRemark?: string;
+    remianAmount?: number;
+    payFileUrl?: string;
+    creationTime?: string;
+  }
+
   interface SysOrgDetailOutput {
     id?: string;
     /** 缁勭粐鍚嶇О */
@@ -19723,7 +19846,7 @@
     /** 浼佷笟鍚嶇О */
     enterpriseName: string;
     /** 钀ヤ笟鎵х収鏂囦欢鍦板潃 */
-    licenseUrl: string;
+    licenseUrl?: string;
     /** 缁熶竴绀句細淇$敤浠g爜 */
     societyCreditCode: string;
     certificationMode?: UserCertificationModeEnum;
@@ -19741,6 +19864,8 @@
     payAmount?: number;
     /** 鎵�灞炲洯鍖� */
     belongPark?: string;
+    /** 浜т笟鍥尯id */
+    industrialParkId?: string;
     /** 閾惰鍗″彿 */
     bankCardNumber?: string;
     certificationChannel?: UserCertificationChannelEnum;
@@ -19816,6 +19941,12 @@
     /** 鏂囦欢鍒楄〃 */
     addEnterpriseMaterialFileList?: AddEnterpriseMaterialFileInput[];
     id?: string;
+  }
+
+  interface UpdateEnterpriseMonthApplyFileApplyAmountInput {
+    id?: string;
+    /** 鐢虫姤閲戦 */
+    applyAmount?: number;
   }
 
   interface UpdateFeatureDto {
@@ -19938,6 +20069,8 @@
     suportWithDraw?: boolean;
     /** 鏂囦欢 */
     industrialParkApplyFileFile?: IndustrialParkApplyFileFile[];
+    /** 鏃犻渶鏀垮姟绔鏍� */
+    notNeedGovernmentAudit?: boolean;
     id?: string;
   }
 
@@ -20422,7 +20555,7 @@
     /** 浼佷笟鍚嶇О */
     enterpriseName: string;
     /** 钀ヤ笟鎵х収鏂囦欢鍦板潃 */
-    licenseUrl: string;
+    licenseUrl?: string;
     /** 缁熶竴绀句細淇$敤浠g爜 */
     societyCreditCode: string;
     certificationMode?: UserCertificationModeEnum;
@@ -20440,6 +20573,8 @@
     payAmount?: number;
     /** 鎵�灞炲洯鍖� */
     belongPark?: string;
+    /** 浜т笟鍥尯id */
+    industrialParkId?: string;
     /** 閾惰鍗″彿 */
     bankCardNumber?: string;
     certificationChannel?: UserCertificationChannelEnum;
@@ -21503,6 +21638,10 @@
     rewardEnable?: boolean;
     suportWithDraw?: boolean;
     isHasBountyApply?: boolean;
+    /** 鏄惁鍙互鐧诲綍鐢靛瓙绛� */
+    canLoginUserSign?: boolean;
+    /** 鏄惁鍙互鐧诲綍姹熶綉淇� */
+    canLoginJYB?: boolean;
   }
 
   interface UserMessageInfo {
diff --git a/src/views/MaterialReview/MaterialReviewAudit.vue b/src/views/MaterialReview/MaterialReviewAudit.vue
index d7986e5..fcb7d90 100644
--- a/src/views/MaterialReview/MaterialReviewAudit.vue
+++ b/src/views/MaterialReview/MaterialReviewAudit.vue
@@ -252,7 +252,7 @@
 
 async function openDialog(row: API.ParkBountyApplyDetailInfo) {
   try {
-    const applyFiles = await queryClient.ensureQueryData({
+    const applyFilesRes = await queryClient.ensureQueryData({
       queryKey: [
         'enterpriseApplyFileServices/getCustomerUploadApplyFiles',
         row.enterpriseId,
@@ -281,7 +281,7 @@
     handleAdd({
       list: EnterpriseApplyFileUtils.initParkCollectFileListApplyFiles(
         applyUploadFiles,
-        applyFiles,
+        applyFilesRes.items,
         lastUploadEnterPactFile
       ),
       companyId: row.enterpriseId,
diff --git a/src/views/MaterialReview/MaterialReviewDetail.vue b/src/views/MaterialReview/MaterialReviewDetail.vue
index 78258d5..9e02b32 100644
--- a/src/views/MaterialReview/MaterialReviewDetail.vue
+++ b/src/views/MaterialReview/MaterialReviewDetail.vue
@@ -188,7 +188,7 @@
 const queryClient = useQueryClient();
 async function openDialog(row: API.ParkBountyApplyDetailInfo) {
   try {
-    const applyFiles = await queryClient.ensureQueryData({
+    const applyFilesRes = await queryClient.ensureQueryData({
       queryKey: [
         'enterpriseApplyFileServices/getCustomerUploadApplyFiles',
         row.enterpriseId,
@@ -217,7 +217,7 @@
     handleAdd({
       list: EnterpriseApplyFileUtils.initParkCollectFileListApplyFiles(
         applyUploadFiles,
-        applyFiles,
+        applyFilesRes.items,
         lastUploadEnterPactFile
       ),
       companyId: row.enterpriseId,
diff --git a/src/views/Reward/RewardDeclareDetail.vue b/src/views/Reward/RewardDeclareDetail.vue
index f975347..3d07b5a 100644
--- a/src/views/Reward/RewardDeclareDetail.vue
+++ b/src/views/Reward/RewardDeclareDetail.vue
@@ -164,7 +164,7 @@
 const queryClient = useQueryClient();
 async function openDialog(row: API.ParkBountyApplyDetailInfo) {
   try {
-    const applyFiles = await queryClient.ensureQueryData({
+    const applyFilesRes = await queryClient.ensureQueryData({
       queryKey: [
         'enterpriseApplyFileServices/getCustomerUploadApplyFiles',
         row.enterpriseId,
@@ -193,7 +193,7 @@
     handleAdd({
       list: EnterpriseApplyFileUtils.initParkCollectFileListApplyFiles(
         applyUploadFiles,
-        applyFiles,
+        applyFilesRes.items,
         lastUploadEnterPactFile
       ),
       companyId: row.enterpriseId,

--
Gitblit v1.9.1