Update domain virtual object dan dto
Penerapan lombok dependency untuk mengurangi boilerplate
This commit is contained in:
parent
ae0530e600
commit
f5414a67ff
@ -1,30 +1,25 @@
|
||||
package com.jasamedika.medifirst2000.service.impl;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Date;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.orm.jpa.JpaSystemException;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import com.jasamedika.medifirst2000.converter.BaseConverterImpl;
|
||||
import com.jasamedika.medifirst2000.converter.PapKeluhanTambahanConverter;
|
||||
import com.jasamedika.medifirst2000.converter.PasienDaftarConverter;
|
||||
import com.jasamedika.medifirst2000.dao.AntrianPasienDiPeriksaDao;
|
||||
import com.jasamedika.medifirst2000.dao.PapKeluhanTambahanDao;
|
||||
import com.jasamedika.medifirst2000.dao.PasienDaftarDao;
|
||||
import com.jasamedika.medifirst2000.entities.AntrianPasienDiPeriksa;
|
||||
import com.jasamedika.medifirst2000.entities.PapKeluhanTambahan;
|
||||
import com.jasamedika.medifirst2000.entities.PapKeluhanUtama;
|
||||
import com.jasamedika.medifirst2000.entities.PasienDaftar;
|
||||
import com.jasamedika.medifirst2000.exception.ServiceVOException;
|
||||
import com.jasamedika.medifirst2000.service.PapKeluhanTambahanService;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
import com.jasamedika.medifirst2000.vo.PapKeluhanTambahanVO;
|
||||
import com.jasamedika.medifirst2000.vo.PasienDaftarVO;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.orm.jpa.JpaSystemException;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* Implement class for PAPKeluhanTambahanService
|
||||
@ -48,7 +43,7 @@ public class PapKeluhanTambahanServiceImpl implements PapKeluhanTambahanService
|
||||
public Map<String,Object> addKeluhanTambahan(PapKeluhanTambahanVO vo) throws JpaSystemException, ServiceVOException {
|
||||
Map<String,Object> result=new HashMap<String,Object>();
|
||||
PapKeluhanTambahan model=papKeluhanTambahanConverter.transferVOToModel(vo, new PapKeluhanTambahan());
|
||||
AntrianPasienDiPeriksa antrian=antrianPasienDiPeriksaDao.findOne(vo.getPasien().getNoRec());
|
||||
AntrianPasienDiPeriksa antrian=antrianPasienDiPeriksaDao.findOne(vo.getPasienDaftar().getNoRec());
|
||||
PasienDaftar pasienDaftar=antrian.getPasienDaftar();
|
||||
model.setPasienDaftar(pasienDaftar);
|
||||
PapKeluhanTambahan resultModel=papKeluhanTambahanDao.save(model);
|
||||
|
||||
@ -47,7 +47,7 @@ public class PapKeluhanUtamaServiceImpl implements PapKeluhanUtamaService {
|
||||
public Map<String,Object> addKeluhanUtama(PapKeluhanUtamaVO vo) throws JpaSystemException, ServiceVOException {
|
||||
Map<String,Object> result=new HashMap<String,Object>();
|
||||
PapKeluhanUtama model=papKeluhanUtamaConverter.transferVOToModel(vo, new PapKeluhanUtama());
|
||||
AntrianPasienDiPeriksa pasienDaftar = antrianPasienDiPeriksaDao.findByNoRec(vo.getPasien().getNoRec());
|
||||
AntrianPasienDiPeriksa pasienDaftar = antrianPasienDiPeriksaDao.findByNoRec(vo.getPasienDaftar().getNoRec());
|
||||
model.setPasienDaftar(pasienDaftar);
|
||||
PapKeluhanUtama resultModel=papKeluhanUtamaDao.save(model);
|
||||
if(CommonUtil.isNotNullOrEmpty(resultModel)){
|
||||
|
||||
@ -0,0 +1,23 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
/**
|
||||
* class umur
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
public class UmurVO extends BaseMasterVO {
|
||||
|
||||
@NotNull(message = "Name tidak boleh kosong")
|
||||
@Caption(value = "Name")
|
||||
private String name;
|
||||
|
||||
}
|
||||
@ -1,63 +1,27 @@
|
||||
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;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
* class UnitBagian
|
||||
* class UnitBagian
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
//@Entity
|
||||
//@Table(name = "UnitBagian_M")
|
||||
@Getter
|
||||
@Setter
|
||||
public class UnitBagianVO extends BaseMasterVO {
|
||||
@Caption(value="Kode Unit Bagian")
|
||||
|
||||
@Caption(value = "Kode Unit Bagian")
|
||||
private Byte kdUnitBagian;
|
||||
|
||||
public void setKdUnitBagian(Byte kdUnitBagian) {
|
||||
this.kdUnitBagian = kdUnitBagian;
|
||||
}
|
||||
|
||||
@Column(name = "KdUnitBagian", nullable = false )
|
||||
public Byte getKdUnitBagian(){
|
||||
return this.kdUnitBagian;
|
||||
}
|
||||
|
||||
@Caption(value="QUnit Bagian")
|
||||
@Caption(value = "QUnit Bagian")
|
||||
private Byte qUnitBagian;
|
||||
|
||||
public void setqUnitBagian(Byte qUnitBagian) {
|
||||
this.qUnitBagian = qUnitBagian;
|
||||
}
|
||||
|
||||
@Column(name = "QUnitBagian", nullable = false )
|
||||
public Byte getqUnitBagian(){
|
||||
return this.qUnitBagian;
|
||||
}
|
||||
|
||||
@Caption(value="Unit Bagian")
|
||||
@Caption(value = "Unit Bagian")
|
||||
private String unitBagian;
|
||||
|
||||
public void setUnitBagian(String unitBagian) {
|
||||
this.unitBagian = unitBagian;
|
||||
}
|
||||
|
||||
@Column(name = "UnitBagian", nullable = false , length = 50)
|
||||
public String getUnitBagian(){
|
||||
return this.unitBagian;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,47 +1,19 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class UnitCostDetailJenisVO extends BaseMasterVO {
|
||||
|
||||
private UnitCostJenisVO unitCostJenis;
|
||||
|
||||
|
||||
private Integer unitCostJenisId;
|
||||
|
||||
|
||||
private String kdUnitCostDetailJenis;
|
||||
|
||||
|
||||
private String namaUnitCostDetailJenis;
|
||||
|
||||
public UnitCostJenisVO getUnitCostJenis() {
|
||||
return unitCostJenis;
|
||||
}
|
||||
|
||||
public void setUnitCostJenis(UnitCostJenisVO unitCostJenis) {
|
||||
this.unitCostJenis = unitCostJenis;
|
||||
}
|
||||
|
||||
public Integer getUnitCostJenisId() {
|
||||
return unitCostJenisId;
|
||||
}
|
||||
|
||||
public void setUnitCostJenisId(Integer unitCostJenisId) {
|
||||
this.unitCostJenisId = unitCostJenisId;
|
||||
}
|
||||
|
||||
public String getKdUnitCostDetailJenis() {
|
||||
return kdUnitCostDetailJenis;
|
||||
}
|
||||
|
||||
public void setKdUnitCostDetailJenis(String kdUnitCostDetailJenis) {
|
||||
this.kdUnitCostDetailJenis = kdUnitCostDetailJenis;
|
||||
}
|
||||
|
||||
public String getNamaUnitCostDetailJenis() {
|
||||
return namaUnitCostDetailJenis;
|
||||
}
|
||||
|
||||
public void setNamaUnitCostDetailJenis(String namaUnitCostDetailJenis) {
|
||||
this.namaUnitCostDetailJenis = namaUnitCostDetailJenis;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -1,113 +1,31 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class UnitCostDetailVO extends BaseTransactionVO {
|
||||
|
||||
|
||||
private UnitCostVO unitCost;
|
||||
|
||||
|
||||
private Integer unitCostId;
|
||||
|
||||
|
||||
private UnitCostDetailJenisVO unitCostDetailJenis;
|
||||
|
||||
private Integer unitCostDetailJenisId;
|
||||
|
||||
private ProdukVO produk;
|
||||
|
||||
private Integer produkId;
|
||||
|
||||
|
||||
private SatuanStandarVO satuanStandar;
|
||||
|
||||
|
||||
private Integer satuanStandarId;
|
||||
|
||||
|
||||
private Integer qty;
|
||||
|
||||
private Double harga;
|
||||
|
||||
|
||||
|
||||
public UnitCostVO getUnitCost() {
|
||||
return unitCost;
|
||||
}
|
||||
|
||||
public void setUnitCost(UnitCostVO unitCost) {
|
||||
this.unitCost = unitCost;
|
||||
}
|
||||
|
||||
public Integer getUnitCostId() {
|
||||
return unitCostId;
|
||||
}
|
||||
|
||||
public void setUnitCostId(Integer unitCostId) {
|
||||
this.unitCostId = unitCostId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public Integer getUnitCostDetailJenisId() {
|
||||
return unitCostDetailJenisId;
|
||||
}
|
||||
|
||||
public void setUnitCostDetailJenisId(Integer unitCostDetailJenisId) {
|
||||
this.unitCostDetailJenisId = unitCostDetailJenisId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public Integer getProdukId() {
|
||||
return produkId;
|
||||
}
|
||||
|
||||
public void setProdukId(Integer produkId) {
|
||||
this.produkId = produkId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public Integer getSatuanStandarId() {
|
||||
return satuanStandarId;
|
||||
}
|
||||
|
||||
public void setSatuanStandarId(Integer satuanStandarId) {
|
||||
this.satuanStandarId = satuanStandarId;
|
||||
}
|
||||
|
||||
public Integer getQty() {
|
||||
return qty;
|
||||
}
|
||||
|
||||
public void setQty(Integer qty) {
|
||||
this.qty = qty;
|
||||
}
|
||||
|
||||
public Double getHarga() {
|
||||
return harga;
|
||||
}
|
||||
|
||||
public void setHarga(Double harga) {
|
||||
this.harga = harga;
|
||||
}
|
||||
|
||||
public UnitCostDetailJenisVO getUnitCostDetailJenis() {
|
||||
return unitCostDetailJenis;
|
||||
}
|
||||
|
||||
public void setUnitCostDetailJenis(UnitCostDetailJenisVO unitCostDetailJenis) {
|
||||
this.unitCostDetailJenis = unitCostDetailJenis;
|
||||
}
|
||||
|
||||
public ProdukVO getProduk() {
|
||||
return produk;
|
||||
}
|
||||
|
||||
public void setProduk(ProdukVO produk) {
|
||||
this.produk = produk;
|
||||
}
|
||||
|
||||
public SatuanStandarVO getSatuanStandar() {
|
||||
return satuanStandar;
|
||||
}
|
||||
|
||||
public void setSatuanStandar(SatuanStandarVO satuanStandar) {
|
||||
this.satuanStandar = satuanStandar;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -1,42 +1,18 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
||||
import javax.persistence.CascadeType;
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.FetchType;
|
||||
import javax.persistence.OneToMany;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonManagedReference;
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class UnitCostJenisVO extends BaseMasterVO {
|
||||
|
||||
@Caption(value = "KdJenisUnitCost")
|
||||
private String kdJenisUnitCost;
|
||||
|
||||
|
||||
@Caption(value = "NamaJenisUnitCost")
|
||||
private String namaJenisUnitCost;
|
||||
|
||||
|
||||
public String getKdJenisUnitCost() {
|
||||
return kdJenisUnitCost;
|
||||
}
|
||||
|
||||
public void setKdJenisUnitCost(String kdJenisUnitCost) {
|
||||
this.kdJenisUnitCost = kdJenisUnitCost;
|
||||
}
|
||||
|
||||
public String getNamaJenisUnitCost() {
|
||||
return namaJenisUnitCost;
|
||||
}
|
||||
|
||||
public void setNamaJenisUnitCost(String namaJenisUnitCost) {
|
||||
this.namaJenisUnitCost = namaJenisUnitCost;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -1,18 +1,14 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class UnitKerjaPegawaiVO extends BaseKeyValueMasterVO {
|
||||
|
||||
public class UnitKerjaPegawaiVO extends BaseKeyValueMasterVO{
|
||||
|
||||
@Caption("Subunit Kerja")
|
||||
private SubUnitKerjaPegawaiVO subUnitKerja;
|
||||
|
||||
public SubUnitKerjaPegawaiVO getSubUnitKerja() {
|
||||
return subUnitKerja;
|
||||
}
|
||||
|
||||
public void setSubUnitKerja(SubUnitKerjaPegawaiVO subUnitKerja) {
|
||||
this.subUnitKerja = subUnitKerja;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -1,74 +1,32 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import javax.persistence.Column;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
* class UnitKerja
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
public class UnitKerjaVO extends BaseMasterVO {
|
||||
|
||||
@Caption(value = "Kode Pimpinan")
|
||||
private String kdPimpinan;
|
||||
|
||||
@Column(name = "KdPimpinan", nullable = true, length = 5)
|
||||
public String getKdPimpinan() {
|
||||
return kdPimpinan;
|
||||
}
|
||||
|
||||
public void setKdPimpinan(String kdPimpinan) {
|
||||
this.kdPimpinan = kdPimpinan;
|
||||
}
|
||||
|
||||
@Caption(value = "Kode Unit Kerja")
|
||||
private Byte kdUnitKerja;
|
||||
|
||||
@Column(name = "KdUnitKerja", nullable = false)
|
||||
public Byte getKdUnitKerja() {
|
||||
return kdUnitKerja;
|
||||
}
|
||||
|
||||
public void setKdUnitKerja(Byte kdUnitKerja) {
|
||||
this.kdUnitKerja = kdUnitKerja;
|
||||
}
|
||||
|
||||
@Caption(value = "No Unit Kerja")
|
||||
private String noUnitKerja;
|
||||
|
||||
@Column(name = "NoUnitKerja", nullable = true, length = 50)
|
||||
public String getNoUnitKerja() {
|
||||
return noUnitKerja;
|
||||
}
|
||||
|
||||
public void setNoUnitKerja(String noUnitKerja) {
|
||||
this.noUnitKerja = noUnitKerja;
|
||||
}
|
||||
|
||||
@Caption(value = "QUnit Kerja")
|
||||
private Byte qUnitKerja;
|
||||
|
||||
@Column(name = "QUnitKerjaQUnitKerja", nullable = false)
|
||||
public Byte getqUnitKerja() {
|
||||
return qUnitKerja;
|
||||
}
|
||||
|
||||
public void setqUnitKerja(Byte qUnitKerja) {
|
||||
this.qUnitKerja = qUnitKerja;
|
||||
}
|
||||
|
||||
@Caption(value = "Unit Kerja")
|
||||
private String namaUnitKerja;
|
||||
|
||||
@Column(name = "UnitKerja", nullable = false, length = 100)
|
||||
public String getNamaUnitKerja() {
|
||||
return namaUnitKerja;
|
||||
}
|
||||
|
||||
public void setNamaUnitKerja(String namaUnitKerja) {
|
||||
this.namaUnitKerja = namaUnitKerja;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -1,109 +1,39 @@
|
||||
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;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
* class UnitLaporan
|
||||
* class UnitLaporan
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
//@Entity
|
||||
//@Table(name = "UnitLaporan_M")
|
||||
@Getter
|
||||
@Setter
|
||||
public class UnitLaporanVO extends BaseMasterVO {
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectKelompokProdukFk")
|
||||
@Caption(value="Object Kelompok Produk")
|
||||
|
||||
@Caption(value = "Object Kelompok Produk")
|
||||
private KelompokProdukVO kelompokProduk;
|
||||
|
||||
public void setKelompokProduk(KelompokProdukVO kelompokProduk) {
|
||||
this.kelompokProduk = kelompokProduk;
|
||||
}
|
||||
|
||||
@Column(name = "KdKelompokProduk", nullable = true )
|
||||
public KelompokProdukVO getKelompokProduk(){
|
||||
return this.kelompokProduk;
|
||||
}
|
||||
|
||||
@Column(name = "ObjectKelompokProdukFk", insertable=false,updatable=false)
|
||||
private Integer kelompokProdukId;
|
||||
|
||||
@Caption(value="Kode Unit Laporan")
|
||||
@Caption(value = "Kode Unit Laporan")
|
||||
private Byte kdUnitLaporan;
|
||||
|
||||
public void setKdUnitLaporan(Byte kdUnitLaporan) {
|
||||
this.kdUnitLaporan = kdUnitLaporan;
|
||||
}
|
||||
|
||||
@Column(name = "KdUnitLaporan", nullable = false )
|
||||
public Byte getKdUnitLaporan(){
|
||||
return this.kdUnitLaporan;
|
||||
}
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectUnitLaporanHeadFk")
|
||||
@Caption(value="Object Unit Laporan Head")
|
||||
@Caption(value = "Object Unit Laporan Head")
|
||||
private UnitLaporanVO unitLaporanHead;
|
||||
|
||||
public void setUnitLaporanHead(UnitLaporanVO unitLaporanHead) {
|
||||
this.unitLaporanHead = unitLaporanHead;
|
||||
}
|
||||
|
||||
@Column(name = "KdUnitLaporanHead", nullable = true )
|
||||
public UnitLaporanVO getUnitLaporanHead(){
|
||||
return this.unitLaporanHead;
|
||||
}
|
||||
|
||||
@Column(name = "ObjectUnitLaporanHeadFk", insertable=false,updatable=false)
|
||||
private Integer unitLaporanHeadId;
|
||||
|
||||
@Caption(value="No Urut")
|
||||
@Caption(value = "No Urut")
|
||||
private Byte noUrut;
|
||||
|
||||
public void setNoUrut(Byte noUrut) {
|
||||
this.noUrut = noUrut;
|
||||
}
|
||||
|
||||
@Column(name = "NoUrut", nullable = false )
|
||||
public Byte getNoUrut(){
|
||||
return this.noUrut;
|
||||
}
|
||||
|
||||
@Caption(value="QUnit Laporan")
|
||||
@Caption(value = "QUnit Laporan")
|
||||
private Byte qUnitLaporan;
|
||||
|
||||
public void setqUnitLaporan(Byte qUnitLaporan) {
|
||||
this.qUnitLaporan = qUnitLaporan;
|
||||
}
|
||||
|
||||
@Column(name = "QUnitLaporan", nullable = false )
|
||||
public Byte getqUnitLaporan(){
|
||||
return this.qUnitLaporan;
|
||||
}
|
||||
|
||||
@Caption(value="Unit Laporan")
|
||||
@Caption(value = "Unit Laporan")
|
||||
private String unitLaporan;
|
||||
|
||||
public void setUnitLaporan(String unitLaporan) {
|
||||
this.unitLaporan = unitLaporan;
|
||||
}
|
||||
|
||||
@Column(name = "UnitLaporan", nullable = false , length = 50)
|
||||
public String getUnitLaporan(){
|
||||
return this.unitLaporan;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,48 +1,26 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.BaseMaster;
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
public class UnitOrgVO extends BaseMasterVO{
|
||||
|
||||
@NotNull(message="Unit Org tidak boleh kosong")
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class UnitOrgVO extends BaseMasterVO {
|
||||
|
||||
@NotNull(message = "Unit Org tidak boleh kosong")
|
||||
@Caption(value = "Unit Org")
|
||||
private String namaUnitOrg;
|
||||
|
||||
@NotNull(message = "Kode Unit Org tidak boleh kosong")
|
||||
|
||||
@NotNull(message = "Kode Unit Org tidak boleh kosong")
|
||||
@Caption(value = "Kode Unit Org")
|
||||
private String kodeUnitOrg;
|
||||
|
||||
@NotNull(message = "Keterangan tidak boleh kosong")
|
||||
|
||||
@NotNull(message = "Keterangan tidak boleh kosong")
|
||||
@Caption(value = "Keterangan")
|
||||
private String ketUnitOrg;
|
||||
|
||||
public String getNamaUnitOrg() {
|
||||
return namaUnitOrg;
|
||||
}
|
||||
|
||||
public void setNamaUnitOrg(String namaUnitOrg) {
|
||||
this.namaUnitOrg = namaUnitOrg;
|
||||
}
|
||||
|
||||
public String getKodeUnitOrg() {
|
||||
return kodeUnitOrg;
|
||||
}
|
||||
|
||||
public void setKodeUnitOrg(String kodeUnitOrg) {
|
||||
this.kodeUnitOrg = kodeUnitOrg;
|
||||
}
|
||||
|
||||
public String getKetUnitOrg() {
|
||||
return ketUnitOrg;
|
||||
}
|
||||
|
||||
public void setKetUnitOrg(String ketUnitOrg) {
|
||||
this.ketUnitOrg = ketUnitOrg;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -1,43 +1,21 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class UnitPengelolaPrakarsaSuratVO extends BaseMasterVO {
|
||||
|
||||
public class UnitPengelolaPrakarsaSuratVO extends BaseMasterVO{
|
||||
private UnitPengelolaPrakarsaSuratVO unitPengelolaPrakarsaSurat;
|
||||
|
||||
private Integer unitPengelolaPrakarsaSuratId;
|
||||
|
||||
private String unitKerja;
|
||||
|
||||
private String kodeUnitPengelolaPrakarsaSurat;
|
||||
|
||||
protected Integer id;
|
||||
|
||||
public UnitPengelolaPrakarsaSuratVO getUnitPengelolaPrakarsaSurat() {
|
||||
return unitPengelolaPrakarsaSurat;
|
||||
}
|
||||
public void setUnitPengelolaPrakarsaSurat(UnitPengelolaPrakarsaSuratVO unitPengelolaPrakarsaSurat) {
|
||||
this.unitPengelolaPrakarsaSurat = unitPengelolaPrakarsaSurat;
|
||||
}
|
||||
public Integer getUnitPengelolaPrakarsaSuratId() {
|
||||
return unitPengelolaPrakarsaSuratId;
|
||||
}
|
||||
public void setUnitPengelolaPrakarsaSuratId(Integer unitPengelolaPrakarsaSuratId) {
|
||||
this.unitPengelolaPrakarsaSuratId = unitPengelolaPrakarsaSuratId;
|
||||
}
|
||||
public String getUnitKerja() {
|
||||
return unitKerja;
|
||||
}
|
||||
public void setUnitKerja(String unitKerja) {
|
||||
this.unitKerja = unitKerja;
|
||||
}
|
||||
public String getKodeUnitPengelolaPrakarsaSurat() {
|
||||
return kodeUnitPengelolaPrakarsaSurat;
|
||||
}
|
||||
public void setKodeUnitPengelolaPrakarsaSurat(String kodeUnitPengelolaPrakarsaSurat) {
|
||||
this.kodeUnitPengelolaPrakarsaSurat = kodeUnitPengelolaPrakarsaSurat;
|
||||
}
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -1,19 +1,15 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class UpdateJadwalVO {
|
||||
|
||||
private Set<MapKartuPengendaliToMetodeSubDetailVO> listJadwal=new HashSet<MapKartuPengendaliToMetodeSubDetailVO>();
|
||||
|
||||
public Set<MapKartuPengendaliToMetodeSubDetailVO> getListJadwal() {
|
||||
return listJadwal;
|
||||
}
|
||||
private Set<MapKartuPengendaliToMetodeSubDetailVO> listJadwal = new HashSet<>();
|
||||
|
||||
public void setListJadwal(Set<MapKartuPengendaliToMetodeSubDetailVO> listJadwal) {
|
||||
this.listJadwal = listJadwal;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -1,46 +1,23 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Table;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
|
||||
/**
|
||||
* class Agama
|
||||
* class Agama
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
//@Entity
|
||||
//@Table(name = "Agama_M")
|
||||
@Getter
|
||||
@Setter
|
||||
public class UploadAbsenVO {
|
||||
|
||||
|
||||
|
||||
private String idFingerPrint;
|
||||
|
||||
private Date jamMasuk;
|
||||
|
||||
private Date jamKeluar;
|
||||
public String getIdFingerPrint() {
|
||||
return idFingerPrint;
|
||||
}
|
||||
public void setIdFingerPrint(String idFingerPrint) {
|
||||
this.idFingerPrint = idFingerPrint;
|
||||
}
|
||||
public Date getJamMasuk() {
|
||||
return jamMasuk;
|
||||
}
|
||||
public void setJamMasuk(Date jamMasuk) {
|
||||
this.jamMasuk = jamMasuk;
|
||||
}
|
||||
public Date getJamKeluar() {
|
||||
return jamKeluar;
|
||||
}
|
||||
public void setJamKeluar(Date jamKeluar) {
|
||||
this.jamKeluar = jamKeluar;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,137 +1,47 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.ManyToOne;
|
||||
import javax.persistence.Table;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
|
||||
/**
|
||||
* class Agama
|
||||
* class UploadExcelVO
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
//@Entity
|
||||
//@Table(name = "Agama_M")
|
||||
@Getter
|
||||
@Setter
|
||||
public class UploadExcelVO {
|
||||
|
||||
@Caption(value="no Sppb")
|
||||
|
||||
@Caption(value = "no Sppb")
|
||||
private String noSppb;
|
||||
|
||||
@Caption(value="no Kontrak")
|
||||
|
||||
@Caption(value = "no Kontrak")
|
||||
private String noKontrak;
|
||||
|
||||
@Caption(value="Tanggal Terima")
|
||||
|
||||
@Caption(value = "Tanggal Terima")
|
||||
private Date tanggalTerima;
|
||||
|
||||
@Caption(value="no Faktur")
|
||||
|
||||
@Caption(value = "no Faktur")
|
||||
private String noFaktur;
|
||||
|
||||
@Caption(value="Tanggal Faktur")
|
||||
|
||||
@Caption(value = "Tanggal Faktur")
|
||||
private Date tanggalFaktur;
|
||||
|
||||
@Caption(value="Tanggal Jatuh Tempo")
|
||||
|
||||
@Caption(value = "Tanggal Jatuh Tempo")
|
||||
private Date tanggalJatuhTempo;
|
||||
|
||||
@Caption(value="Tanggal Jatuh Tempo")
|
||||
|
||||
@Caption(value = "Tanggal Jatuh Tempo")
|
||||
private Double totalBeaMaterai;
|
||||
|
||||
@ManyToOne
|
||||
@Caption(value="Supplier")
|
||||
|
||||
@Caption(value = "Supplier")
|
||||
private RekananVO supplier;
|
||||
|
||||
@ManyToOne
|
||||
@Caption(value="ruangan")
|
||||
|
||||
@Caption(value = "ruangan")
|
||||
private RuanganVO ruangan;
|
||||
|
||||
|
||||
|
||||
private String fileInput;
|
||||
|
||||
public String getFileInput() {
|
||||
return fileInput;
|
||||
}
|
||||
|
||||
public void setFileInput(String fileInput) {
|
||||
this.fileInput = fileInput;
|
||||
}
|
||||
|
||||
public String getNoSppb() {
|
||||
return noSppb;
|
||||
}
|
||||
|
||||
public void setNoSppb(String noSppb) {
|
||||
this.noSppb = noSppb;
|
||||
}
|
||||
|
||||
public String getNoKontrak() {
|
||||
return noKontrak;
|
||||
}
|
||||
|
||||
public void setNoKontrak(String noKontrak) {
|
||||
this.noKontrak = noKontrak;
|
||||
}
|
||||
|
||||
public Date getTanggalTerima() {
|
||||
return tanggalTerima;
|
||||
}
|
||||
|
||||
public void setTanggalTerima(Date tanggalTerima) {
|
||||
this.tanggalTerima = tanggalTerima;
|
||||
}
|
||||
|
||||
public String getNoFaktur() {
|
||||
return noFaktur;
|
||||
}
|
||||
|
||||
public void setNoFaktur(String noFaktur) {
|
||||
this.noFaktur = noFaktur;
|
||||
}
|
||||
|
||||
public Date getTanggalFaktur() {
|
||||
return tanggalFaktur;
|
||||
}
|
||||
|
||||
public void setTanggalFaktur(Date tanggalFaktur) {
|
||||
this.tanggalFaktur = tanggalFaktur;
|
||||
}
|
||||
|
||||
public Date getTanggalJatuhTempo() {
|
||||
return tanggalJatuhTempo;
|
||||
}
|
||||
|
||||
public void setTanggalJatuhTempo(Date tanggalJatuhTempo) {
|
||||
this.tanggalJatuhTempo = tanggalJatuhTempo;
|
||||
}
|
||||
|
||||
public Double getTotalBeaMaterai() {
|
||||
return totalBeaMaterai;
|
||||
}
|
||||
|
||||
public void setTotalBeaMaterai(Double totalBeaMaterai) {
|
||||
this.totalBeaMaterai = totalBeaMaterai;
|
||||
}
|
||||
|
||||
public RekananVO getSupplier() {
|
||||
return supplier;
|
||||
}
|
||||
|
||||
public void setSupplier(RekananVO supplier) {
|
||||
this.supplier = supplier;
|
||||
}
|
||||
|
||||
public RuanganVO getRuangan() {
|
||||
return ruangan;
|
||||
}
|
||||
|
||||
public void setRuangan(RuanganVO ruangan) {
|
||||
this.ruangan = ruangan;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,15 +1,12 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class UploadFilesVO {
|
||||
|
||||
private String fileInput;
|
||||
|
||||
public String getFileInput() {
|
||||
return fileInput;
|
||||
}
|
||||
|
||||
public void setFileInput(String fileInput) {
|
||||
this.fileInput = fileInput;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -1,26 +1,15 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseModelVO;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
public class UploadImageVO extends BaseModelVO{
|
||||
@Getter
|
||||
@Setter
|
||||
public class UploadImageVO extends BaseModelVO {
|
||||
|
||||
private String imageEncode;
|
||||
|
||||
|
||||
private String noRegistrasi;
|
||||
|
||||
public String getImageEncode() {
|
||||
return imageEncode;
|
||||
}
|
||||
|
||||
public void setImageEncode(String imageEncode) {
|
||||
this.imageEncode = imageEncode;
|
||||
}
|
||||
|
||||
public String getNoRegistrasi() {
|
||||
return noRegistrasi;
|
||||
}
|
||||
|
||||
public void setNoRegistrasi(String noRegistrasi) {
|
||||
this.noRegistrasi = noRegistrasi;
|
||||
}
|
||||
}
|
||||
|
||||
@ -1,31 +1,21 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Table;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
|
||||
/**
|
||||
* class Agama
|
||||
* class Agama
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
//@Entity
|
||||
//@Table(name = "Agama_M")
|
||||
@Getter
|
||||
@Setter
|
||||
public class UploadVO extends BaseMasterVO {
|
||||
private List<String> data = new ArrayList<String>();
|
||||
|
||||
public List<String> getData() {
|
||||
return data;
|
||||
}
|
||||
private List<String> data = new ArrayList<>();
|
||||
|
||||
public void setData(List<String> data) {
|
||||
this.data = data;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -1,48 +1,20 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.FetchType;
|
||||
import javax.persistence.JoinColumn;
|
||||
import javax.persistence.ManyToOne;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
public class UraianKegiatanVO extends BaseMasterVO{
|
||||
@Getter
|
||||
@Setter
|
||||
public class UraianKegiatanVO extends BaseMasterVO {
|
||||
|
||||
@Caption(value = "Nama Uraian Kegiatan")
|
||||
private String namaUraianKegiatan;
|
||||
|
||||
@ManyToOne(fetch = FetchType.LAZY, optional = true)
|
||||
@JoinColumn(name = "objectprogramkegiatanfk", nullable = true)
|
||||
|
||||
@Caption(value = "Program Kegiatan")
|
||||
private ProgramKegiatanVO programKegiatan;
|
||||
|
||||
@Column(name = "objectprogramkegiatanfk", insertable = false, updatable = false, nullable = true)
|
||||
|
||||
private Integer idProgramKegiatan;
|
||||
|
||||
public String getNamaUraianKegiatan() {
|
||||
return namaUraianKegiatan;
|
||||
}
|
||||
|
||||
public void setNamaUraianKegiatan(String namaUraianKegiatan) {
|
||||
this.namaUraianKegiatan = namaUraianKegiatan;
|
||||
}
|
||||
|
||||
public ProgramKegiatanVO getProgramKegiatan() {
|
||||
return programKegiatan;
|
||||
}
|
||||
|
||||
public void setProgramKegiatan(ProgramKegiatanVO programKegiatan) {
|
||||
this.programKegiatan = programKegiatan;
|
||||
}
|
||||
|
||||
public Integer getIdProgramKegiatan() {
|
||||
return idProgramKegiatan;
|
||||
}
|
||||
|
||||
public void setIdProgramKegiatan(Integer idProgramKegiatan) {
|
||||
this.idProgramKegiatan = idProgramKegiatan;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -1,28 +1,18 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
||||
import javax.persistence.CascadeType;
|
||||
import javax.persistence.FetchType;
|
||||
import javax.persistence.OneToMany;
|
||||
@Getter
|
||||
@Setter
|
||||
public class UraianTugasCustomVO extends BaseTransactionVO {
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
|
||||
public class UraianTugasCustomVO extends BaseTransactionVO{
|
||||
|
||||
|
||||
@OneToMany(cascade=CascadeType.ALL,fetch = FetchType.LAZY)
|
||||
@Caption(value="Object detailUraianTugas")
|
||||
private Set<UraianTugasTransaksiVO> uraianTugas=new HashSet<UraianTugasTransaksiVO>();
|
||||
|
||||
public Set<UraianTugasTransaksiVO> getUraianTugas() {
|
||||
return uraianTugas;
|
||||
}
|
||||
|
||||
public void setUraianTugas(Set<UraianTugasTransaksiVO> uraianTugas) {
|
||||
this.uraianTugas = uraianTugas;
|
||||
}
|
||||
@Caption(value = "Object detailUraianTugas")
|
||||
private Set<UraianTugasTransaksiVO> uraianTugas = new HashSet<>();
|
||||
|
||||
}
|
||||
|
||||
@ -1,90 +1,29 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
@Getter
|
||||
@Setter
|
||||
public class UraianTugasFlexibleVO extends BaseTransactionVO {
|
||||
|
||||
|
||||
public class UraianTugasFlexibleVO extends BaseTransactionVO{
|
||||
|
||||
private PegawaiVO pegawai;
|
||||
|
||||
|
||||
private PegawaiVO atasan;
|
||||
|
||||
|
||||
private Boolean approvalStatus;
|
||||
|
||||
|
||||
private String rincianKegiatan;
|
||||
|
||||
|
||||
private String satuan;
|
||||
|
||||
|
||||
private Integer waktu;
|
||||
|
||||
|
||||
private Integer volume;
|
||||
|
||||
|
||||
private Date tgl;
|
||||
|
||||
public PegawaiVO getPegawai() {
|
||||
return pegawai;
|
||||
}
|
||||
|
||||
public void setPegawai(PegawaiVO pegawai) {
|
||||
this.pegawai = pegawai;
|
||||
}
|
||||
|
||||
public PegawaiVO getAtasan() {
|
||||
return atasan;
|
||||
}
|
||||
|
||||
public void setAtasan(PegawaiVO atasan) {
|
||||
this.atasan = atasan;
|
||||
}
|
||||
|
||||
public Boolean getApprovalStatus() {
|
||||
return approvalStatus;
|
||||
}
|
||||
|
||||
public void setApprovalStatus(Boolean approvalStatus) {
|
||||
this.approvalStatus = approvalStatus;
|
||||
}
|
||||
|
||||
public String getRincianKegiatan() {
|
||||
return rincianKegiatan;
|
||||
}
|
||||
|
||||
public void setRincianKegiatan(String rincianKegiatan) {
|
||||
this.rincianKegiatan = rincianKegiatan;
|
||||
}
|
||||
|
||||
public String getSatuan() {
|
||||
return satuan;
|
||||
}
|
||||
|
||||
public void setSatuan(String satuan) {
|
||||
this.satuan = satuan;
|
||||
}
|
||||
|
||||
public Integer getWaktu() {
|
||||
return waktu;
|
||||
}
|
||||
|
||||
public void setWaktu(Integer waktu) {
|
||||
this.waktu = waktu;
|
||||
}
|
||||
|
||||
public Integer getVolume() {
|
||||
return volume;
|
||||
}
|
||||
|
||||
public void setVolume(Integer volume) {
|
||||
this.volume = volume;
|
||||
}
|
||||
|
||||
public Date getTgl() {
|
||||
return tgl;
|
||||
}
|
||||
|
||||
public void setTgl(Date tgl) {
|
||||
this.tgl = tgl;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -1,122 +1,38 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.JoinColumn;
|
||||
import javax.persistence.ManyToOne;
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class UraianTugasMVO extends BaseMasterVO {
|
||||
|
||||
@Caption(value = "periode")
|
||||
@NotNull(message = "Periode tidak boleh kosong")
|
||||
@Column(name = "periode", nullable = true)
|
||||
private String periode;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectJabatanFk")
|
||||
@Caption(value = "Object Jabatan")
|
||||
private JabatanVO jabatan;
|
||||
|
||||
@Column(name = "ObjectJabatanFk", insertable = false, updatable = false, nullable = true)
|
||||
private Integer jabatanId;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectRincianTugasFk")
|
||||
@Caption(value = "Object Rincian Tugas")
|
||||
private RincianKegiatanVO rincianKegiatan;
|
||||
|
||||
@Column(name = "ObjectRincianTugasFk", insertable = false, updatable = false, nullable = true)
|
||||
private Integer rincianKegiatanId;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectDokumenFk")
|
||||
@Caption(value = "Object Dokumen Tugas")
|
||||
private DokumenVO dokumen;
|
||||
|
||||
@Column(name = "ObjectDokumenFk", insertable = false, updatable = false, nullable = true)
|
||||
private Integer dokumenId;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectPelaksanaanTugasFk")
|
||||
@Caption(value = "Object Pelaksanaan Tugas")
|
||||
private PelaksanaanTugasVO pelaksanaanTugas;
|
||||
|
||||
@Column(name = "ObjectPelaksanaanTugasFk", insertable = false, updatable = false, nullable = true)
|
||||
private Integer pelaksanaanTugasId;
|
||||
|
||||
public String getPeriode() {
|
||||
return periode;
|
||||
}
|
||||
|
||||
public void setPeriode(String periode) {
|
||||
this.periode = periode;
|
||||
}
|
||||
|
||||
public JabatanVO getJabatan() {
|
||||
return jabatan;
|
||||
}
|
||||
|
||||
public void setJabatan(JabatanVO jabatan) {
|
||||
this.jabatan = jabatan;
|
||||
}
|
||||
|
||||
public Integer getJabatanId() {
|
||||
return jabatanId;
|
||||
}
|
||||
|
||||
public void setJabatanId(Integer jabatanId) {
|
||||
this.jabatanId = jabatanId;
|
||||
}
|
||||
|
||||
public RincianKegiatanVO getRincianKegiatan() {
|
||||
return rincianKegiatan;
|
||||
}
|
||||
|
||||
public void setRincianKegiatan(RincianKegiatanVO rincianKegiatan) {
|
||||
this.rincianKegiatan = rincianKegiatan;
|
||||
}
|
||||
|
||||
public Integer getRincianKegiatanId() {
|
||||
return rincianKegiatanId;
|
||||
}
|
||||
|
||||
public void setRincianKegiatanId(Integer rincianKegiatanId) {
|
||||
this.rincianKegiatanId = rincianKegiatanId;
|
||||
}
|
||||
|
||||
public DokumenVO getDokumen() {
|
||||
return dokumen;
|
||||
}
|
||||
|
||||
public void setDokumen(DokumenVO dokumen) {
|
||||
this.dokumen = dokumen;
|
||||
}
|
||||
|
||||
public Integer getDokumenId() {
|
||||
return dokumenId;
|
||||
}
|
||||
|
||||
public void setDokumenId(Integer dokumenId) {
|
||||
this.dokumenId = dokumenId;
|
||||
}
|
||||
|
||||
public PelaksanaanTugasVO getPelaksanaanTugas() {
|
||||
return pelaksanaanTugas;
|
||||
}
|
||||
|
||||
public void setPelaksanaanTugas(PelaksanaanTugasVO pelaksanaanTugas) {
|
||||
this.pelaksanaanTugas = pelaksanaanTugas;
|
||||
}
|
||||
|
||||
public Integer getPelaksanaanTugasId() {
|
||||
return pelaksanaanTugasId;
|
||||
}
|
||||
|
||||
public void setPelaksanaanTugasId(Integer pelaksanaanTugasId) {
|
||||
this.pelaksanaanTugasId = pelaksanaanTugasId;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -1,82 +1,40 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.JoinColumn;
|
||||
import javax.persistence.ManyToOne;
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
/**
|
||||
* class UraianTugasVOVO
|
||||
* class UraianTugasVOVO
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
public class UraianTugasVO 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 ;
|
||||
}
|
||||
@Getter
|
||||
@Setter
|
||||
public class UraianTugasVO extends BaseTransactionVO {
|
||||
|
||||
@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 ;
|
||||
}
|
||||
@Caption(value = "Id")
|
||||
private Integer id;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "KategoryTugasFk")
|
||||
@NotNull(message = "Kategory Tugas Harus Diisi")
|
||||
@Caption(value = "Kategory Tugas")
|
||||
@Caption(value = "Name")
|
||||
private String name;
|
||||
|
||||
@NotNull(message = "Kategory Tugas Harus Diisi")
|
||||
@Caption(value = "Kategory Tugas")
|
||||
private KategoryTugasVO kategoryTugas;
|
||||
public KategoryTugasVO getKategoryTugas() {
|
||||
return kategoryTugas;
|
||||
}
|
||||
public void setKategoryTugas(KategoryTugasVO kategoryTugas) {
|
||||
this.kategoryTugas = kategoryTugas;
|
||||
}
|
||||
@Column(name = "KategoryTugasFk", insertable=false,updatable=false)
|
||||
|
||||
private String kategoryTugasId;
|
||||
|
||||
@Column(name = "Query", nullable = false , length = 100)
|
||||
@Caption(value = "Query")
|
||||
private String query ;
|
||||
public String getQuery() {
|
||||
return query ;
|
||||
}
|
||||
public void setQuery(String query ) {
|
||||
this.query = query ;
|
||||
}
|
||||
@Caption(value = "Query")
|
||||
private String query;
|
||||
|
||||
@Column(name = "TargetPerMonth", nullable = false , length = 100)
|
||||
@Caption(value = "TargetPerMonth")
|
||||
private Integer targetPerMonth ;
|
||||
public Integer getTargetPerMonth() {
|
||||
return targetPerMonth ;
|
||||
}
|
||||
public void setTargetPerMonth(Integer targetPerMonth ) {
|
||||
this.targetPerMonth = targetPerMonth ;
|
||||
}
|
||||
|
||||
@Column(name = "Bobot", nullable = false , length = 100)
|
||||
@Caption(value = "Bobot")
|
||||
private Integer bobot ;
|
||||
public Integer getBobot() {
|
||||
return bobot ;
|
||||
}
|
||||
public void setBobot(Integer bobot ) {
|
||||
this.bobot = bobot ;
|
||||
}
|
||||
@Caption(value = "TargetPerMonth")
|
||||
private Integer targetPerMonth;
|
||||
|
||||
@Caption(value = "Bobot")
|
||||
private Integer bobot;
|
||||
|
||||
}
|
||||
@ -1,26 +1,18 @@
|
||||
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.BaseMaster;
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class UrinAlatGenitaliaVO 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;
|
||||
}
|
||||
|
||||
}
|
||||
@ -1,25 +1,18 @@
|
||||
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.BaseMaster;
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class UrinBakVO 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;
|
||||
}
|
||||
}
|
||||
@ -1,34 +1,23 @@
|
||||
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;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
/**
|
||||
* class Urin
|
||||
* class Urin
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
//@Entity
|
||||
//@Table(name = "RM_Urin_M")
|
||||
@Getter
|
||||
@Setter
|
||||
public class UrinVO extends BaseMasterVO {
|
||||
@NotNull(message="Name tidak boleh kosong")
|
||||
@Column(name = "Name", nullable = false, length = 100)
|
||||
|
||||
@NotNull(message = "Name tidak boleh kosong")
|
||||
@Caption(value = "Name")
|
||||
private String name;
|
||||
public void setName(String name)
|
||||
{
|
||||
this.name = name;
|
||||
}
|
||||
public String getName()
|
||||
{
|
||||
return this.name;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
@ -1,34 +1,23 @@
|
||||
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;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
/**
|
||||
* class UsahaPenguguran
|
||||
* class UsahaPenguguran
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
//@Entity
|
||||
//@Table(name = "RM_UsahaPenguguran_M")
|
||||
@Getter
|
||||
@Setter
|
||||
public class UsahaPenguguranVO extends BaseMasterVO {
|
||||
@NotNull(message="Name tidak boleh kosong")
|
||||
@Column(name = "Name", nullable = false, length = 100)
|
||||
|
||||
@NotNull(message = "Name tidak boleh kosong")
|
||||
@Caption(value = "Name")
|
||||
private String name;
|
||||
public void setName(String name)
|
||||
{
|
||||
this.name = name;
|
||||
}
|
||||
public String getName()
|
||||
{
|
||||
return this.name;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
@ -1,23 +1,15 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import javax.persistence.Column;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class UsiaAsetVO extends BaseMasterVO {
|
||||
|
||||
public class UsiaAsetVO extends BaseMasterVO{
|
||||
|
||||
@Column(name = "UsiaAset", nullable = false, length = 100)
|
||||
@Caption(value = "Usia Aset")
|
||||
private String usiaAset;
|
||||
|
||||
public String getUsiaAset() {
|
||||
return usiaAset;
|
||||
}
|
||||
|
||||
public void setUsiaAset(String usiaAset) {
|
||||
this.usiaAset = usiaAset;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -1,46 +1,21 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import javax.persistence.FetchType;
|
||||
import javax.persistence.ManyToOne;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
public class UskomJenisPemeriksaanVO extends BaseTransactionVO{
|
||||
@Getter
|
||||
@Setter
|
||||
public class UskomJenisPemeriksaanVO extends BaseTransactionVO {
|
||||
|
||||
@ManyToOne(fetch=FetchType.LAZY)
|
||||
@Caption(value="Uskom List Pemeriksaan FK")
|
||||
@Caption(value = "Uskom List Pemeriksaan FK")
|
||||
private UskomListPemeriksaanVO uskomListPemeriksaan;
|
||||
|
||||
@Caption(value="Nilai")
|
||||
|
||||
@Caption(value = "Nilai")
|
||||
private String nilai;
|
||||
|
||||
@ManyToOne(fetch=FetchType.LAZY)
|
||||
@Caption(value="Uskom Nilai Normal FK")
|
||||
|
||||
@Caption(value = "Uskom Nilai Normal FK")
|
||||
private UskomNilaiNormalVO uskomNilaiNormal;
|
||||
|
||||
public UskomListPemeriksaanVO getUskomListPemeriksaan() {
|
||||
return uskomListPemeriksaan;
|
||||
}
|
||||
|
||||
public void setUskomListPemeriksaan(UskomListPemeriksaanVO uskomListPemeriksaan) {
|
||||
this.uskomListPemeriksaan = uskomListPemeriksaan;
|
||||
}
|
||||
|
||||
public String getNilai() {
|
||||
return nilai;
|
||||
}
|
||||
|
||||
public void setNilai(String nilai) {
|
||||
this.nilai = nilai;
|
||||
}
|
||||
|
||||
public UskomNilaiNormalVO getUskomNilaiNormal() {
|
||||
return uskomNilaiNormal;
|
||||
}
|
||||
|
||||
public void setUskomNilaiNormal(UskomNilaiNormalVO uskomNilaiNormal) {
|
||||
this.uskomNilaiNormal = uskomNilaiNormal;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -1,107 +1,39 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
||||
import javax.persistence.CascadeType;
|
||||
import javax.persistence.FetchType;
|
||||
import javax.persistence.ManyToOne;
|
||||
import javax.persistence.OneToMany;
|
||||
@Getter
|
||||
@Setter
|
||||
public class UskomListPemeriksaanVO extends BaseTransactionVO {
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
|
||||
public class UskomListPemeriksaanVO extends BaseTransactionVO{
|
||||
|
||||
@ManyToOne(fetch=FetchType.LAZY)
|
||||
@Caption(value="Uskom Pemeriksaan FK")
|
||||
@Caption(value = "Uskom Pemeriksaan FK")
|
||||
private UskomPemeriksaanVO uskomPemeriksaan;
|
||||
|
||||
@Caption(value="Tanggal")
|
||||
|
||||
@Caption(value = "Tanggal")
|
||||
private Date tanggal;
|
||||
|
||||
@Caption(value="Sistole/Distole")
|
||||
|
||||
@Caption(value = "Sistole/Distole")
|
||||
private String sistoleDistole;
|
||||
|
||||
@Caption(value="FrekuensiNadi")
|
||||
|
||||
@Caption(value = "FrekuensiNadi")
|
||||
private String frekuensiNadi;
|
||||
|
||||
@Caption(value="Saturasi")
|
||||
|
||||
@Caption(value = "Saturasi")
|
||||
private String saturasi;
|
||||
|
||||
@Caption(value="Hemoglobin")
|
||||
|
||||
@Caption(value = "Hemoglobin")
|
||||
private String hemoglobin;
|
||||
|
||||
@OneToMany(cascade=CascadeType.ALL, fetch=FetchType.LAZY, mappedBy="uskomListPemeriksaan")
|
||||
|
||||
private Set<UskomJenisPemeriksaanVO> uskomJenisPemeriksaan = new HashSet<>();
|
||||
|
||||
@ManyToOne(fetch=FetchType.LAZY)
|
||||
@Caption(value="Pegawai FK")
|
||||
|
||||
@Caption(value = "Pegawai FK")
|
||||
private PegawaiVO pegawai;
|
||||
|
||||
public UskomPemeriksaanVO getUskomPemeriksaan() {
|
||||
return uskomPemeriksaan;
|
||||
}
|
||||
|
||||
public void setUskomPemeriksaan(UskomPemeriksaanVO uskomPemeriksaan) {
|
||||
this.uskomPemeriksaan = uskomPemeriksaan;
|
||||
}
|
||||
|
||||
public Date getTanggal() {
|
||||
return tanggal;
|
||||
}
|
||||
|
||||
public void setTanggal(Date tanggal) {
|
||||
this.tanggal = tanggal;
|
||||
}
|
||||
|
||||
public String getSistoleDistole() {
|
||||
return sistoleDistole;
|
||||
}
|
||||
|
||||
public void setSistoleDistole(String sistoleDistole) {
|
||||
this.sistoleDistole = sistoleDistole;
|
||||
}
|
||||
|
||||
public String getFrekuensiNadi() {
|
||||
return frekuensiNadi;
|
||||
}
|
||||
|
||||
public void setFrekuensiNadi(String frekuensiNadi) {
|
||||
this.frekuensiNadi = frekuensiNadi;
|
||||
}
|
||||
|
||||
public String getSaturasi() {
|
||||
return saturasi;
|
||||
}
|
||||
|
||||
public void setSaturasi(String saturasi) {
|
||||
this.saturasi = saturasi;
|
||||
}
|
||||
|
||||
public String getHemoglobin() {
|
||||
return hemoglobin;
|
||||
}
|
||||
|
||||
public void setHemoglobin(String hemoglobin) {
|
||||
this.hemoglobin = hemoglobin;
|
||||
}
|
||||
|
||||
public Set<UskomJenisPemeriksaanVO> getUskomJenisPemeriksaan() {
|
||||
return uskomJenisPemeriksaan;
|
||||
}
|
||||
|
||||
public void setUskomJenisPemeriksaan(Set<UskomJenisPemeriksaanVO> uskomJenisPemeriksaan) {
|
||||
this.uskomJenisPemeriksaan = uskomJenisPemeriksaan;
|
||||
}
|
||||
|
||||
public PegawaiVO getPegawai() {
|
||||
return pegawai;
|
||||
}
|
||||
|
||||
public void setPegawai(PegawaiVO pegawai) {
|
||||
this.pegawai = pegawai;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -1,64 +1,27 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
public class UskomNilaiNormalVO extends BaseMasterVO{
|
||||
@Getter
|
||||
@Setter
|
||||
public class UskomNilaiNormalVO extends BaseMasterVO {
|
||||
|
||||
@Caption(value="NilaiNormal")
|
||||
@Caption(value = "NilaiNormal")
|
||||
private String nilaiNormal;
|
||||
|
||||
@Caption(value="JenisPemeriksaan")
|
||||
|
||||
@Caption(value = "JenisPemeriksaan")
|
||||
private String jenisPemeriksaan;
|
||||
|
||||
@Caption(value="NamaKelompok")
|
||||
|
||||
@Caption(value = "NamaKelompok")
|
||||
private String namaKelompok;
|
||||
|
||||
@Caption(value="UsiaAwal")
|
||||
|
||||
@Caption(value = "UsiaAwal")
|
||||
private Integer usiaAwal;
|
||||
|
||||
@Caption(value="UsiaAkhir")
|
||||
|
||||
@Caption(value = "UsiaAkhir")
|
||||
private Integer usiaAkhir;
|
||||
|
||||
public String getNilaiNormal() {
|
||||
return nilaiNormal;
|
||||
}
|
||||
|
||||
public void setNilaiNormal(String nilaiNormal) {
|
||||
this.nilaiNormal = nilaiNormal;
|
||||
}
|
||||
|
||||
public String getJenisPemeriksaan() {
|
||||
return jenisPemeriksaan;
|
||||
}
|
||||
|
||||
public void setJenisPemeriksaan(String jenisPemeriksaan) {
|
||||
this.jenisPemeriksaan = jenisPemeriksaan;
|
||||
}
|
||||
|
||||
public String getNamaKelompok() {
|
||||
return namaKelompok;
|
||||
}
|
||||
|
||||
public void setNamaKelompok(String namaKelompok) {
|
||||
this.namaKelompok = namaKelompok;
|
||||
}
|
||||
|
||||
public Integer getUsiaAwal() {
|
||||
return usiaAwal;
|
||||
}
|
||||
|
||||
public void setUsiaAwal(Integer usiaAwal) {
|
||||
this.usiaAwal = usiaAwal;
|
||||
}
|
||||
|
||||
public Integer getUsiaAkhir() {
|
||||
return usiaAkhir;
|
||||
}
|
||||
|
||||
public void setUsiaAkhir(Integer usiaAkhir) {
|
||||
this.usiaAkhir = usiaAkhir;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -1,61 +1,26 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
||||
import javax.persistence.CascadeType;
|
||||
import javax.persistence.FetchType;
|
||||
import javax.persistence.ManyToOne;
|
||||
import javax.persistence.OneToMany;
|
||||
@Getter
|
||||
@Setter
|
||||
public class UskomPemeriksaanVO extends BaseTransactionVO {
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
|
||||
public class UskomPemeriksaanVO extends BaseTransactionVO{
|
||||
|
||||
@ManyToOne(fetch=FetchType.LAZY)
|
||||
@Caption(value="No Registrasi FK")
|
||||
@Caption(value = "No Registrasi FK")
|
||||
private AntrianPasienDiPeriksaVO noRegistrasi;
|
||||
|
||||
@Caption(value="Luas Permukaan Tubuh")
|
||||
|
||||
@Caption(value = "Luas Permukaan Tubuh")
|
||||
private String luasPermukaanTubuh;
|
||||
|
||||
@Caption(value="Diagnosa")
|
||||
|
||||
@Caption(value = "Diagnosa")
|
||||
private String diagnosa;
|
||||
|
||||
@OneToMany(cascade=CascadeType.ALL, fetch=FetchType.LAZY, mappedBy="uskomPemeriksaan")
|
||||
|
||||
private Set<UskomListPemeriksaanVO> uskomListPemeriksaan = new HashSet<>();
|
||||
|
||||
public AntrianPasienDiPeriksaVO getNoRegistrasi() {
|
||||
return noRegistrasi;
|
||||
}
|
||||
|
||||
public void setNoRegistrasi(AntrianPasienDiPeriksaVO noRegistrasi) {
|
||||
this.noRegistrasi = noRegistrasi;
|
||||
}
|
||||
|
||||
public String getLuasPermukaanTubuh() {
|
||||
return luasPermukaanTubuh;
|
||||
}
|
||||
|
||||
public void setLuasPermukaanTubuh(String luasPermukaanTubuh) {
|
||||
this.luasPermukaanTubuh = luasPermukaanTubuh;
|
||||
}
|
||||
|
||||
public String getDiagnosa() {
|
||||
return diagnosa;
|
||||
}
|
||||
|
||||
public void setDiagnosa(String diagnosa) {
|
||||
this.diagnosa = diagnosa;
|
||||
}
|
||||
|
||||
public Set<UskomListPemeriksaanVO> getUskomListPemeriksaan() {
|
||||
return uskomListPemeriksaan;
|
||||
}
|
||||
|
||||
public void setUskomListPemeriksaan(Set<UskomListPemeriksaanVO> uskomListPemeriksaan) {
|
||||
this.uskomListPemeriksaan = uskomListPemeriksaan;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -1,174 +1,54 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* class UsulanEvaluasiKomponenVO
|
||||
* class UsulanEvaluasiKomponenVO
|
||||
*
|
||||
* @author Lukman Hakim
|
||||
*/
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class UsulanEvaluasiKomponenVO extends BaseTransactionVO {
|
||||
|
||||
@Caption(value="Object Pegawai")
|
||||
|
||||
@Caption(value = "Object Pegawai")
|
||||
private PegawaiVO pegawaiRekomendasi;
|
||||
|
||||
|
||||
private Integer pegawaiRekomendasiFK;
|
||||
|
||||
@Caption(value="Object Ruangan Tujuan")
|
||||
|
||||
@Caption(value = "Object Ruangan Tujuan")
|
||||
private RuanganVO ruanganTujuan;
|
||||
|
||||
|
||||
private Integer ruanganTujuanId;
|
||||
|
||||
@Caption(value="Object Usulan Evaluasi")
|
||||
|
||||
@Caption(value = "Object Usulan Evaluasi")
|
||||
private UsulanEvaluasiVO usulanEvaluasi;
|
||||
|
||||
|
||||
private String usulanEvaluasiFK;
|
||||
|
||||
|
||||
private Boolean status;
|
||||
|
||||
@Caption(value="Object Kelompok Evaluasi")
|
||||
|
||||
@Caption(value = "Object Kelompok Evaluasi")
|
||||
private KelompokEvaluasiVO kelompokEvaluasi;
|
||||
|
||||
|
||||
private Integer kelompokEvaluasiId;
|
||||
|
||||
@Caption(value="Object komponen Evaluasi")
|
||||
|
||||
@Caption(value = "Object komponen Evaluasi")
|
||||
private KomponenEvaluasiVO komponenEvaluasi;
|
||||
|
||||
|
||||
private Integer komponenEvaluasiId;
|
||||
|
||||
|
||||
private String kajian;
|
||||
|
||||
|
||||
private String usulan;
|
||||
|
||||
|
||||
private String rekomendasi;
|
||||
|
||||
|
||||
private Date tglRekomendasi;
|
||||
|
||||
public PegawaiVO getPegawaiRekomendasi() {
|
||||
return pegawaiRekomendasi;
|
||||
}
|
||||
|
||||
public void setPegawaiRekomendasi(PegawaiVO pegawaiRekomendasi) {
|
||||
this.pegawaiRekomendasi = pegawaiRekomendasi;
|
||||
}
|
||||
|
||||
public Integer getPegawaiRekomendasiFK() {
|
||||
return pegawaiRekomendasiFK;
|
||||
}
|
||||
|
||||
public void setPegawaiRekomendasiFK(Integer pegawaiRekomendasiFK) {
|
||||
this.pegawaiRekomendasiFK = pegawaiRekomendasiFK;
|
||||
}
|
||||
|
||||
public RuanganVO getRuanganTujuan() {
|
||||
return ruanganTujuan;
|
||||
}
|
||||
|
||||
public void setRuanganTujuan(RuanganVO ruanganTujuan) {
|
||||
this.ruanganTujuan = ruanganTujuan;
|
||||
}
|
||||
|
||||
public Integer getRuanganTujuanId() {
|
||||
return ruanganTujuanId;
|
||||
}
|
||||
|
||||
public void setRuanganTujuanId(Integer ruanganTujuanId) {
|
||||
this.ruanganTujuanId = ruanganTujuanId;
|
||||
}
|
||||
|
||||
public UsulanEvaluasiVO getUsulanEvaluasi() {
|
||||
return usulanEvaluasi;
|
||||
}
|
||||
|
||||
public void setUsulanEvaluasi(UsulanEvaluasiVO usulanEvaluasi) {
|
||||
this.usulanEvaluasi = usulanEvaluasi;
|
||||
}
|
||||
|
||||
public String getUsulanEvaluasiFK() {
|
||||
return usulanEvaluasiFK;
|
||||
}
|
||||
|
||||
public void setUsulanEvaluasiFK(String usulanEvaluasiFK) {
|
||||
this.usulanEvaluasiFK = usulanEvaluasiFK;
|
||||
}
|
||||
|
||||
public Boolean getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(Boolean status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public KelompokEvaluasiVO getKelompokEvaluasi() {
|
||||
return kelompokEvaluasi;
|
||||
}
|
||||
|
||||
public void setKelompokEvaluasi(KelompokEvaluasiVO kelompokEvaluasi) {
|
||||
this.kelompokEvaluasi = kelompokEvaluasi;
|
||||
}
|
||||
|
||||
public Integer getKelompokEvaluasiId() {
|
||||
return kelompokEvaluasiId;
|
||||
}
|
||||
|
||||
public void setKelompokEvaluasiId(Integer kelompokEvaluasiId) {
|
||||
this.kelompokEvaluasiId = kelompokEvaluasiId;
|
||||
}
|
||||
|
||||
public KomponenEvaluasiVO getKomponenEvaluasi() {
|
||||
return komponenEvaluasi;
|
||||
}
|
||||
|
||||
public void setKomponenEvaluasi(KomponenEvaluasiVO komponenEvaluasi) {
|
||||
this.komponenEvaluasi = komponenEvaluasi;
|
||||
}
|
||||
|
||||
public Integer getKomponenEvaluasiId() {
|
||||
return komponenEvaluasiId;
|
||||
}
|
||||
|
||||
public void setKomponenEvaluasiId(Integer komponenEvaluasiId) {
|
||||
this.komponenEvaluasiId = komponenEvaluasiId;
|
||||
}
|
||||
|
||||
public String getKajian() {
|
||||
return kajian;
|
||||
}
|
||||
|
||||
public void setKajian(String kajian) {
|
||||
this.kajian = kajian;
|
||||
}
|
||||
|
||||
public String getUsulan() {
|
||||
return usulan;
|
||||
}
|
||||
|
||||
public void setUsulan(String usulan) {
|
||||
this.usulan = usulan;
|
||||
}
|
||||
|
||||
public String getRekomendasi() {
|
||||
return rekomendasi;
|
||||
}
|
||||
|
||||
public void setRekomendasi(String rekomendasi) {
|
||||
this.rekomendasi = rekomendasi;
|
||||
}
|
||||
|
||||
public Date getTglRekomendasi() {
|
||||
return tglRekomendasi;
|
||||
}
|
||||
|
||||
public void setTglRekomendasi(Date tglRekomendasi) {
|
||||
this.tglRekomendasi = tglRekomendasi;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,185 +1,59 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
|
||||
/**
|
||||
* class UsulanEvaluasiVO
|
||||
* class UsulanEvaluasiVO
|
||||
*
|
||||
* @author Lukman Hakim
|
||||
*/
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class UsulanEvaluasiVO extends BaseTransactionVO {
|
||||
|
||||
@Caption(value = "noUsulan")
|
||||
private String noUsulan;
|
||||
|
||||
@Caption(value = "Tgl Usu")
|
||||
private Date tglUsulan;
|
||||
|
||||
|
||||
@Caption(value = "Tgl Usulan")
|
||||
private String namaUsulan;
|
||||
|
||||
@Caption(value="Object Kelompok Evaluasi")
|
||||
|
||||
@Caption(value = "Object Kelompok Evaluasi")
|
||||
private KelompokEvaluasiVO kelompokEvaluasi;
|
||||
|
||||
|
||||
private Integer kelompokEvaluasiId;
|
||||
|
||||
@Caption(value="Object Ruangan Pembuat")
|
||||
|
||||
@Caption(value = "Object Ruangan Pembuat")
|
||||
private RuanganVO ruanganPembuat;
|
||||
|
||||
|
||||
private Integer ruanganPembuatId;
|
||||
|
||||
@Caption(value="Object Pegawai Pembuat")
|
||||
|
||||
@Caption(value = "Object Pegawai Pembuat")
|
||||
private PegawaiVO pegawaiPembuat;
|
||||
|
||||
|
||||
private Integer pegawaiPembuatId;
|
||||
|
||||
|
||||
private Boolean status;
|
||||
|
||||
private Set<RuanganVO> ruanganTujuan = new HashSet<RuanganVO>();
|
||||
private Set<PegawaiVO> pegawai = new HashSet<PegawaiVO>();
|
||||
|
||||
private Set<UsulanEvaluasiKomponenVO> usulanEvaluasiKomponenVO = new HashSet<UsulanEvaluasiKomponenVO>();
|
||||
|
||||
private Set<RuanganVO> ruanganTujuan = new HashSet<>();
|
||||
|
||||
private Set<PegawaiVO> pegawai = new HashSet<>();
|
||||
|
||||
private Set<UsulanEvaluasiKomponenVO> usulanEvaluasiKomponenVO = new HashSet<>();
|
||||
|
||||
private RekananVO rekanan;
|
||||
|
||||
//File Upload
|
||||
|
||||
private String bodyFile;
|
||||
|
||||
|
||||
private String fileName;
|
||||
|
||||
public String getNoUsulan() {
|
||||
return noUsulan;
|
||||
}
|
||||
|
||||
public void setNoUsulan(String noUsulan) {
|
||||
this.noUsulan = noUsulan;
|
||||
}
|
||||
|
||||
public Date getTglUsulan() {
|
||||
return tglUsulan;
|
||||
}
|
||||
|
||||
public void setTglUsulan(Date tglUsulan) {
|
||||
this.tglUsulan = tglUsulan;
|
||||
}
|
||||
|
||||
public String getNamaUsulan() {
|
||||
return namaUsulan;
|
||||
}
|
||||
|
||||
public void setNamaUsulan(String namaUsulan) {
|
||||
this.namaUsulan = namaUsulan;
|
||||
}
|
||||
|
||||
public KelompokEvaluasiVO getKelompokEvaluasi() {
|
||||
return kelompokEvaluasi;
|
||||
}
|
||||
|
||||
public void setKelompokEvaluasi(KelompokEvaluasiVO kelompokEvaluasi) {
|
||||
this.kelompokEvaluasi = kelompokEvaluasi;
|
||||
}
|
||||
|
||||
public Integer getKelompokEvaluasiId() {
|
||||
return kelompokEvaluasiId;
|
||||
}
|
||||
|
||||
public void setKelompokEvaluasiId(Integer kelompokEvaluasiId) {
|
||||
this.kelompokEvaluasiId = kelompokEvaluasiId;
|
||||
}
|
||||
|
||||
public RuanganVO getRuanganPembuat() {
|
||||
return ruanganPembuat;
|
||||
}
|
||||
|
||||
public void setRuanganPembuat(RuanganVO ruanganPembuat) {
|
||||
this.ruanganPembuat = ruanganPembuat;
|
||||
}
|
||||
|
||||
public Integer getRuanganPembuatId() {
|
||||
return ruanganPembuatId;
|
||||
}
|
||||
|
||||
public void setRuanganPembuatId(Integer ruanganPembuatId) {
|
||||
this.ruanganPembuatId = ruanganPembuatId;
|
||||
}
|
||||
|
||||
public PegawaiVO getPegawaiPembuat() {
|
||||
return pegawaiPembuat;
|
||||
}
|
||||
|
||||
public void setPegawaiPembuat(PegawaiVO pegawaiPembuat) {
|
||||
this.pegawaiPembuat = pegawaiPembuat;
|
||||
}
|
||||
|
||||
public Integer getPegawaiPembuatId() {
|
||||
return pegawaiPembuatId;
|
||||
}
|
||||
|
||||
public void setPegawaiPembuatId(Integer pegawaiPembuatId) {
|
||||
this.pegawaiPembuatId = pegawaiPembuatId;
|
||||
}
|
||||
|
||||
public Boolean getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(Boolean status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Set<RuanganVO> getRuanganTujuan() {
|
||||
return ruanganTujuan;
|
||||
}
|
||||
|
||||
public void setRuanganTujuan(Set<RuanganVO> ruanganTujuan) {
|
||||
this.ruanganTujuan = ruanganTujuan;
|
||||
}
|
||||
|
||||
public Set<UsulanEvaluasiKomponenVO> getUsulanEvaluasiKomponenVO() {
|
||||
return usulanEvaluasiKomponenVO;
|
||||
}
|
||||
|
||||
public void setUsulanEvaluasiKomponenVO(Set<UsulanEvaluasiKomponenVO> usulanEvaluasiKomponenVO) {
|
||||
this.usulanEvaluasiKomponenVO = usulanEvaluasiKomponenVO;
|
||||
}
|
||||
|
||||
public RekananVO getRekanan() {
|
||||
return rekanan;
|
||||
}
|
||||
|
||||
public void setRekanan(RekananVO rekanan) {
|
||||
this.rekanan = rekanan;
|
||||
}
|
||||
|
||||
public Set<PegawaiVO> getPegawai() {
|
||||
return pegawai;
|
||||
}
|
||||
|
||||
public void setPegawai(Set<PegawaiVO> pegawai) {
|
||||
this.pegawai = pegawai;
|
||||
}
|
||||
|
||||
public String getBodyFile() {
|
||||
return bodyFile;
|
||||
}
|
||||
|
||||
public void setBodyFile(String bodyFile) {
|
||||
this.bodyFile = bodyFile;
|
||||
}
|
||||
|
||||
public String getFileName() {
|
||||
return fileName;
|
||||
}
|
||||
|
||||
public void setFileName(String fileName) {
|
||||
this.fileName = fileName;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -24,6 +24,6 @@ public class VariabelVO extends BaseTransactionVO {
|
||||
|
||||
private String variabel;
|
||||
|
||||
Set<VariabelDVO> variabelDetail = new HashSet<>();
|
||||
private Set<VariabelDVO> variabelDetail = new HashSet<>();
|
||||
|
||||
}
|
||||
|
||||
@ -1,34 +1,18 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class VerbalKonsepVO {
|
||||
|
||||
private String lampiran;
|
||||
|
||||
private String noRec;
|
||||
|
||||
private Integer idRuangan;
|
||||
|
||||
private Integer idDokumen;
|
||||
public String getLampiran() {
|
||||
return lampiran;
|
||||
}
|
||||
public void setLampiran(String lampiran) {
|
||||
this.lampiran = lampiran;
|
||||
}
|
||||
public String getNoRec() {
|
||||
return noRec;
|
||||
}
|
||||
public void setNoRec(String noRec) {
|
||||
this.noRec = noRec;
|
||||
}
|
||||
public Integer getIdRuangan() {
|
||||
return idRuangan;
|
||||
}
|
||||
public void setIdRuangan(Integer idRuangan) {
|
||||
this.idRuangan = idRuangan;
|
||||
}
|
||||
public Integer getIdDokumen() {
|
||||
return idDokumen;
|
||||
}
|
||||
public void setIdDokumen(Integer idDokumen) {
|
||||
this.idDokumen = idDokumen;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -1,5 +1,8 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
||||
@ -7,40 +10,14 @@ import java.util.Set;
|
||||
*
|
||||
* @author Adik
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
public class VerifikasiKartuPengendaliDetailVO {
|
||||
|
||||
|
||||
private Set<KartuPengendaliDetailVO> kartuPengendaliDetail=new HashSet<KartuPengendaliDetailVO>();
|
||||
|
||||
public Set<KartuPengendaliDetailVO> getKartuPengendaliDetail() {
|
||||
return kartuPengendaliDetail;
|
||||
}
|
||||
|
||||
public void setKartuPengendaliDetail(Set<KartuPengendaliDetailVO> kartuPengendaliDetail) {
|
||||
this.kartuPengendaliDetail = kartuPengendaliDetail;
|
||||
}
|
||||
private Set<KartuPengendaliDetailVO> kartuPengendaliDetail = new HashSet<>();
|
||||
|
||||
private Integer pengadaanId;
|
||||
|
||||
|
||||
private Integer metodePengadaanDetailId;
|
||||
|
||||
public Integer getPengadaanId() {
|
||||
return pengadaanId;
|
||||
}
|
||||
|
||||
public void setPengadaanId(Integer pengadaanId) {
|
||||
this.pengadaanId = pengadaanId;
|
||||
}
|
||||
|
||||
public Integer getMetodePengadaanDetailId() {
|
||||
return metodePengadaanDetailId;
|
||||
}
|
||||
|
||||
public void setMetodePengadaanDetailId(Integer metodePengadaanDetailId) {
|
||||
this.metodePengadaanDetailId = metodePengadaanDetailId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,5 +1,8 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
||||
@ -7,30 +10,12 @@ import java.util.Set;
|
||||
*
|
||||
* @author Adik
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
public class VerifikasiKartuPengendaliHeaderVO {
|
||||
|
||||
|
||||
private Set<KartuPengendaliVO> kartuPengendali=new HashSet<KartuPengendaliVO>();
|
||||
|
||||
|
||||
private Set<KartuPengendaliVO> kartuPengendali = new HashSet<>();
|
||||
|
||||
private String keterangan;
|
||||
|
||||
public Set<KartuPengendaliVO> getKartuPengendali() {
|
||||
return kartuPengendali;
|
||||
}
|
||||
|
||||
public void setKartuPengendali(Set<KartuPengendaliVO> kartuPengendali) {
|
||||
this.kartuPengendali = kartuPengendali;
|
||||
}
|
||||
|
||||
public String getKeterangan() {
|
||||
return keterangan;
|
||||
}
|
||||
|
||||
public void setKeterangan(String keterangan) {
|
||||
this.keterangan = keterangan;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,5 +1,8 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
||||
@ -7,19 +10,10 @@ import java.util.Set;
|
||||
*
|
||||
* @author Adik
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
public class VerifikasiSpekAnggaranVO {
|
||||
|
||||
|
||||
private Set<DetailSpekAnggaranVO> detailSpekAnggaran=new HashSet<DetailSpekAnggaranVO>();
|
||||
|
||||
public Set<DetailSpekAnggaranVO> getDetailSpekAnggaran() {
|
||||
return detailSpekAnggaran;
|
||||
}
|
||||
private Set<DetailSpekAnggaranVO> detailSpekAnggaran = new HashSet<>();
|
||||
|
||||
public void setDetailSpekAnggaran(Set<DetailSpekAnggaranVO> detailSpekAnggaran) {
|
||||
this.detailSpekAnggaran = detailSpekAnggaran;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,32 +1,18 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Adik
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
public class VerifikasiSppbVO {
|
||||
|
||||
|
||||
private String keterangan;
|
||||
|
||||
|
||||
private String noRec;
|
||||
|
||||
public String getKeterangan() {
|
||||
return keterangan;
|
||||
}
|
||||
|
||||
public void setKeterangan(String keterangan) {
|
||||
this.keterangan = keterangan;
|
||||
}
|
||||
|
||||
public String getNoRec() {
|
||||
return noRec;
|
||||
}
|
||||
|
||||
public void setNoRec(String noRec) {
|
||||
this.noRec = noRec;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,32 +1,23 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
/**
|
||||
* class StatusYaTidak
|
||||
* class StatusYaTidak
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
public class WajahVO extends BaseMasterVO {
|
||||
|
||||
@NotNull(message="Name tidak boleh kosong")
|
||||
@Column(name = "Name", nullable = false, length = 100)
|
||||
|
||||
@NotNull(message = "Name tidak boleh kosong")
|
||||
@Caption(value = "Name")
|
||||
private String name;
|
||||
|
||||
public void setName(String name)
|
||||
{
|
||||
this.name = name;
|
||||
}
|
||||
public String getName()
|
||||
{
|
||||
return this.name;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
@ -1,34 +1,23 @@
|
||||
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;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
/**
|
||||
* class WarnaKulit
|
||||
* class WarnaKulit
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
//@Entity
|
||||
//@Table(name = "RM_WarnaKulit_M")
|
||||
@Getter
|
||||
@Setter
|
||||
public class WarnaKulitVO extends BaseMasterVO {
|
||||
@NotNull(message="Name tidak boleh kosong")
|
||||
@Column(name = "Name", nullable = false, length = 100)
|
||||
|
||||
@NotNull(message = "Name tidak boleh kosong")
|
||||
@Caption(value = "Name")
|
||||
private String name;
|
||||
public void setName(String name)
|
||||
{
|
||||
this.name = name;
|
||||
}
|
||||
public String getName()
|
||||
{
|
||||
return this.name;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
@ -1,98 +1,39 @@
|
||||
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;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
/**
|
||||
* class WarnaProduk
|
||||
* class WarnaProduk
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
//@Entity
|
||||
//@Table(name = "WarnaProduk_M")
|
||||
@Getter
|
||||
@Setter
|
||||
public class WarnaProdukVO extends BaseMasterVO {
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectDepartemenFk")
|
||||
@NotNull(message="Object DepartemenVO Harus Diisi")
|
||||
@Caption(value="Object Departemen")
|
||||
|
||||
@NotNull(message = "Object DepartemenVO Harus Diisi")
|
||||
@Caption(value = "Object Departemen")
|
||||
private DepartemenVO departemen;
|
||||
|
||||
public void setDepartemen(DepartemenVO departemen) {
|
||||
this.departemen = departemen;
|
||||
}
|
||||
|
||||
@Column(name = "KdDepartemen", nullable = false , length = 1)
|
||||
public DepartemenVO getDepartemen(){
|
||||
return this.departemen;
|
||||
}
|
||||
|
||||
@Column(name = "ObjectDepartemenFk", insertable=false,updatable=false)
|
||||
private Integer departemenId;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectKelompokProdukFk")
|
||||
@Caption(value="Object Kelompok Produk")
|
||||
@Caption(value = "Object Kelompok Produk")
|
||||
private KelompokProdukVO kelompokProduk;
|
||||
|
||||
public void setKelompokProduk(KelompokProdukVO kelompokProduk) {
|
||||
this.kelompokProduk = kelompokProduk;
|
||||
}
|
||||
|
||||
@Column(name = "KdKelompokProduk", nullable = true )
|
||||
public KelompokProdukVO getKelompokProduk(){
|
||||
return this.kelompokProduk;
|
||||
}
|
||||
|
||||
@Column(name = "ObjectKelompokProdukFk", insertable=false,updatable=false)
|
||||
private Integer kelompokProdukId;
|
||||
|
||||
@Caption(value="Kode Warna Produk")
|
||||
@Caption(value = "Kode Warna Produk")
|
||||
private Byte kdWarnaProduk;
|
||||
|
||||
public void setKdWarnaProduk(Byte kdWarnaProduk) {
|
||||
this.kdWarnaProduk = kdWarnaProduk;
|
||||
}
|
||||
|
||||
@Column(name = "KdWarnaProduk", nullable = false )
|
||||
public Byte getKdWarnaProduk(){
|
||||
return this.kdWarnaProduk;
|
||||
}
|
||||
|
||||
@Caption(value="QWarna Produk")
|
||||
@Caption(value = "QWarna Produk")
|
||||
private Byte qWarnaProduk;
|
||||
|
||||
public void setqWarnaProduk(Byte qWarnaProduk) {
|
||||
this.qWarnaProduk = qWarnaProduk;
|
||||
}
|
||||
|
||||
@Column(name = "QWarnaProduk", nullable = false )
|
||||
public Byte getqWarnaProduk(){
|
||||
return this.qWarnaProduk;
|
||||
}
|
||||
|
||||
@Caption(value="Warna Produk")
|
||||
@Caption(value = "Warna Produk")
|
||||
private String warnaProduk;
|
||||
|
||||
public void setWarnaProduk(String warnaProduk) {
|
||||
this.warnaProduk = warnaProduk;
|
||||
}
|
||||
|
||||
@Column(name = "WarnaProduk", nullable = false , length = 30)
|
||||
public String getWarnaProduk(){
|
||||
return this.warnaProduk;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,34 +0,0 @@
|
||||
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 umur
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
//@Entity
|
||||
//@Table(name = "RM_umur_M")
|
||||
public class umurVO 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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user