lidongdong
2023-12-08 bd03dc55328e988b3e6bd2165593b6e49c58e4c2
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;
 
}