123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- 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 +
- '}';
- }
- }
|