141 lines
2.7 KiB
Java
141 lines
2.7 KiB
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import java.util.Date;
|
|
import java.util.HashSet;
|
|
import java.util.Set;
|
|
import javax.persistence.*;
|
|
|
|
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonBackReference;
|
|
import javax.validation.constraints.NotNull;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
|
|
/**
|
|
* class ManagementDashboardVOVO
|
|
*
|
|
* @author Generator
|
|
*/
|
|
public class ManagementDashboardVO extends BaseTransactionVO {
|
|
@Column(name = "Kelompok", nullable = false, length = 100)
|
|
@Caption(value = "Kelompok")
|
|
private String kelompok;
|
|
|
|
public String getKelompok() {
|
|
return kelompok;
|
|
}
|
|
|
|
@Column(name = "Height", nullable = true, length = 500)
|
|
@Caption(value = "Height")
|
|
private Integer height;
|
|
|
|
@Column(name = "Width", nullable = true, length = 500)
|
|
@Caption(value = "Width")
|
|
private Integer width;
|
|
|
|
@Column(name = "Table", nullable = true, length = 500)
|
|
@Caption(value = "Table")
|
|
private Integer table;
|
|
|
|
|
|
public Integer getHeight() {
|
|
return height;
|
|
}
|
|
|
|
public void setHeight(Integer height) {
|
|
this.height = height;
|
|
}
|
|
|
|
public Integer getWidth() {
|
|
return width;
|
|
}
|
|
|
|
public void setWidth(Integer width) {
|
|
this.width = width;
|
|
}
|
|
|
|
public Integer getTable() {
|
|
return table;
|
|
}
|
|
|
|
public void setTable(Integer table) {
|
|
this.table = table;
|
|
}
|
|
|
|
public void setKelompok(String kelompok) {
|
|
this.kelompok = kelompok;
|
|
}
|
|
|
|
@Column(name = "Query", nullable = false, length = 100)
|
|
@Caption(value = "Query")
|
|
private String query;
|
|
|
|
public String getQuery() {
|
|
return query;
|
|
}
|
|
|
|
public void setQuery(String query) {
|
|
this.query = query;
|
|
}
|
|
|
|
@Column(name = "Type", nullable = false, length = 100)
|
|
@Caption(value = "Type")
|
|
private String type;
|
|
|
|
public String getType() {
|
|
return type;
|
|
}
|
|
|
|
public void setType(String type) {
|
|
this.type = type;
|
|
}
|
|
|
|
@Column(name = "Title", nullable = false, length = 100)
|
|
@Caption(value = "Title")
|
|
private String title;
|
|
|
|
public String getTitle() {
|
|
return title;
|
|
}
|
|
|
|
public void setTitle(String title) {
|
|
this.title = title;
|
|
}
|
|
|
|
@Column(name = "Span", nullable = false, length = 100)
|
|
@Caption(value = "Span")
|
|
private String span;
|
|
|
|
public String getSpan() {
|
|
return span;
|
|
}
|
|
|
|
public void setSpan(String span) {
|
|
this.span = span;
|
|
}
|
|
|
|
@Column(name = "Series", nullable = false, length = 100)
|
|
@Caption(value = "Series")
|
|
private String series;
|
|
|
|
public String getSeries() {
|
|
return series;
|
|
}
|
|
|
|
public void setSeries(String series) {
|
|
this.series = series;
|
|
}
|
|
|
|
@Column(name = "Detail", nullable = false, length = 100)
|
|
@Caption(value = "Detail")
|
|
private String detail;
|
|
|
|
public String getDetail() {
|
|
return detail;
|
|
}
|
|
|
|
public void setDetail(String detail) {
|
|
this.detail = detail;
|
|
}
|
|
|
|
} |