Pu Zhibing
2025-02-27 f0a9a41697a8568e8b3bd3436c450e68b3298916
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;
 
}