From 94a697c32d02a7d5488df2fe4f4e7589c6c2fbc0 Mon Sep 17 00:00:00 2001 From: wupengfei <834520024@qq.com> Date: 星期三, 04 六月 2025 17:09:41 +0800 Subject: [PATCH] fix: bug --- src/services/api/typings.d.ts | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 47 insertions(+), 0 deletions(-) diff --git a/src/services/api/typings.d.ts b/src/services/api/typings.d.ts index b0138eb..e4e92c9 100644 --- a/src/services/api/typings.d.ts +++ b/src/services/api/typings.d.ts @@ -595,6 +595,12 @@ payFileUrl?: string; /** 娑堣垂绫诲瀷 */ payRemark?: string; + access?: ParkBountyTradeAccessEnum; + } + + interface CreateTempTokenInput { + /** 鐢ㄦ埛Id */ + userId?: string; } interface CurrentCultureDto { @@ -755,6 +761,45 @@ interface GetFeatureListResultDto { groups?: FeatureGroupDto[]; + } + + interface GetFileRecordInput { + pageModel?: Pagination; + /** 鎿嶄綔璧峰鏃ユ湡 */ + creationTimeBegin?: string; + /** 鎿嶄綔缁撴潫鏃ユ湡 */ + creationTimeEnd?: string; + } + + interface GetFileRecordOutput { + /** Id */ + id?: string; + /** 鐢ㄦ埛Id */ + enterpriseId?: string; + /** 鏂囦欢鍚嶇О */ + name?: string; + /** 浜嬩欢 */ + event?: string; + /** 鎿嶄綔 */ + operate?: string; + /** 鐘舵�� */ + status?: string; + /** 婧愭枃浠跺湴鍧� */ + fileUrl?: string; + /** 瀵煎嚭鏁版嵁/閿欒鏁版嵁 JSON鏍煎紡 */ + jsonData?: string; + /** 鎿嶄綔鏃堕棿 */ + creationTime?: string; + /** 鎬绘暟鎹噺 */ + count?: number; + /** 鎴愬姛鏁版嵁閲� */ + successCount?: number; + } + + interface GetFileRecordOutputPageOutput { + pageModel?: Pagination; + objectData?: any; + data?: GetFileRecordOutput[]; } interface GetInsuranceBatchBillForCheckInput { @@ -1920,6 +1965,8 @@ userName?: string; /** 鐢ㄦ埛鎵嬫満鍙� */ phoneNumber?: string; + /** 瀵嗙爜 */ + password?: string; /** 浼佷笟鍚嶇О */ enterpriseName?: string; /** 钀ヤ笟鎵х収鏂囦欢鍦板潃 */ -- Gitblit v1.9.1