44 lines
924 B
Java
44 lines
924 B
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 TahunUmr
|
|
*
|
|
* @author Generator
|
|
*/
|
|
@Entity
|
|
@Table(name = "sdm_TahunUmr_T")
|
|
public class TahunUmr extends BaseTransaction{
|
|
@Column(name = "Id", nullable = false , length = 100)
|
|
@Caption(value = "Id")
|
|
private Integer id ;
|
|
public Integer getId() {
|
|
return id ;
|
|
}
|
|
public void setId(Integer id ) {
|
|
this.id = id ;
|
|
}
|
|
|
|
@Column(name = "Name", nullable = false , length = 100)
|
|
@Caption(value = "Name")
|
|
private String name ;
|
|
public String getName() {
|
|
return name ;
|
|
}
|
|
public void setName(String name ) {
|
|
this.name = name ;
|
|
}
|
|
|
|
|
|
} |