| | |
| | | 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; |
| | |
| | | @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; |
| | | } |