rk
昨天 996b2f16afaa271ce8aad6abf6858aa5db503eb3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.doumee.dao.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 司机进行中订单数量
 * @author rk
 * @date 2026/04/25
 */
@Data
@ApiModel("司机进行中订单数量")
public class DriverActiveOrderCountVO {
 
    @ApiModelProperty(value = "已抢单数量", example = "0")
    private Integer grabbedCount;
 
    @ApiModelProperty(value = "派送中数量", example = "0")
    private Integer deliveringCount;
}