| | |
| | | @TableField("id") |
| | | private Integer id; |
| | | |
| | | /** 订单号 */ |
| | | @Excel(name = "订单号") |
| | | @TableField("order_no") |
| | | private String orderNo; |
| | | |
| | | /** 发票抬头id */ |
| | | @Excel(name = "发票抬头id") |
| | |
| | | @TableField("invoice_operating_license_address") |
| | | private String invoiceOperatingLicenseAddress; |
| | | |
| | | @Excel(name = "销售方地址") |
| | | @TableField("invoice_seller_address") |
| | | private String invoiceSellerAddress; |
| | | |
| | | |
| | | /** 注册固定电话 */ |
| | | @Excel(name = "注册固定电话") |
| | | |
| | | @TableField("invoice_operating_license_phone") |
| | | private String invoiceOperatingLicensePhone; |
| | | |
| | | @Excel(name = "销售方固定电话") |
| | | @TableField("invoice_seller_phone") |
| | | private String invoiceSellerPhone; |
| | | |
| | | |
| | | /** 邮箱 */ |
| | |
| | | |
| | | @TableField(exist = false) |
| | | private List<InvoiceDetail> invoiceDetailList; |
| | | |
| | | @TableField(exist = false) |
| | | private List<InvoiceBillDetail> invoiceBillDetails; |
| | | |
| | | |
| | | } |