From c8a6236013ec15d00ddcab1587bbd4f090611cdf Mon Sep 17 00:00:00 2001
From: hsy <1029150275@qq.com>
Date: 星期三, 26 八月 2026 13:56:49 +0800
Subject: [PATCH] fix: 修复员工业绩图表 null 数据展示与甘特图日期格式解析错误

---
 src/api/srm/supplierCertificate/index.ts |    9 ++++++---
 1 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/src/api/srm/supplierCertificate/index.ts b/src/api/srm/supplierCertificate/index.ts
index 3b775cf..2504662 100644
--- a/src/api/srm/supplierCertificate/index.ts
+++ b/src/api/srm/supplierCertificate/index.ts
@@ -1,5 +1,6 @@
 import type { PageParam, PageResult } from '@vben/request';
 
+import type { SystemStorageApi } from '#/api/system/storage';
 import { requestClient } from '#/api/request';
 
 export namespace SrmSupplierCertificateApi {
@@ -11,11 +12,13 @@
     certificateNo?: string;
     certificateType: number;
     issuingAuthority?: string;
-    issueDate: string;
-    expireDate: string;
-    expireStatus?: number;
+    validStartDate: string;
+    validEndDate: string;
+    status?: number;
     remark?: string;
     createTime?: string;
+    blobIds?: number[];
+    attachmentList?: SystemStorageApi.StorageBlob[];
   }
 }
 

--
Gitblit v1.9.3