zhongrj
2023-11-17 bc670e87f764e250a54b1687dedbe0df135b411f
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
package org.springblade.modules.house.excel;
 
import com.alibaba.excel.annotation.ExcelProperty;
import com.alibaba.excel.annotation.write.style.ColumnWidth;
import com.alibaba.excel.annotation.write.style.ContentRowHeight;
import com.alibaba.excel.annotation.write.style.HeadRowHeight;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * HouseExcel
 *
 * @author Chill
 */
@Data
@ColumnWidth(25)
@HeadRowHeight(20)
@ContentRowHeight(18)
public class HouseExcel implements Serializable {
 
    private static final long serialVersionUID = 2L;
 
    /** 门牌地址编码 */
    @ExcelProperty( "门牌地址编码")
    private String houseCode;
 
    /** 小区编码 */
    @ExcelProperty( "小区编码")
    private String districtCode;
 
    /** 小区 */
    @ExcelProperty( "小区")
    private String districtName;
 
    /** 房屋名称 */
    @ExcelProperty( "房屋名称")
    private String houseName;
 
    /** 绑定手机 */
    @ExcelProperty( "绑定手机")
    private String phone;
 
    /** 面积 */
    @ExcelProperty( "面积")
    private BigDecimal area;
 
    /** 物业单价 */
    @ExcelProperty( "物业单价")
    private BigDecimal propertyPrice;
 
    /** 服务到期 */
    @ExcelProperty( "服务到期")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date serviceDue;
 
    /** 楼层 */
    @ExcelProperty( "楼层")
    private Integer floor;
 
    /** 幢 */
    @ExcelProperty( "幢")
    private String building;
 
    /** 单元 */
    @ExcelProperty( "单元")
    private String unit;
 
    /** 室 */
    @ExcelProperty( "室")
    private String room;
 
    /** 幢编号 */
    @ExcelProperty( "幢编号")
    private Integer buildingNo;
 
    /** 图片URLS */
    @ExcelProperty( "图片URLS")
    private String imageUrls;
 
    /** 创建人 */
    @ExcelProperty( "创建人")
    private String createUser;
 
    /** 创建时间 */
    @ExcelProperty( "创建时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date createTime;
 
    /** 更新人 */
    @ExcelProperty( "更新人")
    private String updateUser;
 
    /** 更新时间 */
    @ExcelProperty( "更新时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date updateTime;
 
    /** 备注 */
    @ExcelProperty( "备注")
    private String remark;
 
 
}