94 lines
2.1 KiB
Java
94 lines
2.1 KiB
Java
package com.jasamedika.medifirst2000.entities;
|
|
|
|
import java.util.Date;
|
|
import java.util.HashSet;
|
|
import java.util.Set;
|
|
import javax.persistence.*;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonBackReference;
|
|
import com.jasamedika.medifirst2000.base.BaseTransaction;
|
|
|
|
|
|
import javax.validation.constraints.NotNull;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
|
|
/**
|
|
* class DesignDashboard
|
|
*
|
|
* @author Generator
|
|
*/
|
|
@Entity
|
|
@Table(name = "sdm_DesignDashboard_T")
|
|
public class DesignDashboard extends BaseTransaction{
|
|
@Column(name = "Kelompok", nullable = false , length = 100)
|
|
@Caption(value = "Kelompok")
|
|
private String kelompok ;
|
|
public String getKelompok() {
|
|
return kelompok ;
|
|
}
|
|
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 ;
|
|
}
|
|
|
|
|
|
} |