|
|
@@ -46,6 +46,12 @@ public class PageStyle implements Serializable {
|
|
|
@Column(name = "logo_url")
|
|
|
private String logoUrl;
|
|
|
|
|
|
+ /**
|
|
|
+ * logo图片
|
|
|
+ */
|
|
|
+ @Column(name = "logo_url_mobile")
|
|
|
+ private String logoUrlMobile;
|
|
|
+
|
|
|
/**
|
|
|
* 背景图片
|
|
|
*/
|
|
|
@@ -82,6 +88,12 @@ public class PageStyle implements Serializable {
|
|
|
@Column(name = "title")
|
|
|
private String title;
|
|
|
|
|
|
+ /**
|
|
|
+ * 主标题
|
|
|
+ */
|
|
|
+ @Column(name = "title_mobile", length = 10)
|
|
|
+ private String titleMobile;
|
|
|
+
|
|
|
/**
|
|
|
* 副标题
|
|
|
*/
|
|
|
@@ -166,6 +178,14 @@ public class PageStyle implements Serializable {
|
|
|
this.logoUrl = logoUrl;
|
|
|
}
|
|
|
|
|
|
+ public String getLogoUrlMobile() {
|
|
|
+ return logoUrlMobile;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLogoUrlMobile(String logoUrlMobile) {
|
|
|
+ this.logoUrlMobile = logoUrlMobile;
|
|
|
+ }
|
|
|
+
|
|
|
public String getBgUrl() {
|
|
|
return bgUrl;
|
|
|
}
|
|
|
@@ -206,6 +226,14 @@ public class PageStyle implements Serializable {
|
|
|
this.title = title;
|
|
|
}
|
|
|
|
|
|
+ public String getTitleMobile() {
|
|
|
+ return titleMobile;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTitleMobile(String titleMobile) {
|
|
|
+ this.titleMobile = titleMobile;
|
|
|
+ }
|
|
|
+
|
|
|
public String getSubtitle() {
|
|
|
return subtitle;
|
|
|
}
|