rk
2 天以前 79aebca90280ae4d4b25ed6ba6267128cdb61d3a
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;
}