| | |
| | | @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("status") |
| | | private Integer status; |
| | | |
| | | |
| | | /** 发票号码 */ |
| | | @Excel(name = "发票号码") |
| | | |
| | | @TableField("invoice_no") |
| | | private String invoiceNo; |
| | | |
| | | |
| | | /** 开票时间 */ |
| | | @Excel(name = "开票时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @TableField("invoice_date") |
| | | private Date invoiceDate; |
| | | |
| | | |
| | | /** 发票金额 */ |
| | | @Excel(name = "发票金额") |
| | | |
| | | @TableField("invoice_amount") |
| | | private java.math.BigDecimal invoiceAmount; |
| | | |
| | | |
| | | /** 关联账单已开票金额 */ |
| | | @Excel(name = "关联账单已开票金额") |
| | | |
| | | @TableField("related_bill_billed_amount") |
| | | private java.math.BigDecimal relatedBillBilledAmount; |
| | | |
| | | |
| | | /** 创建人 */ |
| | |
| | | |
| | | @TableField(exist = false) |
| | | private List<InvoiceDetail> invoiceDetailList; |
| | | } |
| | | } |