1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.panzhihua.common.model.vos.community;
|
| import com.alibaba.excel.annotation.ExcelProperty;
| import lombok.Data;
|
| @Data
| public class ComMngPopulationSpecialExcelVo {
|
| @ExcelProperty(value = "所在小区", index = 0)
| private String areaName;
|
| @ExcelProperty(value = "姓名", index = 1)
| private String name;
|
| @ExcelProperty(value = "人员标签", index = 2)
| private String tags;
|
| @ExcelProperty(value = "联系方式", index = 3)
| private String phone;
|
| }
|
|