hjl
2024-06-18 aaa3384609da2dfb7d6788a2a2b3d92a2bff0813
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.ruoyi.admin.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * @author HJL
 * @version 1.0
 * @since 2024-05-30 16:30
 */
@Data
@ApiModel(value = "OrderQuery对象", description = "回收订单统计查询类")
public class OrderQueryVO {
 
    @ApiModelProperty("对应总金额")
    private BigDecimal totalPrice;
 
    @ApiModelProperty("时间日期")
    private String dateTime;
 
    @ApiModelProperty("订单数量")
    private Integer number;
 
}