|
@@ -44,6 +44,9 @@ public class CustomerInfo implements Serializable {
|
|
|
// 修改时间 ,
|
|
|
private Date customerUpdateTime;
|
|
|
|
|
|
+ // 问题标题
|
|
|
+ private String customerQuestionTitle;
|
|
|
+
|
|
|
public Integer getCustomerId() {
|
|
|
return customerId;
|
|
|
}
|
|
@@ -179,4 +182,12 @@ public class CustomerInfo implements Serializable {
|
|
|
public void setCustomerUpdateTime(Date customerUpdateTime) {
|
|
|
this.customerUpdateTime = customerUpdateTime;
|
|
|
}
|
|
|
+
|
|
|
+ public String getCustomerQuestionTitle() {
|
|
|
+ return customerQuestionTitle;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCustomerQuestionTitle(String customerQuestionTitle) {
|
|
|
+ this.customerQuestionTitle = customerQuestionTitle;
|
|
|
+ }
|
|
|
}
|