rk
16 小时以前 3e210fac9492b90e21ca9bf76c1d9a8fda1f4388
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;
 
import java.io.Serializable;
 
@Data
@ApiModel("行李类型占比项")
public class LuggageTypeItem implements Serializable {
 
    @ApiModelProperty(value = "类型名称")
    private String luggageName;
 
    @ApiModelProperty(value = "订单数")
    private Long orderCount;
 
    @ApiModelProperty(value = "行李数")
    private Long luggageCount;
}