mitao
2025-05-20 179c4d64313c9b7572778da4aaaf6c6584fe457d
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
package com.panzhihua.common.model.vos.shop;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @auther lyq
 * @create 2021-04-14 15:02:14
 * @describe 订单统计结果
 */
@Data
@ApiModel("订单统计结果")
public class OrderStatisticsVO {
 
    @ApiModelProperty(value = "待付款订单数")
    private Integer paymentNum = 0;
 
    @ApiModelProperty(value = "待发货订单数")
    private Integer deliverNum = 0;
 
    @ApiModelProperty(value = "待收货订单数")
    private Integer receivingNum = 0;
 
}