81 lines
2.1 KiB
Java
81 lines
2.1 KiB
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import java.io.Serializable;
|
|
import javax.persistence.*;
|
|
import java.util.Date;
|
|
import org.hibernate.validator.constraints.NotEmpty;
|
|
|
|
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
|
import javax.validation.constraints.NotNull;
|
|
import org.hibernate.validator.constraints.Length;
|
|
import org.hibernate.validator.internal.util.logging.Messages;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonManagedReference;
|
|
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
|
|
/**
|
|
* class JenisPetugasPelaksana
|
|
*
|
|
* @author Generator
|
|
*/
|
|
//@Entity
|
|
//@Table(name = "JenisPetugasPelaksana_M")
|
|
public class JenisPetugasPelaksanaVO extends BaseMasterVO {
|
|
@Caption(value="Jenis Petugas Pe")
|
|
private String jenisPetugasPe;
|
|
|
|
public void setJenisPetugasPe(String jenisPetugasPe) {
|
|
this.jenisPetugasPe = jenisPetugasPe;
|
|
}
|
|
|
|
@Column(name = "JenisPetugasPe", nullable = false , length = 50)
|
|
public String getJenisPetugasPe(){
|
|
return this.jenisPetugasPe;
|
|
}
|
|
|
|
@Caption(value="Kode Jenis Petugas Pe")
|
|
private Byte kdJenisPetugasPe;
|
|
|
|
public void setKdJenisPetugasPe(Byte kdJenisPetugasPe) {
|
|
this.kdJenisPetugasPe = kdJenisPetugasPe;
|
|
}
|
|
|
|
@Column(name = "KdJenisPetugasPe", nullable = false )
|
|
public Byte getKdJenisPetugasPe(){
|
|
return this.kdJenisPetugasPe;
|
|
}
|
|
|
|
@ManyToOne
|
|
@JoinColumn(name = "ObjectKomponenHargaFk")
|
|
@Caption(value="Object Komponen Harga")
|
|
private KomponenHargaVO komponenHarga;
|
|
|
|
public void setKomponenHarga(KomponenHargaVO komponenHarga) {
|
|
this.komponenHarga = komponenHarga;
|
|
}
|
|
|
|
@Column(name = "KdKomponenHarga", nullable = true )
|
|
public KomponenHargaVO getKomponenHarga(){
|
|
return this.komponenHarga;
|
|
}
|
|
|
|
@Column(name = "ObjectKomponenHargaFk", insertable=false,updatable=false)
|
|
private Integer komponenHargaId;
|
|
|
|
@Caption(value="QJenis Petugas Pe")
|
|
private Byte qJenisPetugasPe;
|
|
|
|
public void setqJenisPetugasPe(Byte qJenisPetugasPe) {
|
|
this.qJenisPetugasPe = qJenisPetugasPe;
|
|
}
|
|
|
|
@Column(name = "QJenisPetugasPe", nullable = false )
|
|
public Byte getqJenisPetugasPe(){
|
|
return this.qJenisPetugasPe;
|
|
}
|
|
|
|
|
|
}
|
|
|