fengjin
2022-11-16 8d493a008ce655963f0363b116d5b55e02eff3d6
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;
 
}