101captain
2022-03-14 85cf42314fc04a637f1a44e78c1e476a445bf0f3
springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/partybuilding/excel/ComDataStatisticsMemberExcelVo.java
New file
@@ -0,0 +1,77 @@
package com.panzhihua.common.model.vos.partybuilding.excel;
import com.alibaba.excel.annotation.ExcelIgnore;
import com.alibaba.excel.annotation.ExcelProperty;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
 * @author lyq
 * 分页查询党建数据统计返回参数
 */
@Data
@ApiModel("分页查询党建数据统计返回参数")
public class ComDataStatisticsMemberExcelVo {
    @ExcelProperty(value = "序号", index = 0)
    private Long id;
    @ExcelProperty(value = "党员姓名", index = 1)
    private String name;
    @ExcelProperty(value = "党龄", index = 2)
    private Integer partyAge;
    @ExcelProperty(value = "联系电话", index = 3)
    private String phone;
    @ExcelProperty(value = "身份证号", index = 4)
    private String idCard;
    @ExcelProperty(value = "职能", index = 5)
    private String function;
    @ExcelProperty(value = "特长", index = 6)
    private String specialtyName;
    @ExcelProperty(value = "双报到单位", index = 7)
    private String checkUnitName;
    @ExcelProperty(value = "总参与活动次数", index = 8)
    private Integer activityCount;
    @ExcelProperty(value = "总参与活动时长(小时)", index = 9)
    private Integer activityDuration;
    @ExcelProperty(value = "参与党员活动次数", index = 10)
    private Integer partyActivityCount;
    @ExcelProperty(value = "参与党员活动时长(小时)", index = 11)
    private Integer partyActivityDuration;
    @ExcelProperty(value = "参与党员活动积分", index = 12)
    private Integer partyActivityIntegral;
    @ExcelProperty(value = "参与志愿者活动次数", index = 13)
    private Integer volunteerActivityCount;
    @ExcelProperty(value = "参与志愿者活动时长(小时)", index = 14)
    private Integer volunteerActivityDuration;
    @ExcelProperty(value = "参与志愿者活动积分", index = 15)
    private Integer volunteerActivityIntegral;
    @ExcelProperty(value = "完成微心愿数量", index = 16)
    private Integer wishCount;
    @ExcelProperty(value = "完成随手拍数量", index = 17)
    private Integer easyCount;
    @ExcelIgnore
    private Long communityId;
    @ExcelIgnore
    private Long userId;
}