import type { BasicFetchResult, BasicPageParams, FilterJson } from '@/api'; // eslint-disable-next-line @typescript-eslint/no-namespace namespace DownloadInvoiceService { /** 获取申请下载Invoice文件列表接口参数 */ export type GetDownloadInvoiceListParams = BasicPageParams & Pick; /** 获取申请下载Invoice文件列表接口返回值 */ export type GetDownloadInvoiceListResult = BasicFetchResult; export interface DownloadInvoiceItem { id: number; clientId: number; clientShortName: string; billNo: string; invoiceNo: string; invoiceStatusName: string; currencyId: number; currencyName: string; totalAmount: number; isFinanceDownloadInvoice: number; isFinanceDownloadInvoiceName: string; } } export type { DownloadInvoiceService };