rk
4 小时以前 c74a6f59490cfb9a0ee37f70427739b74e7fbd58
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.doumee.dao.vo;
 
import com.doumee.core.annotation.excel.ExcelColumn;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
 
@Data
@ApiModel("行李类型占比项")
public class LuggageTypeItem implements Serializable {
 
    @ExcelColumn(name = "类型名称", width = 20, index = 1)
    @ApiModelProperty(value = "类型名称")
    private String luggageName;
 
    @ExcelColumn(name = "订单数", width = 12, index = 2)
    @ApiModelProperty(value = "订单数")
    private Long orderCount;
 
    @ExcelColumn(name = "行李数", width = 12, index = 3)
    @ApiModelProperty(value = "行李数")
    private Long luggageCount;
}