Commit 1aa240ab by 王祖波

Merge branch 'feature-content777' into 'master'

Feature content777

See merge request !2068
parents bfc54699 640acec9
...@@ -68,6 +68,11 @@ public class ContentMaterialInfoVO implements Serializable { ...@@ -68,6 +68,11 @@ public class ContentMaterialInfoVO implements Serializable {
private Integer downloadFlag; private Integer downloadFlag;
/** /**
* 分享素材链接是否开启 1是0否
*/
private Integer shareLinkFlag;
/**
* 发布时间 * 发布时间
*/ */
private Date publishTime; private Date publishTime;
...@@ -264,6 +269,14 @@ public class ContentMaterialInfoVO implements Serializable { ...@@ -264,6 +269,14 @@ public class ContentMaterialInfoVO implements Serializable {
this.downloadFlag = downloadFlag; this.downloadFlag = downloadFlag;
} }
public Integer getShareLinkFlag() {
return shareLinkFlag;
}
public void setShareLinkFlag(Integer shareLinkFlag) {
this.shareLinkFlag = shareLinkFlag;
}
public Date getPublishTime() { public Date getPublishTime() {
return publishTime; return publishTime;
} }
......
...@@ -70,6 +70,11 @@ public class ContentSettingVO implements Serializable { ...@@ -70,6 +70,11 @@ public class ContentSettingVO implements Serializable {
*/ */
private String weimoPicRatio; private String weimoPicRatio;
/**
* 好办展示样式 版本1 版本2 ...
*/
private Integer showStyle;
public Long getContentSettingId() { public Long getContentSettingId() {
return contentSettingId; return contentSettingId;
} }
...@@ -157,4 +162,12 @@ public class ContentSettingVO implements Serializable { ...@@ -157,4 +162,12 @@ public class ContentSettingVO implements Serializable {
public void setWeimoPicRatio(String weimoPicRatio) { public void setWeimoPicRatio(String weimoPicRatio) {
this.weimoPicRatio = weimoPicRatio; this.weimoPicRatio = weimoPicRatio;
} }
public Integer getShowStyle() {
return showStyle;
}
public void setShowStyle(Integer showStyle) {
this.showStyle = showStyle;
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment