/** * 发票的开具类型 */ declare enum InvoiceIssueType { individual = 1, corporation = 2 } declare enum CorporationInvoiceType { general = 1, proprietary = 2, organization = 3 } declare class Invoice { id: string; invoiceIssueType: InvoiceIssueType; title: string; corporationInvoiceType: CorporationInvoiceType; taxRegisterNumber: string; bankName: string; bankAccount: string; registerAddress: string; fixedTelephone: string; constructor(); static _getOpenType(openType: any): string; static _getType(type: any): string; } export { Invoice, InvoiceIssueType, CorporationInvoiceType }; //# sourceMappingURL=invoice-state-model.d.ts.map