2021-01-07 11:34:56 +07:00

48 lines
1.1 KiB
Java

package com.jasamedika.medifirst2000.vo;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Table;
import javax.validation.constraints.NotNull;
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
import com.jasamedika.medifirst2000.helper.Caption;
/**
* class Radiologi
*
* @author Generator
*/
//@Entity
//@Table(name = "RM_Radiologi_M")
public class RadiologiVO extends BaseMasterVO {
@NotNull(message="KdJenisProduk tidak boleh kosong")
@Column(name = "KdJenisProduk", nullable = false, length = 100)
@Caption(value = "KdJenisProduk")
private String kdJenisProduk;
public void setKdJenisProduk(String kdJenisProduk)
{
this.kdJenisProduk = kdJenisProduk;
}
public String getKdJenisProduk()
{
return this.kdJenisProduk;
}
@NotNull(message="JenisProduk tidak boleh kosong")
@Column(name = "JenisProduk", nullable = false, length = 100)
@Caption(value = "JenisProduk")
private String jenisProduk;
public void setJenisProduk(String jenisProduk)
{
this.jenisProduk = jenisProduk;
}
public String getJenisProduk()
{
return this.jenisProduk;
}
}