yj
2020-03-04 58ee87fd64efdb75d16e396c3d952d3522c3a747
fanli/src/main/java/com/yeshi/fanli/entity/dynamic/CommentInfo.java
@@ -37,13 +37,17 @@
   private String id;
   // 类型
   @Expose
   private CommentInfoEnum type;
   private CommentInfoEnum typeEnum;
   // 类型
   @Expose
   private String type;
   // 内容
   @Expose
   private String content;
   // 标签
   @Expose
   private List<ClientTextStyleVO> tagList = new ArrayList<>() ;
   private List<ClientTextStyleVO> tagList = new ArrayList<ClientTextStyleVO>() ;
   // 标签说明
   @Expose
   private String tagDesc;
@@ -56,19 +60,24 @@
   private String coupon;
   // 券来源
   private String couponSource;
   // 结束时间
//   @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
//   private Date endTime;
   
   private String tags;
   private String tagsColour;
   private String endTime;
   public CommentInfoEnum getTypeEnum() {
      return typeEnum;
   }
   public CommentInfoEnum getType() {
   public void setTypeEnum(CommentInfoEnum typeEnum) {
      this.typeEnum = typeEnum;
   }
   public String getType() {
      return type;
   }
   public void setType(CommentInfoEnum type) {
   public void setType(String type) {
      this.type = type;
   }