package com.ruoyi.order.vo;
|
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
@Data
|
public class OrderStatisticsDetail {
|
private String date;
|
/**
|
* 服务订单数量
|
*/
|
private Integer serviceTotal;
|
|
/**
|
* 单品订单数量
|
*/
|
private Integer singleTotal;
|
|
/**
|
* 订单总数量
|
*/
|
private Integer total;
|
|
/**
|
* 订单总金额
|
*/
|
private BigDecimal totalMoney;
|
|
/**
|
* 服务订单金额
|
*/
|
private BigDecimal serviceTotalMoney;
|
|
/**
|
* 单品订单金额
|
*/
|
private BigDecimal singleTotalMoney;
|
}
|