调试修改爬虫
This commit is contained in:
@@ -105,6 +105,16 @@ public class TbDataCollectionItem extends BaseDTO {
|
||||
*/
|
||||
private String processor;
|
||||
|
||||
/**
|
||||
* @description 单条新闻执行状态(0:失败 1:成功)
|
||||
*/
|
||||
private Integer executeStatus;
|
||||
|
||||
/**
|
||||
* @description 单条新闻执行消息(记录错误信息或成功提示)
|
||||
*/
|
||||
private String executeMessage;
|
||||
|
||||
public String getTaskId() {
|
||||
return taskId;
|
||||
}
|
||||
@@ -248,5 +258,21 @@ public class TbDataCollectionItem extends BaseDTO {
|
||||
public void setProcessor(String processor) {
|
||||
this.processor = processor;
|
||||
}
|
||||
|
||||
public Integer getExecuteStatus() {
|
||||
return executeStatus;
|
||||
}
|
||||
|
||||
public void setExecuteStatus(Integer executeStatus) {
|
||||
this.executeStatus = executeStatus;
|
||||
}
|
||||
|
||||
public String getExecuteMessage() {
|
||||
return executeMessage;
|
||||
}
|
||||
|
||||
public void setExecuteMessage(String executeMessage) {
|
||||
this.executeMessage = executeMessage;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -111,6 +111,16 @@ public class DataCollectionItemVO implements Serializable {
|
||||
*/
|
||||
private String processor;
|
||||
|
||||
/**
|
||||
* 单条新闻执行状态(0:失败 1:成功)
|
||||
*/
|
||||
private Integer itemExecuteStatus;
|
||||
|
||||
/**
|
||||
* 单条新闻执行消息
|
||||
*/
|
||||
private String itemExecuteMessage;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
@@ -336,6 +346,22 @@ public class DataCollectionItemVO implements Serializable {
|
||||
this.processor = processor;
|
||||
}
|
||||
|
||||
public Integer getItemExecuteStatus() {
|
||||
return itemExecuteStatus;
|
||||
}
|
||||
|
||||
public void setItemExecuteStatus(Integer itemExecuteStatus) {
|
||||
this.itemExecuteStatus = itemExecuteStatus;
|
||||
}
|
||||
|
||||
public String getItemExecuteMessage() {
|
||||
return itemExecuteMessage;
|
||||
}
|
||||
|
||||
public void setItemExecuteMessage(String itemExecuteMessage) {
|
||||
this.itemExecuteMessage = itemExecuteMessage;
|
||||
}
|
||||
|
||||
public Date getCreateTime() {
|
||||
return createTime;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user