package com.landtool.lanbase.modules.log.entity;
|
|
import java.io.Serializable;
|
import java.sql.Timestamp;
|
import java.util.Date;
|
|
public class LogKettleStepcount implements Serializable {
|
|
private Integer idbatch;
|
private String channelid;
|
private java.sql.Timestamp logdate;
|
private String transname;
|
private String stepname;
|
private Integer stepcopy;
|
private Integer linesread;
|
private Integer lineswritten;
|
private Integer linesupdated;
|
private Integer linesinput;
|
private Integer linesoutput;
|
private Integer linesrejected;
|
private Integer errors;
|
private String logfield;
|
private Double totalTime;
|
private java.sql.Timestamp startDate;
|
private java.sql.Timestamp endDate;
|
private String updateTimes;
|
//查询列表
|
private String logdatebegin;
|
private String logdatefinish;
|
|
public Integer getIdbatch() {
|
return idbatch;
|
}
|
|
public void setIdbatch(Integer idbatch) {
|
this.idbatch = idbatch;
|
}
|
|
public String getChannelid() {
|
return channelid;
|
}
|
|
public void setChannelid(String channelid) {
|
this.channelid = channelid;
|
}
|
|
public Timestamp getLogdate() {
|
return logdate;
|
}
|
|
public void setLogdate(Timestamp logdate) {
|
this.logdate = logdate;
|
}
|
|
public String getTransname() {
|
return transname;
|
}
|
|
public void setTransname(String transname) {
|
this.transname = transname;
|
}
|
|
public String getStepname() {
|
return stepname;
|
}
|
|
public void setStepname(String stepname) {
|
this.stepname = stepname;
|
}
|
|
public Integer getStepcopy() {
|
return stepcopy;
|
}
|
|
public void setStepcopy(Integer stepcopy) {
|
this.stepcopy = stepcopy;
|
}
|
|
public Integer getLinesread() {
|
return linesread;
|
}
|
|
public void setLinesread(Integer linesread) {
|
this.linesread = linesread;
|
}
|
|
public Integer getLineswritten() {
|
return lineswritten;
|
}
|
|
public void setLineswritten(Integer lineswritten) {
|
this.lineswritten = lineswritten;
|
}
|
|
public Integer getLinesupdated() {
|
return linesupdated;
|
}
|
|
public void setLinesupdated(Integer linesupdated) {
|
this.linesupdated = linesupdated;
|
}
|
|
public Integer getLinesinput() {
|
return linesinput;
|
}
|
|
public void setLinesinput(Integer linesinput) {
|
this.linesinput = linesinput;
|
}
|
|
public Integer getLinesoutput() {
|
return linesoutput;
|
}
|
|
public void setLinesoutput(Integer linesoutput) {
|
this.linesoutput = linesoutput;
|
}
|
|
public Integer getLinesrejected() {
|
return linesrejected;
|
}
|
|
public void setLinesrejected(Integer linesrejected) {
|
this.linesrejected = linesrejected;
|
}
|
|
public Integer getErrors() {
|
return errors;
|
}
|
|
public void setErrors(Integer errors) {
|
this.errors = errors;
|
}
|
|
public String getLogfield() {
|
return logfield;
|
}
|
|
public void setLogfield(String logfield) {
|
this.logfield = logfield;
|
}
|
|
public String getLogdatebegin() {
|
return logdatebegin;
|
}
|
|
public void setLogdatebegin(String logdatebegin) {
|
this.logdatebegin = logdatebegin;
|
}
|
|
public String getLogdatefinish() {
|
return logdatefinish;
|
}
|
|
public void setLogdatefinish(String logdatefinish) {
|
this.logdatefinish = logdatefinish;
|
}
|
|
public Timestamp getStartDate() {
|
return startDate;
|
}
|
|
public void setStartDate(Timestamp startDate) {
|
this.startDate = startDate;
|
}
|
|
public Timestamp getEndDate() {
|
return endDate;
|
}
|
|
public void setEndDate(Timestamp endDate) {
|
this.endDate = endDate;
|
}
|
|
public String getUpdateTimes() {
|
return updateTimes;
|
}
|
|
public void setUpdateTimes(String updateTimes) {
|
this.updateTimes = updateTimes;
|
}
|
|
public Double getTotalTime() {
|
return totalTime;
|
}
|
|
public void setTotalTime(Double totalTime) {
|
this.totalTime = totalTime;
|
}
|
}
|