zhongrj
2023-11-21 61c001e3651c81084e3a8496b55d4d6500bbca31
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
package org.springblade.modules.place.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 lombok.Data;
 
import java.io.Serializable;
 
/**
 * HouseExcel
 *
 * @author Chill
 */
@Data
@ColumnWidth(25)
@HeadRowHeight(20)
@ContentRowHeight(18)
public class PlaceAndRelExcel implements Serializable {
 
    private static final long serialVersionUID = 2L;
 
    /** 序号 */
    @ExcelProperty( "序号")
    private String idx;
 
    /** 街道名称 */
    @ExcelProperty( "街道名称")
    private String streetName;
 
    /** 社区名称 */
    @ExcelProperty( "社区名称")
    private String communityName;
 
    /** 所属网格 */
    @ExcelProperty( "网格名称")
    private String gridName;
 
    /** 写字楼名称 */
    @ExcelProperty( "写字楼名称")
    private String buildingName;
 
    /** 门牌号 */
    @ExcelProperty( "门牌号")
    private String doorplateNum;
 
    /** 楼层 */
    @ExcelProperty( "楼层")
    private String floor;
 
    /** 经营者 */
    @ColumnWidth(15)
    @ExcelProperty( "经营者")
    private String name;
 
    /** 联系电话 */
    @ColumnWidth(15)
    @ExcelProperty( "联系电话")
    private String phoneNumber;
 
    /** 企业(店铺)名称 */
    @ColumnWidth(25)
    @ExcelProperty( "企业(店铺)名称")
    private String placeName;
 
    /** 经营地址 */
    @ExcelProperty( "经营地址")
    private String address;
 
    /** 标签分类代码 */
    @ExcelProperty( "标签分类代码")
    private String labelCode;
 
    /** 备注 */
    @ExcelProperty( "备注")
    private String remark;
 
 
}