| | |
| | | @ApiModelProperty(value = "服务订单数") |
| | | private Integer serviceTotal; |
| | | |
| | | @ApiModelProperty(value = "单品数量") |
| | | private Integer itemTotal; |
| | | |
| | | @ApiModelProperty(value = "总订单金额") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal orderMoney; |
| | |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal serviceMoney; |
| | | |
| | | @ApiModelProperty(value = "单品金额") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal itemMoney; |
| | | |
| | | @ApiModelProperty(value = "订单分布日期") |
| | | private String[] orderTotalKey; |
| | | |