feat: support article demo videos and category counts
This commit is contained in:
@@ -43,6 +43,14 @@ public class AppBlogArticle extends BaseEntity
|
||||
/** List-card thumbnail URL (not persisted). */
|
||||
private String showImgThumb;
|
||||
|
||||
/** 视频号演示视频feedId */
|
||||
@Excel(name = "视频号演示视频ID")
|
||||
private String videoFeedId;
|
||||
|
||||
/** 第二个视频号演示视频feedId */
|
||||
@Excel(name = "视频号演示视频ID 2")
|
||||
private String videoFeedId2;
|
||||
|
||||
/** 关联已有资源(关联app_resource id) */
|
||||
@Excel(name = "关联已有资源", readConverterExp = "关=联app_resource,i=d")
|
||||
private Long appResourceId;
|
||||
@@ -171,6 +179,24 @@ public class AppBlogArticle extends BaseEntity
|
||||
{
|
||||
return showImgThumb;
|
||||
}
|
||||
public void setVideoFeedId(String videoFeedId)
|
||||
{
|
||||
this.videoFeedId = videoFeedId;
|
||||
}
|
||||
|
||||
public String getVideoFeedId()
|
||||
{
|
||||
return videoFeedId;
|
||||
}
|
||||
public void setVideoFeedId2(String videoFeedId2)
|
||||
{
|
||||
this.videoFeedId2 = videoFeedId2;
|
||||
}
|
||||
|
||||
public String getVideoFeedId2()
|
||||
{
|
||||
return videoFeedId2;
|
||||
}
|
||||
public void setAppResourceId(Long appResourceId)
|
||||
{
|
||||
this.appResourceId = appResourceId;
|
||||
@@ -260,6 +286,8 @@ public class AppBlogArticle extends BaseEntity
|
||||
.append("contentInfo", getContentInfo())
|
||||
.append("articleType", getArticleType())
|
||||
.append("showImg", getShowImg())
|
||||
.append("videoFeedId", getVideoFeedId())
|
||||
.append("videoFeedId2", getVideoFeedId2())
|
||||
.append("appResourceId", getAppResourceId())
|
||||
.append("lookNumber", getLookNumber())
|
||||
.append("loveNumber", getLoveNumber())
|
||||
|
||||
Reference in New Issue
Block a user