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