导出
This commit is contained in:
@@ -45,49 +45,49 @@ public class ShopProdStatistic implements Serializable {
|
|||||||
*/
|
*/
|
||||||
@Column(ignore = true)
|
@Column(ignore = true)
|
||||||
@ExcelProperty("商品名称")
|
@ExcelProperty("商品名称")
|
||||||
@ColumnWidth(80)
|
@ColumnWidth(30)
|
||||||
private String productName;
|
private String productName;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 销售数量
|
* 销售数量
|
||||||
*/
|
*/
|
||||||
@ExcelProperty("销售数量")
|
@ExcelProperty("销量")
|
||||||
@ColumnWidth(30)
|
@ColumnWidth(5)
|
||||||
private BigDecimal saleCount;
|
private BigDecimal saleCount;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 销售金额
|
* 销售金额
|
||||||
*/
|
*/
|
||||||
@ExcelProperty("销售金额")
|
@ExcelProperty("销售金额")
|
||||||
@ColumnWidth(50)
|
@ColumnWidth(7)
|
||||||
private BigDecimal saleAmount;
|
private BigDecimal saleAmount;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 退单量
|
* 退单量
|
||||||
*/
|
*/
|
||||||
@ExcelProperty("退单量")
|
@ExcelProperty("退单量")
|
||||||
@ColumnWidth(30)
|
@ColumnWidth(5)
|
||||||
private BigDecimal refundCount;
|
private BigDecimal refundCount;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 退单金额
|
* 退单金额
|
||||||
*/
|
*/
|
||||||
@ExcelProperty("退单金额")
|
@ExcelProperty("退款金额")
|
||||||
@ColumnWidth(50)
|
@ColumnWidth(7)
|
||||||
private BigDecimal refundAmount;
|
private BigDecimal refundAmount;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 实际销售数量(过滤掉退单后的数量)
|
* 实际销售数量(过滤掉退单后的数量)
|
||||||
*/
|
*/
|
||||||
@ExcelProperty("实际销售数量")
|
@ExcelProperty("实际销量")
|
||||||
@ColumnWidth(30)
|
@ColumnWidth(5)
|
||||||
private BigDecimal validSaleCount;
|
private BigDecimal validSaleCount;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 实际销售金额(过滤掉退单后的金额)
|
* 实际销售金额(过滤掉退单后的金额)
|
||||||
*/
|
*/
|
||||||
@ExcelProperty("实际销售金额")
|
@ExcelProperty("实际销售额")
|
||||||
@ColumnWidth(50)
|
@ColumnWidth(7)
|
||||||
private BigDecimal validSaleAmount;
|
private BigDecimal validSaleAmount;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user