yys
maven
昨天 9d71b9bf1ec9e8597da70582f9eb7df580f3d58b
src/main/java/com/ruoyi/purchase/dto/InvoicePurchaseReportDto.java
@@ -1,5 +1,6 @@
package com.ruoyi.purchase.dto;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import lombok.Data;
/**
@@ -9,24 +10,32 @@
public class InvoicePurchaseReportDto {
    //销售合同号
    @Excel(name = "销售合同号")
    private String customerContractNo;
//    客户名称
    @Excel(name = "客户名称")
    private String customerName;
//    项目名称
    @Excel(name = "项目名称")
    private String projectName;
//    合同金额
    @Excel(name = "合同金额")
    private String contractAmount;
//    采购金额
    @Excel(name = "采购金额")
    private String purchaseAmount;
    private String saleTaxExclusiveTotalPrice;
    private String taxExclusiveTotalPrice;
//    利润
    @Excel(name = "利润")
    private String balance;
    //    利润率
    @Excel(name = "利润率")
    private String balanceRatio;
    //    增值税
    @Excel(name = "增值税")
    private String balanceAmount;
}