| | |
| | | package com.linghu.model.vo; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.linghu.listener.BigDecimalPercentConverter; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | private Integer total_repetitions; |
| | | |
| | | @ApiModelProperty("全平台分布占比") |
| | | @ExcelProperty("全平台分布占比") |
| | | @ExcelProperty(value = "全平台分布占比",converter = BigDecimalPercentConverter.class) |
| | | private BigDecimal all_platform_ratio; |
| | | |
| | | @ApiModelProperty("同类平台分布占比") |
| | | @ExcelProperty("同类平台分布占比") |
| | | @ExcelProperty(value = "同类平台分布占比",converter = BigDecimalPercentConverter.class) |
| | | private BigDecimal same_type_ratio; |
| | | |
| | | } |