课程、文章审核
This commit is contained in:
@@ -114,6 +114,19 @@ public class TbDataCollectionItem extends BaseDTO {
|
||||
* @description 单条新闻执行消息(记录错误信息或成功提示)
|
||||
*/
|
||||
private String executeMessage;
|
||||
|
||||
/**
|
||||
* @description 是否已审核
|
||||
*/
|
||||
private Boolean isAudited;
|
||||
|
||||
public Boolean getIsAudited() {
|
||||
return isAudited;
|
||||
}
|
||||
|
||||
public void setIsAudited(Boolean isAudited) {
|
||||
this.isAudited = isAudited;
|
||||
}
|
||||
|
||||
public String getTaskId() {
|
||||
return taskId;
|
||||
|
||||
@@ -84,6 +84,11 @@ public class TbResource extends BaseDTO {
|
||||
*/
|
||||
private Boolean isRecommend;
|
||||
|
||||
/**
|
||||
* @description 是否已审核
|
||||
*/
|
||||
private Boolean isAudited;
|
||||
|
||||
/**
|
||||
* @description 是否轮播
|
||||
*/
|
||||
@@ -176,6 +181,16 @@ public class TbResource extends BaseDTO {
|
||||
this.sourceUrl = sourceUrl;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public Boolean getIsAudited() {
|
||||
return isAudited;
|
||||
}
|
||||
|
||||
public void setIsAudited(Boolean isAudited) {
|
||||
this.isAudited = isAudited;
|
||||
}
|
||||
|
||||
public Integer getViewCount() {
|
||||
return viewCount;
|
||||
}
|
||||
|
||||
@@ -85,7 +85,18 @@ public class TbCourseNode extends BaseDTO {
|
||||
* @description 是否删除
|
||||
*/
|
||||
private Boolean deleted;
|
||||
/**
|
||||
* @description 是否已审核
|
||||
*/
|
||||
private Boolean isAudited;
|
||||
|
||||
public Boolean getIsAudited() {
|
||||
return isAudited;
|
||||
}
|
||||
|
||||
public void setIsAudited(Boolean isAudited) {
|
||||
this.isAudited = isAudited;
|
||||
}
|
||||
public String getNodeID() {
|
||||
return nodeID;
|
||||
}
|
||||
|
||||
@@ -91,6 +91,11 @@ public class DataCollectionItemVO implements Serializable {
|
||||
*/
|
||||
private Integer status;
|
||||
|
||||
/**
|
||||
* 是否已审核
|
||||
*/
|
||||
private Boolean isAudited;
|
||||
|
||||
/**
|
||||
* 转换后的资源ID
|
||||
*/
|
||||
@@ -194,6 +199,14 @@ public class DataCollectionItemVO implements Serializable {
|
||||
|
||||
// ==================== Getter/Setter ====================
|
||||
|
||||
public Boolean getIsAudited() {
|
||||
return isAudited;
|
||||
}
|
||||
|
||||
public void setIsAudited(Boolean isAudited) {
|
||||
this.isAudited = isAudited;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user