package com.moon.server.entity.data;
|
|
import java.io.Serializable;
|
import java.sql.Timestamp;
|
|
/**
|
* FME日志表
|
* @author WWW
|
*/
|
public class FmeLogEntity implements Serializable {
|
private static final long serialVersionUID = -1304153743551710249L;
|
|
public FmeLogEntity() {
|
}
|
|
private Integer id;
|
|
private String parentid;
|
|
private String dirpath;
|
|
private String pgNs;
|
|
private String tcmc;
|
|
private String tcdm;
|
|
private Integer count;
|
|
private Timestamp createTime;
|
|
private Timestamp updateTime;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public String getParentid() {
|
return parentid;
|
}
|
|
public void setParentid(String parentid) {
|
this.parentid = parentid;
|
}
|
|
public String getDirpath() {
|
return dirpath;
|
}
|
|
public void setDirpath(String dirpath) {
|
this.dirpath = dirpath;
|
}
|
|
public String getPgNs() {
|
return pgNs;
|
}
|
|
public void setPgNs(String pgNs) {
|
this.pgNs = pgNs;
|
}
|
|
public String getTcmc() {
|
return tcmc;
|
}
|
|
public void setTcmc(String tcmc) {
|
this.tcmc = tcmc;
|
}
|
|
public String getTcdm() {
|
return tcdm;
|
}
|
|
public void setTcdm(String tcdm) {
|
this.tcdm = tcdm;
|
}
|
|
public Integer getCount() {
|
return count;
|
}
|
|
public void setCount(Integer count) {
|
this.count = count;
|
}
|
|
public Timestamp getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Timestamp createTime) {
|
this.createTime = createTime;
|
}
|
|
public Timestamp getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Timestamp updateTime) {
|
this.updateTime = updateTime;
|
}
|
}
|