浏览代码

添加问题标题字段

liujiankang 7 年之前
父节点
当前提交
f06c866163
共有 1 个文件被更改,包括 11 次插入0 次删除
  1. 11 0
      watero-rst-core/src/main/java/com.iamberry.rst.core/cm/CustomerInfo.java

+ 11 - 0
watero-rst-core/src/main/java/com.iamberry.rst.core/cm/CustomerInfo.java

@@ -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;
+    }
 }