admin
2020-05-20 98b1a0affd69bbe63223c21fdd2c404e8bedfccb
fanli/src/main/java/com/yeshi/fanli/vo/msg/ClientTextStyleVO.java
@@ -5,6 +5,11 @@
import com.google.gson.annotations.Expose;
public class ClientTextStyleVO implements Serializable{
   public final static String COLOR_TITLE = "#888888";
   public final static String COLOR_CONTENT = "#000000";
   public final static String COLOR_HIGHLIGHT_CONTENT = "#E5005C";
   /**
    * 
    */
@@ -17,6 +22,9 @@
   private String bottomColor;
   @Expose
   private String img;
   @Expose
   private String fontSize = "1"; // 字体倍数
   public ClientTextStyleVO(String content, String color) {
      this.content = content;
@@ -74,4 +82,12 @@
   public void setBottomColor(String bottomColor) {
      this.bottomColor = bottomColor;
   }
   public String getFontSize() {
      return fontSize;
   }
   public void setFontSize(String fontSize) {
      this.fontSize = fontSize;
   }
}