package com.ruoyi.anpin; import com.ruoyi.common.annotation.Excel; import java.math.BigDecimal; import java.util.List; /** * @Author ZhaoQian La * @Date 2021/6/4 11:50 * @Version 1.0 */ /** * 利润总账 */ public class ProfitExcel { private static final long serialVersionUID = 1L; //年 @Excel(name = "年") private String annual; //月 @Excel(name = "月") private String abbreviated; //客户中文名 @Excel(name = "项目名称") private String projectName; //收入 @Excel(name = "收入") private BigDecimal market; //支出 @Excel(name = "支出") private BigDecimal purchase; //利润 @Excel(name = "利润") private BigDecimal profit; //利润率 @Excel(name = "利润率") private BigDecimal profitMargin; public BigDecimal getProfitMargin() { return profitMargin; } public void setProfitMargin(BigDecimal profitMargin) { this.profitMargin = profitMargin; } public String getAnnual() { return annual; } public void setAnnual(String annual) { this.annual = annual; } public String getAbbreviated() { return abbreviated; } public void setAbbreviated(String abbreviated) { this.abbreviated = abbreviated; } public String getProjectName() { return projectName; } public void setProjectName(String projectName) { this.projectName = projectName; } public BigDecimal getMarket() { return market; } public void setMarket(BigDecimal market) { this.market = market; } public BigDecimal getPurchase() { return purchase; } public void setPurchase(BigDecimal purchase) { this.purchase = purchase; } public BigDecimal getProfit() { return profit; } public void setProfit(BigDecimal profit) { this.profit = profit; } @Override public String toString() { return "ProfitExcel{" + "years='" + annual + '\'' + ", months='" + abbreviated + '\'' + ", projectName='" + projectName + '\'' + ", market=" + market + ", purchase=" + purchase + ", profit=" + profit + ", profitMargin=" + profitMargin + '}'; } }