瀏覽代碼

添加TaCustomer实体属性

魏熙美 6 年之前
父節點
當前提交
2228a78fbc
共有 1 個檔案被更改,包括 77 行新增0 行删除
  1. 77
    0
      src/main/java/com.huiju.welcome/model/TaCustomer.java

+ 77
- 0
src/main/java/com.huiju.welcome/model/TaCustomer.java 查看文件

@@ -69,4 +69,81 @@ public class TaCustomer implements Serializable {
69 69
 
70 70
     @TableField(exist = false)
71 71
     Boolean apointment;
72
+
73
+
74
+    /**
75
+     * 是否购买过银城的房子
76
+     */
77
+    private Integer haveHouse;
78
+
79
+    /**
80
+     * 老业主小区
81
+     */
82
+    private String oldCommunity;
83
+
84
+    /**
85
+     * 现居住区域
86
+     */
87
+    private Integer nowArea;
88
+
89
+    /**
90
+     * 现居住小区
91
+     */
92
+    private String nowCommunity;
93
+
94
+    /**
95
+     * 现居住城市(城市不在居住区域有效)
96
+     */
97
+    private String nowCity;
98
+
99
+    /**
100
+     * 家庭成员收入工作城市
101
+     */
102
+    private Integer familyWork;
103
+
104
+    /**
105
+     * 请填写具体城市名称
106
+     */
107
+    private String cityName;
108
+
109
+    /**
110
+     * 家庭收入成员工作单位
111
+     */
112
+    private String familyCompany;
113
+
114
+    /**
115
+     * 家庭收入成员工作行业
116
+     */
117
+    private String familyIndustry;
118
+
119
+    /**
120
+     * 家庭收入成员工作职务
121
+     */
122
+    private String familyDuty;
123
+
124
+    /**
125
+     * 家庭本市置业次数
126
+     */
127
+    private Integer housePurchasing;
128
+
129
+    /**
130
+     * 家庭本市名下房产数量
131
+     */
132
+    private Integer houseProperty;
133
+
134
+    /**
135
+     * 现居住面积
136
+     */
137
+    private Integer houseLivingArea;
138
+
139
+    /**
140
+     * 现居住户型
141
+     */
142
+    private Integer houseType;
143
+
144
+    /**
145
+     * 目前家庭结构
146
+     */
147
+    private Integer familyStructure;
148
+
72 149
 }