51 lines
1.2 KiB
Java
51 lines
1.2 KiB
Java
package com.jasamedika.medifirst2000.entities;
|
|
|
|
import com.jasamedika.medifirst2000.base.BaseTransaction;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
import javax.persistence.Column;
|
|
import javax.persistence.Entity;
|
|
import javax.persistence.Table;
|
|
|
|
/**
|
|
* class DesignDashboard
|
|
*
|
|
* @author Generator
|
|
*/
|
|
@Getter
|
|
@Setter
|
|
@Entity
|
|
@Table(name = "sdm_DesignDashboard_T")
|
|
public class DesignDashboard extends BaseTransaction {
|
|
|
|
@Column(name = "Kelompok", nullable = false, length = 100)
|
|
@Caption(value = "Kelompok")
|
|
private String kelompok;
|
|
|
|
@Column(name = "Query", nullable = false, length = 100)
|
|
@Caption(value = "Query")
|
|
private String query;
|
|
|
|
@Column(name = "Type", nullable = false, length = 100)
|
|
@Caption(value = "Type")
|
|
private String type;
|
|
|
|
@Column(name = "Title", nullable = false, length = 100)
|
|
@Caption(value = "Title")
|
|
private String title;
|
|
|
|
@Column(name = "Span", nullable = false, length = 100)
|
|
@Caption(value = "Span")
|
|
private String span;
|
|
|
|
@Column(name = "Series", nullable = false, length = 100)
|
|
@Caption(value = "Series")
|
|
private String series;
|
|
|
|
@Column(name = "Detail", nullable = false, length = 100)
|
|
@Caption(value = "Detail")
|
|
private String detail;
|
|
|
|
} |