| | |
| | | import type { PageParam, PageResult } from '@vben/request'; |
| | | |
| | | import type { SystemStorageApi } from '#/api/system/storage'; |
| | | import { requestClient } from '#/api/request'; |
| | | |
| | | export namespace SrmSupplierCertificateApi { |
| | |
| | | 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[]; |
| | | } |
| | | } |
| | | |