| | |
| | | package com.linghu.model.vo; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelIgnore; |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | |
| | | @Data |
| | | @ApiModel("关键词统计") |
| | | public class KeywordStaticsVO { |
| | | @ApiModelProperty("发布平台id") |
| | | @ExcelIgnore |
| | | private String platform_id; |
| | | @ApiModelProperty("发布平台") |
| | | @ExcelProperty("发布平台") |
| | | private String platformName; |
| | | private String platform_name; |
| | | @ApiModelProperty("重复次数") |
| | | @ExcelProperty("重复次数") |
| | | private Integer totalRepetitions; |
| | | private Integer total_repetitions; |
| | | @ApiModelProperty("平台分布占比") |
| | | @ExcelProperty("平台分布占比") |
| | | private BigDecimal repetitionRatio; |
| | | private BigDecimal repetition_ratio; |
| | | } |