package com.panzhihua.common.model.vos.community.fms;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
import io.swagger.annotations.ApiModel;
|
import lombok.Data;
|
|
/**
|
* @title: ComFmsTeamMemberExportExcleVO
|
* @projectName: 成都呐喊信息技术有限公司-智慧社区项目
|
* @description: 五微服务-团队成员导出信息
|
* @author: hans
|
* @date: 2022/02/16 10:34
|
*/
|
@Data
|
@ApiModel("五微服务-团队成员导出信息")
|
public class ComFmsTeamMemberExportExcelVO {
|
|
@ExcelProperty(value = "团队类型", index = 0)
|
private String teamType;
|
|
@ExcelProperty(value = "团队名称", index = 1)
|
private String teamName;
|
|
@ExcelProperty(value = "团队成员", index = 2)
|
private String teamMember;
|
|
@ExcelProperty(value = "身份证号", index = 3)
|
private String idCard;
|
|
@ExcelProperty(value = "性别", index = 4)
|
private String gender;
|
|
@ExcelProperty(value = "年龄", index = 5)
|
private String age;
|
|
@ExcelProperty(value = "联系电话", index = 6)
|
private String phone;
|
}
|