yujian
2019-12-07 8c93d2e3b22ac543f8f94c2cf0eb982258fb708b
fanli/src/main/java/com/yeshi/fanli/entity/customerservice/CustomerServiceCommonQuestion.java
@@ -32,14 +32,21 @@
   @Expose
   @Column(name = "cscq_content_type")
   private String contentType;
   // 是否启用
   @Column(name = "cscq_state")
   private boolean state;
   @Column(name = "cscq_weight")
   private Integer weight;
   @Column(name = "cscq_createtime")
   private Date createTime;
   @Column(name = "cscq_updatetime")
   private Date updateTime;
   //显示选择项
   // 显示选择项
   @Expose
   private boolean showChoice;
@@ -106,4 +113,13 @@
   public void setUpdateTime(Date updateTime) {
      this.updateTime = updateTime;
   }
   public boolean isState() {
      return state;
   }
   public void setState(boolean state) {
      this.state = state;
   }
}