admin
2020-05-19 744594ef1a2f530fc3e86ea9dc48b62247f79420
fanli/src/main/java/com/yeshi/fanli/entity/bus/help/HelpCenter.java
@@ -6,6 +6,8 @@
import org.springframework.format.annotation.DateTimeFormat;
import org.yeshi.utils.mybatis.Column;
import com.google.gson.annotations.Expose;
/**
 * 帮助中心标题
 * 
@@ -21,14 +23,19 @@
    */
   private static final long serialVersionUID = 1L;
   @Expose
   @Column(name = "h_id")
   private Long id;
   @Expose
   @Column(name = "h_title")
   private String title;// 名称
   @Column(name = "h_weight")
   private Integer weight; // 权重
   @Column(name = "h_state")
   private Integer state;
   
   @Column(name = "h_cid")
   private HelpClass helpClass; // 分类
@@ -114,4 +121,12 @@
      this.endTime = endTime;
   }
   public Integer getState() {
      return state;
   }
   public void setState(Integer state) {
      this.state = state;
   }
}