yanghui
2022-11-17 b30e1a48f2bc5f65a0efd2e69e090fed2d7a627c
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;
 
}