| | |
| | | package com.panzhihua.common.model.vos.community.questnaire; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * 统计汇总返回对象 |
| | |
| | | @Data |
| | | public class QuestnaireStatisticsSummaryExcelAdminVO { |
| | | |
| | | @ExcelProperty(value = "问卷调查题目" ,index = 0) |
| | | @ExcelProperty(value = "问卷调查题目", index = 0) |
| | | private String subject; |
| | | @ExcelProperty(value = "问卷调查选项" ,index = 1) |
| | | @ExcelProperty(value = "问卷调查选项", index = 1) |
| | | private String option; |
| | | @ExcelProperty(value = "参与人数百分比" ,index = 2) |
| | | @ExcelProperty(value = "参与人数百分比", index = 2) |
| | | private BigDecimal tag; |
| | | @ExcelProperty(value = "选择该选项人数" ,index = 3) |
| | | @ExcelProperty(value = "选择该选项人数", index = 3) |
| | | private Integer count; |
| | | @ExcelProperty(value = "该题目参与人数" ,index = 4) |
| | | @ExcelProperty(value = "该题目参与人数", index = 4) |
| | | private Integer allCount; |
| | | |
| | | } |