MrShi
12 小时以前 777bcb6c5660c0ed14d85207377b62b779d81dde
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;
}