doum
10 小时以前 59b1f0e9967902aa10f5e017d5a0bdfd1b60c9ea
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;
}