定时任务修正
This commit is contained in:
@@ -25,14 +25,14 @@ public class ResourceVO implements Serializable{
|
||||
private List<TbTag> tags;
|
||||
|
||||
/**
|
||||
* 是否推荐(用于首页展示)
|
||||
* 是否为TOP推荐
|
||||
*/
|
||||
private Boolean isRecommended;
|
||||
private Boolean isTopRecommend;
|
||||
|
||||
/**
|
||||
* 推荐类型(1-热门资源,2-思政资源)
|
||||
* 是否为思政推荐
|
||||
*/
|
||||
private Integer recommendType;
|
||||
private Boolean isIdeologicalRecommend;
|
||||
|
||||
public TbResource getResource() {
|
||||
return resource;
|
||||
@@ -50,19 +50,19 @@ public class ResourceVO implements Serializable{
|
||||
this.tags = tags;
|
||||
}
|
||||
|
||||
public Boolean getIsRecommended() {
|
||||
return isRecommended;
|
||||
public Boolean getIsTopRecommend() {
|
||||
return isTopRecommend;
|
||||
}
|
||||
|
||||
public void setIsRecommended(Boolean isRecommended) {
|
||||
this.isRecommended = isRecommended;
|
||||
public void setIsTopRecommend(Boolean isTopRecommend) {
|
||||
this.isTopRecommend = isTopRecommend;
|
||||
}
|
||||
|
||||
public Integer getRecommendType() {
|
||||
return recommendType;
|
||||
public Boolean getIsIdeologicalRecommend() {
|
||||
return isIdeologicalRecommend;
|
||||
}
|
||||
|
||||
public void setRecommendType(Integer recommendType) {
|
||||
this.recommendType = recommendType;
|
||||
public void setIsIdeologicalRecommend(Boolean isIdeologicalRecommend) {
|
||||
this.isIdeologicalRecommend = isIdeologicalRecommend;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user