mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.panzhihua.common.model.vos.grid.admin.excel;
 
import java.io.Serializable;
 
import com.alibaba.excel.annotation.ExcelProperty;
import com.panzhihua.common.model.helper.encrypt.EncryptDecryptClass;
 
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
/**
 * 小区列表Excel导出
 */
@Data
@ApiModel("小区列表Excel导出")
@EncryptDecryptClass
public class ComMngVillageExportExcelVO implements Serializable {
 
    @ExcelProperty(value = "小区名字", index = 0)
    private String userName;
 
    @ExcelProperty(value = "街路巷", index = 1)
    private String alley;
 
    @ExcelProperty(value = "门牌号", index = 2)
    private String doorNum;
 
    @ExcelProperty(value = "小区地址", index = 3)
    private String address;
 
    @ExcelProperty(value = "小区楼栋数", index = 4)
    private Integer buildSum;
 
    @ExcelProperty(value = "小区户数", index = 5)
    private Integer houseNum;
 
    @ExcelProperty(value = "小区居民人数", index = 6)
    private Integer userSum;
 
}