1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- 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 fCorpName;
- //收入
- @Excel(name = "收入")
- private BigDecimal market;
- //支出
- @Excel(name = "支出")
- private BigDecimal purchase;
- //利润
- @Excel(name = "利润")
- private BigDecimal profit;
- 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 getfCorpName() {
- return fCorpName;
- }
- public void setfCorpName(String fCorpName) {
- this.fCorpName = fCorpName;
- }
- 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 + '\'' +
- ", fCorpName='" + fCorpName + '\'' +
- ", market=" + market +
- ", purchase=" + purchase +
- ", profit=" + profit +
- '}';
- }
- }
|