com.datastax.insight.core.entity.Datum Maven / Gradle / Ivy
package com.datastax.insight.core.entity;
/**
* Created by huangping on 07/01/2017.
*/
public class Datum {
private int id;
private int parentId;
private Integer nodeType;
private String name;
private String description;
private String fileName;
private String path;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public int getParentId() {
return parentId;
}
public void setParentId(int parentId) {
this.parentId = parentId;
}
public Integer getNodeType() {
return nodeType;
}
public void setNodeType(Integer nodeType) {
this.nodeType = nodeType;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getFileName() {
return fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
}