42 lines
891 B
Java
42 lines
891 B
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 TahunUmrVOVO
|
|
*
|
|
* @author Generator
|
|
*/
|
|
public class TahunUmrVO extends BaseTransactionVO{
|
|
@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 ;
|
|
}
|
|
|
|
|
|
} |