hhhyyq
2021-03-17 45e45ff70ba7cd7889f76cbf489d6bf012a4f84d
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
package com.panzhihua.common.model.dtos.community;
 
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
 
/**
 * @description: 房屋信息导出
 * @author: Null
 * @date: 2021/3/16 09:36
 */
@Data
public class ExcelHouseDTO {
 
    @ExcelProperty("楼栋")
    private String build;
 
    @ExcelProperty("单元")
    private String unit;
 
    @ExcelProperty("楼层")
    private String floor;
 
    @ExcelProperty("房间")
    private String room;
 
    @ExcelProperty("面积")
    private String square;
 
    @ExcelProperty("房屋状态")
    private String state;
 
    @ExcelProperty("居住人")
    private String username;
 
    @ExcelProperty("联系电话")
    private String phone;
 
}