package com.tejia.lijin.app.entity;
|
|
import com.google.gson.annotations.Expose;
|
|
import java.io.Serializable;
|
|
public class TextColorSet implements Serializable {
|
@Expose
|
String content;
|
@Expose
|
String fontColor;
|
@Expose
|
String bottomColor;
|
@Expose
|
String color;//2.0.2新增
|
@Expose
|
String fontSize;//2.0.2新增
|
|
public String getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
|
public String getFontColor() {
|
return fontColor;
|
}
|
|
public void setFontColor(String fontColor) {
|
this.fontColor = fontColor;
|
}
|
|
public String getBottomColor() {
|
return bottomColor;
|
}
|
|
public void setBottomColor(String bottomColor) {
|
this.bottomColor = bottomColor;
|
}
|
|
public String getColor() {
|
return color;
|
}
|
|
public void setColor(String color) {
|
this.color = color;
|
}
|
|
public String getFontSize() {
|
return fontSize;
|
}
|
|
public void setFontSize(String fontSize) {
|
this.fontSize = fontSize;
|
}
|
}
|