12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- package com.szwl.model.excel;
- import cn.afterturn.easypoi.excel.annotation.Excel;
- import java.math.BigDecimal;
- import java.math.BigInteger;
- public class CoinStaticsTarget {
- @Excel(name = "时间", width = 20.0D)
- private String sTime;
- /**
- * 销售个数
- */
- @Excel(name = "销售个数")
- private BigInteger totalNumber;
- /**
- * 销售总金额
- */
- @Excel(name = "销售总金额")
- private BigDecimal totalPrice;
- public String getsTime() {
- return sTime;
- }
- public void setsTime(String sTime) {
- this.sTime = sTime;
- }
- public BigInteger getTotalNumber() {
- return totalNumber;
- }
- public void setTotalNumber(BigInteger totalNumber) {
- this.totalNumber = totalNumber;
- }
- public BigDecimal getTotalPrice() {
- return totalPrice;
- }
- public void setTotalPrice(BigDecimal totalPrice) {
- this.totalPrice = totalPrice;
- }
- }
|