115 lines
3.3 KiB
Java
115 lines
3.3 KiB
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.HashSet;
|
|
import java.util.Set;
|
|
|
|
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 JenisTarif
|
|
*
|
|
* @author Generator
|
|
*/
|
|
//@Entity
|
|
//@Table(name = "JenisTarif_M")
|
|
public class JenisTarifVO extends BaseMasterVO {
|
|
@Caption(value="Jenis Tarif")
|
|
private String jenisTarif;
|
|
|
|
public void setJenisTarif(String jenisTarif) {
|
|
this.jenisTarif = jenisTarif;
|
|
}
|
|
|
|
@Column(name = "JenisTarif", nullable = false , length = 20)
|
|
public String getJenisTarif(){
|
|
return this.jenisTarif;
|
|
}
|
|
|
|
@Caption(value="Kode Jenis Tarif")
|
|
private Byte kdJenisTarif;
|
|
|
|
public void setKdJenisTarif(Byte kdJenisTarif) {
|
|
this.kdJenisTarif = kdJenisTarif;
|
|
}
|
|
|
|
@Column(name = "KdJenisTarif", nullable = false )
|
|
public Byte getKdJenisTarif(){
|
|
return this.kdJenisTarif;
|
|
}
|
|
|
|
@Caption(value="QJenis Tarif")
|
|
private Byte qJenisTarif;
|
|
|
|
public void setqJenisTarif(Byte qJenisTarif) {
|
|
this.qJenisTarif = qJenisTarif;
|
|
}
|
|
|
|
@Column(name = "QJenisTarif", nullable = false )
|
|
public Byte getqJenisTarif(){
|
|
return this.qJenisTarif;
|
|
}
|
|
|
|
/*//
|
|
@OneToMany(fetch=FetchType.LAZY, cascade = CascadeType.ALL, mappedBy="kdjenistarif")
|
|
private Set<HargaNettoProdukByKelas> HargaNettoDiscPasienPulangSet = new HashSet<HargaNettoProdukByKelas>();
|
|
|
|
public Set<HargaNettoProdukByKelas> getHargaNettoDiscPasienPulangSet() {
|
|
return HargaNettoDiscPasienPulangSet;
|
|
}
|
|
|
|
public void setHargaNettoDiscPasienPulangSet(Set<HargaNettoProdukByKelas> hargaNettoDiscPasienPulangSet) {
|
|
HargaNettoDiscPasienPulangSet = hargaNettoDiscPasienPulangSet;
|
|
}
|
|
|
|
|
|
//
|
|
@OneToMany(fetch=FetchType.LAZY, cascade = CascadeType.ALL, mappedBy="kdjenistarif")
|
|
private Set<HargaNettoProdukByKelas> HargaNettoProdukByKelasSet = new HashSet<HargaNettoProdukByKelas>();
|
|
|
|
public Set<HargaNettoProdukByKelas> getHargaNettoProdukByKelasSet() {
|
|
return HargaNettoProdukByKelasSet;
|
|
}
|
|
|
|
public void setHargaNettoProdukByKelasSet(Set<HargaNettoProdukByKelas> hargaNettoProdukByKelasSet) {
|
|
HargaNettoProdukByKelasSet = hargaNettoProdukByKelasSet;
|
|
}
|
|
|
|
//
|
|
@OneToMany(fetch=FetchType.LAZY, cascade = CascadeType.ALL, mappedBy="kdjenistarif")
|
|
private Set<HargaNettoProdukByKelasD> HargaNettoProdukByKelasDSet = new HashSet<HargaNettoProdukByKelasD>();
|
|
|
|
public Set<HargaNettoProdukByKelasD> getHargaNettoProdukByKelasDSet() {
|
|
return HargaNettoProdukByKelasDSet;
|
|
}
|
|
|
|
public void setHargaNettoProdukByKelasDSet(Set<HargaNettoProdukByKelasD> hargaNettoProdukByKelasDSet) {
|
|
HargaNettoProdukByKelasDSet = hargaNettoProdukByKelasDSet;
|
|
}
|
|
|
|
//
|
|
@OneToMany(fetch=FetchType.LAZY, cascade = CascadeType.ALL, mappedBy="kdjenistarif")
|
|
private Set<KelompokPasien> KelompokPasienSet = new HashSet<KelompokPasien>();
|
|
|
|
public Set<KelompokPasien> getKelompokPasienSet() {
|
|
return KelompokPasienSet;
|
|
}
|
|
|
|
public void setKelompokPasienSet(Set<KelompokPasien> kelompokPasienSet) {
|
|
KelompokPasienSet = kelompokPasienSet;
|
|
}*/
|
|
|
|
}
|
|
|