package com.ruoyi.sales.excel;
|
|
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
/**
|
* 开票登记列表导出对象
|
*/
|
@Data
|
public class InvoiceRegistrationExportVo {
|
|
@Excel(name = "销售合同号")
|
private String salesContractNo;
|
|
@Excel(name = "客户合同号")
|
private String customerContractNo;
|
|
@Excel(name = "客户名称")
|
private String customerName;
|
|
@Excel(name = "合同金额")
|
private BigDecimal contractAmount;
|
|
@Excel(name = "已开票金额")
|
private BigDecimal invoiceTotal;
|
|
@Excel(name = "未开票金额")
|
private BigDecimal noInvoiceAmountTotal;
|
}
|