mirror of
https://github.com/201206030/novel-plus.git
synced 2026-03-10 16:27:28 +08:00
84 lines
2.3 KiB
Java
84 lines
2.3 KiB
Java
package com.java2nb.novel.entity;
|
|
|
|
import java.util.Date;
|
|
import javax.annotation.Generated;
|
|
|
|
public class CrawlSingleTask {
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
private Long id;
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
private Integer sourceId;
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
private String sourceBookId;
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
private Byte taskStatus;
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
private Byte excCount;
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
private Date createTime;
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public Long getId() {
|
|
return id;
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public void setId(Long id) {
|
|
this.id = id;
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public Integer getSourceId() {
|
|
return sourceId;
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public void setSourceId(Integer sourceId) {
|
|
this.sourceId = sourceId;
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public String getSourceBookId() {
|
|
return sourceBookId;
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public void setSourceBookId(String sourceBookId) {
|
|
this.sourceBookId = sourceBookId == null ? null : sourceBookId.trim();
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public Byte getTaskStatus() {
|
|
return taskStatus;
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public void setTaskStatus(Byte taskStatus) {
|
|
this.taskStatus = taskStatus;
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public Byte getExcCount() {
|
|
return excCount;
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public void setExcCount(Byte excCount) {
|
|
this.excCount = excCount;
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public Date getCreateTime() {
|
|
return createTime;
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public void setCreateTime(Date createTime) {
|
|
this.createTime = createTime;
|
|
}
|
|
} |