|
@@ -0,0 +1,73 @@
|
|
1
|
+package com.yunzhi.marketing.excel.searchHouse;
|
|
2
|
+
|
|
3
|
+import com.alibaba.excel.annotation.ExcelProperty;
|
|
4
|
+import com.alibaba.excel.annotation.write.style.ColumnWidth;
|
|
5
|
+import lombok.Data;
|
|
6
|
+
|
|
7
|
+import java.time.LocalDateTime;
|
|
8
|
+
|
|
9
|
+@Data
|
|
10
|
+public class AddedValue {
|
|
11
|
+
|
|
12
|
+ @ColumnWidth(15)
|
|
13
|
+ @ExcelProperty(value = "姓名", index = 0)
|
|
14
|
+ private String nickname;
|
|
15
|
+
|
|
16
|
+ @ColumnWidth(15)
|
|
17
|
+ @ExcelProperty(value = "电话", index = 1)
|
|
18
|
+ private String phone;
|
|
19
|
+
|
|
20
|
+ @ColumnWidth(15)
|
|
21
|
+ @ExcelProperty(value = "性别", index = 2)
|
|
22
|
+ private String gender;
|
|
23
|
+
|
|
24
|
+ @ColumnWidth(15)
|
|
25
|
+ @ExcelProperty(value = "意向区域", index = 3)
|
|
26
|
+ private String intentArea;
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+ @ColumnWidth(15)
|
|
30
|
+ @ExcelProperty(value = "客户预算", index = 4)
|
|
31
|
+ private String maxPrice;
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+ @ColumnWidth(15)
|
|
35
|
+ @ExcelProperty(value = "房屋现状", index = 5)
|
|
36
|
+ private String houseStatus;
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+ @ColumnWidth(15)
|
|
40
|
+ @ExcelProperty(value = "房屋面积", index = 6)
|
|
41
|
+ private String area;
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+ @ColumnWidth(15)
|
|
45
|
+ @ExcelProperty(value = "家装模式", index = 7)
|
|
46
|
+ private String type;
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+ @ColumnWidth(15)
|
|
50
|
+ @ExcelProperty(value = "家装侧重点", index = 8)
|
|
51
|
+ private String important;
|
|
52
|
+
|
|
53
|
+ @ColumnWidth(15)
|
|
54
|
+ @ExcelProperty(value = "家装风格", index = 9)
|
|
55
|
+ private String style;
|
|
56
|
+
|
|
57
|
+ @ColumnWidth(15)
|
|
58
|
+ @ExcelProperty(value = "关键诉求", index = 10)
|
|
59
|
+ private String mostImportant;
|
|
60
|
+
|
|
61
|
+ @ColumnWidth(15)
|
|
62
|
+ @ExcelProperty(value = "特殊功能区", index = 11)
|
|
63
|
+ private String special;
|
|
64
|
+
|
|
65
|
+ @ColumnWidth(15)
|
|
66
|
+ @ExcelProperty(value = "是否智能家居", index = 12)
|
|
67
|
+ private String samrt;
|
|
68
|
+
|
|
69
|
+ @ColumnWidth(15)
|
|
70
|
+ @ExcelProperty(value = "提交时间", index = 13)
|
|
71
|
+ private LocalDateTime createdTime;
|
|
72
|
+
|
|
73
|
+}
|