| | |
| | | package com.ruoyi.order.domain.vo; |
| | | |
| | | import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
| | | import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; |
| | | import com.ruoyi.system.api.domain.vo.MgtMapBigTotalVo; |
| | | import com.ruoyi.system.api.domain.vo.MgtMapIntTotalVo; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | |
| | | private Integer serviceTotal; |
| | | |
| | | @ApiModelProperty(value = "总订单金额") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal orderMoney; |
| | | |
| | | @ApiModelProperty(value = "线上订单金额") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal onlineMoney; |
| | | |
| | | @ApiModelProperty(value = "线下订单金额") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal offlineMoney; |
| | | |
| | | @ApiModelProperty(value = "活动订单金额") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal activityMoney; |
| | | |
| | | @ApiModelProperty(value = "周期订单金额") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal cycleMoney; |
| | | |
| | | @ApiModelProperty(value = "体验订单金额") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal experienceMoney; |
| | | |
| | | @ApiModelProperty(value = "服务订单金额") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal serviceMoney; |
| | | |
| | | @ApiModelProperty(value = "订单数量key") |
| | |
| | | private Integer[] orderTotalValue; |
| | | |
| | | @ApiModelProperty(value = "订单金额value") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private BigDecimal[] orderMoneyValue; |
| | | |
| | | @ApiModelProperty(value = "商品类型数量") |