| | |
| | | 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; |
| | | |
| | | |