CoinStaticsTarget.java 958 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. package com.szwl.model.excel;
  2. import cn.afterturn.easypoi.excel.annotation.Excel;
  3. import java.math.BigDecimal;
  4. import java.math.BigInteger;
  5. public class CoinStaticsTarget {
  6. @Excel(name = "时间", width = 20.0D)
  7. private String sTime;
  8. /**
  9. * 销售个数
  10. */
  11. @Excel(name = "销售个数")
  12. private BigInteger totalNumber;
  13. /**
  14. * 销售总金额
  15. */
  16. @Excel(name = "销售总金额")
  17. private BigDecimal totalPrice;
  18. public String getsTime() {
  19. return sTime;
  20. }
  21. public void setsTime(String sTime) {
  22. this.sTime = sTime;
  23. }
  24. public BigInteger getTotalNumber() {
  25. return totalNumber;
  26. }
  27. public void setTotalNumber(BigInteger totalNumber) {
  28. this.totalNumber = totalNumber;
  29. }
  30. public BigDecimal getTotalPrice() {
  31. return totalPrice;
  32. }
  33. public void setTotalPrice(BigDecimal totalPrice) {
  34. this.totalPrice = totalPrice;
  35. }
  36. }