38 lines
837 B
Java
38 lines
837 B
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import javax.persistence.Column;
|
|
import javax.persistence.Entity;
|
|
import javax.persistence.JoinColumn;
|
|
import javax.persistence.ManyToOne;
|
|
import javax.persistence.Table;
|
|
import javax.validation.constraints.NotNull;
|
|
|
|
import com.jasamedika.medifirst2000.base.BaseMaster;
|
|
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
|
|
|
|
/**
|
|
* @author Shakato
|
|
*
|
|
* Belajar alur data
|
|
* Created at Jun 15, 2016 - 2:20:07 PM
|
|
*/
|
|
|
|
public class StatusFungsionalVO extends BaseMasterVO{
|
|
|
|
@NotNull(message="Name tidak boleh kosong")
|
|
@Column(name = "Name", nullable = false, length = 100)
|
|
@Caption(value = "Name")
|
|
private String name;
|
|
|
|
public void setName(String name)
|
|
{
|
|
this.name = name;
|
|
}
|
|
public String getName()
|
|
{
|
|
return this.name;
|
|
}
|
|
}
|