Merge branch 'dev/technical-debt/lombok-domain' into prod/no-cron
This commit is contained in:
commit
aab95d203c
@ -9,22 +9,22 @@ import org.springframework.stereotype.Component;
|
||||
import com.google.gson.Gson;
|
||||
import com.jasamedika.medifirst2000.converter.base.BaseVoConverter;
|
||||
import com.jasamedika.medifirst2000.entities.JadwalDokter;
|
||||
import com.jasamedika.medifirst2000.vo.JadwalDokter_VO;
|
||||
import com.jasamedika.medifirst2000.vo.JadwalDokterVO;
|
||||
|
||||
@Component
|
||||
public class JadwalDokterConverter implements BaseVoConverter<JadwalDokter_VO,JadwalDokter>{
|
||||
public class JadwalDokterConverter implements BaseVoConverter<JadwalDokterVO, JadwalDokter> {
|
||||
|
||||
@Override
|
||||
public JadwalDokter transferVOToModel(JadwalDokter_VO vo, JadwalDokter model) {
|
||||
public JadwalDokter transferVOToModel(JadwalDokterVO vo, JadwalDokter model) {
|
||||
if (null == model)
|
||||
model = new JadwalDokter();
|
||||
|
||||
try {
|
||||
String[] fieldsToInclude = null;
|
||||
Map<String, Object> serialized = vo.serialize(fieldsToInclude,vo.getClass().getName());
|
||||
Map<String, Object> serialized = vo.serialize(fieldsToInclude, vo.getClass().getName());
|
||||
Gson gson = new Gson();
|
||||
String json = gson.toJson(serialized);
|
||||
model = gson.fromJson(json, JadwalDokter.class);
|
||||
String json = gson.toJson(serialized);
|
||||
model = gson.fromJson(json, JadwalDokter.class);
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
@ -32,15 +32,15 @@ public class JadwalDokterConverter implements BaseVoConverter<JadwalDokter_VO,Ja
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<JadwalDokter_VO> transferListOfModelToListOfVO(List<JadwalDokter> models, List<JadwalDokter_VO> vos) {
|
||||
public List<JadwalDokterVO> transferListOfModelToListOfVO(List<JadwalDokter> models, List<JadwalDokterVO> vos) {
|
||||
if (null == vos)
|
||||
vos = new ArrayList<JadwalDokter_VO>();
|
||||
vos = new ArrayList<JadwalDokterVO>();
|
||||
|
||||
if (null == models)
|
||||
return vos;
|
||||
|
||||
for (JadwalDokter model : models) {
|
||||
JadwalDokter_VO vo = new JadwalDokter_VO();
|
||||
JadwalDokterVO vo = new JadwalDokterVO();
|
||||
transferModelToVO(model, vo);
|
||||
vos.add(vo);
|
||||
}
|
||||
@ -49,21 +49,20 @@ public class JadwalDokterConverter implements BaseVoConverter<JadwalDokter_VO,Ja
|
||||
}
|
||||
|
||||
@Override
|
||||
public JadwalDokter_VO transferModelToVO(JadwalDokter model, JadwalDokter_VO vo) {
|
||||
public JadwalDokterVO transferModelToVO(JadwalDokter model, JadwalDokterVO vo) {
|
||||
if (null == vo)
|
||||
vo = new JadwalDokter_VO();
|
||||
vo = new JadwalDokterVO();
|
||||
try {
|
||||
String[] fieldsToInclude = null;
|
||||
Map<String, Object> serialized = model.serialize(fieldsToInclude,model.getClass().getSimpleName());
|
||||
Map<String, Object> serialized = model.serialize(fieldsToInclude, model.getClass().getSimpleName());
|
||||
Gson gson = new Gson();
|
||||
String json = gson.toJson(serialized);
|
||||
vo = gson.fromJson(json, JadwalDokter_VO.class);
|
||||
String json = gson.toJson(serialized);
|
||||
vo = gson.fromJson(json, JadwalDokterVO.class);
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
|
||||
return vo;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -1,21 +1,20 @@
|
||||
package com.jasamedika.medifirst2000.dao;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.jasamedika.medifirst2000.dto.InformasiTarifLayananDto;
|
||||
import com.jasamedika.medifirst2000.entities.HargaNettoProdukByKelas;
|
||||
import org.springframework.data.jpa.repository.Query;
|
||||
import org.springframework.data.repository.PagingAndSortingRepository;
|
||||
import org.springframework.data.repository.query.Param;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.entities.HargaNettoProdukByKelas;
|
||||
import com.jasamedika.medifirst2000.vo.InformasiTarifLayananVO;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
@Repository
|
||||
public interface InformasiTarifLayananDao extends PagingAndSortingRepository<HargaNettoProdukByKelas, Integer> {
|
||||
|
||||
@Query("Select NEW com.jasamedika.medifirst2000.vo.InformasiTarifLayananVO(p.produk, p.kelas, p.hargaNetto1) from HargaNettoProdukByKelas p, MapRuanganToProduk q where p.produk.id = q.produk.id ")
|
||||
public List<InformasiTarifLayananVO> getInformasiTarifRuangan();
|
||||
@Query("Select NEW com.jasamedika.medifirst2000.dto.InformasiTarifLayananDto(p.produk, p.kelas, p.hargaNetto1) from HargaNettoProdukByKelas p, MapRuanganToProduk q where p.produk.id = q.produk.id ")
|
||||
public List<InformasiTarifLayananDto> getInformasiTarifRuangan();
|
||||
|
||||
@Query("Select p from HargaNettoProdukByKelas p where p.produk.id=:produkId ")
|
||||
public List<HargaNettoProdukByKelas> getHargaByIdProduk(@Param("produkId") Integer produkId);
|
||||
@ -28,16 +27,16 @@ public interface InformasiTarifLayananDao extends PagingAndSortingRepository<Har
|
||||
|
||||
// ------------------ //
|
||||
|
||||
@Query("Select NEW com.jasamedika.medifirst2000.vo.InformasiTarifLayananVO(p.produk, p.kelas, p.hargaNetto1) from HargaNettoProdukByKelas p where p.produk.id=:produkId ")
|
||||
public List<InformasiTarifLayananVO> getInformasiHargaByIdProduk(@Param("produkId") Integer produkId);
|
||||
@Query("Select NEW com.jasamedika.medifirst2000.dto.InformasiTarifLayananDto(p.produk, p.kelas, p.hargaNetto1) from HargaNettoProdukByKelas p where p.produk.id=:produkId ")
|
||||
public List<InformasiTarifLayananDto> getInformasiHargaByIdProduk(@Param("produkId") Integer produkId);
|
||||
|
||||
@Query("Select NEW com.jasamedika.medifirst2000.vo.InformasiTarifLayananVO(p.produk, p.kelas, p.hargaNetto1) from HargaNettoProdukByKelas p where p.produk.detailJenisProduk.id in (Select cast(s.nilaiField as int) from SettingDataFixed s where s.namaField='KdDetailJenisProdukAkomodasi') ")
|
||||
public List<InformasiTarifLayananVO> getAllInformasiHarga();
|
||||
@Query("Select NEW com.jasamedika.medifirst2000.dto.InformasiTarifLayananDto(p.produk, p.kelas, p.hargaNetto1) from HargaNettoProdukByKelas p where p.produk.detailJenisProduk.id in (Select cast(s.nilaiField as int) from SettingDataFixed s where s.namaField='KdDetailJenisProdukAkomodasi') ")
|
||||
public List<InformasiTarifLayananDto> getAllInformasiHarga();
|
||||
|
||||
@Query("Select NEW com.jasamedika.medifirst2000.vo.InformasiTarifLayananVO(p.produk, p.kelas, p.hargaNetto1) from HargaNettoProdukByKelas p where lower(p.produk.namaProduk) like lower(CONCAT('%',:namaProduk,'%')) ")
|
||||
public List<InformasiTarifLayananVO> getInformasiHargaNettoByNamaProduk(@Param("namaProduk")String namaProduk);
|
||||
@Query("Select NEW com.jasamedika.medifirst2000.dto.InformasiTarifLayananDto(p.produk, p.kelas, p.hargaNetto1) from HargaNettoProdukByKelas p where lower(p.produk.namaProduk) like lower(CONCAT('%',:namaProduk,'%')) ")
|
||||
public List<InformasiTarifLayananDto> getInformasiHargaNettoByNamaProduk(@Param("namaProduk")String namaProduk);
|
||||
|
||||
@Query("select NEW com.jasamedika.medifirst2000.vo.InformasiTarifLayananVO(p.kelas, p.hargaNetto1, p.produk.kdProduk, p.produk.namaProduk, p.produk.id) from HargaNettoProdukByKelas p where p.produk.id=:produkId ")
|
||||
public List<InformasiTarifLayananVO> getInformasiHargaByIdProdukMinimized(@Param("produkId") Integer produkId);
|
||||
@Query("select NEW com.jasamedika.medifirst2000.dto.InformasiTarifLayananDto(p.kelas, p.hargaNetto1, p.produk.kdProduk, p.produk.namaProduk, p.produk.id) from HargaNettoProdukByKelas p where p.produk.id=:produkId ")
|
||||
public List<InformasiTarifLayananDto> getInformasiHargaByIdProdukMinimized(@Param("produkId") Integer produkId);
|
||||
|
||||
}
|
||||
|
||||
@ -1,16 +1,18 @@
|
||||
package com.jasamedika.medifirst2000.notification.impl;
|
||||
|
||||
import java.net.URISyntaxException;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.UUID;
|
||||
|
||||
import javax.persistence.EntityManager;
|
||||
import javax.persistence.PersistenceContext;
|
||||
import javax.persistence.Query;
|
||||
import javax.sql.DataSource;
|
||||
|
||||
import com.google.gson.Gson;
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
||||
import com.jasamedika.medifirst2000.entities.Pegawai;
|
||||
import com.jasamedika.medifirst2000.entities.Ruangan;
|
||||
import com.jasamedika.medifirst2000.notification.MessagePublisher;
|
||||
import com.jasamedika.medifirst2000.service.NotifikasiMessageObjekModulService;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
import com.jasamedika.medifirst2000.vo.*;
|
||||
import com.rabbitmq.client.Channel;
|
||||
import com.rabbitmq.client.Connection;
|
||||
import com.rabbitmq.client.ConnectionFactory;
|
||||
import com.rabbitmq.client.MessageProperties;
|
||||
import io.socket.client.IO;
|
||||
import org.json.JSONException;
|
||||
import org.json.JSONObject;
|
||||
import org.slf4j.Logger;
|
||||
@ -20,26 +22,15 @@ import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Component;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import com.google.gson.Gson;
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
||||
import com.jasamedika.medifirst2000.entities.ModulAplikasi;
|
||||
import com.jasamedika.medifirst2000.entities.ObjekModulAplikasi;
|
||||
import com.jasamedika.medifirst2000.entities.Pegawai;
|
||||
import com.jasamedika.medifirst2000.entities.Ruangan;
|
||||
import com.jasamedika.medifirst2000.notification.MessagePublisher;
|
||||
import com.jasamedika.medifirst2000.service.NotifikasiMessageObjekModulService;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
import com.jasamedika.medifirst2000.vo.ModulAplikasiVO;
|
||||
import com.jasamedika.medifirst2000.vo.NotifikasiMessageObjekModulVO;
|
||||
import com.jasamedika.medifirst2000.vo.ObjekModulAplikasiVO;
|
||||
import com.jasamedika.medifirst2000.vo.PegawaiVO;
|
||||
import com.jasamedika.medifirst2000.vo.RuanganVO;
|
||||
import com.rabbitmq.client.Channel;
|
||||
import com.rabbitmq.client.Connection;
|
||||
import com.rabbitmq.client.ConnectionFactory;
|
||||
import com.rabbitmq.client.MessageProperties;
|
||||
|
||||
import io.socket.client.IO;
|
||||
import javax.persistence.EntityManager;
|
||||
import javax.persistence.PersistenceContext;
|
||||
import javax.persistence.Query;
|
||||
import javax.sql.DataSource;
|
||||
import java.net.URISyntaxException;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.UUID;
|
||||
|
||||
@Component("messagePublisher")
|
||||
public class MessagePublisherImpl<K, V> implements MessagePublisher<K, V> {
|
||||
@ -162,9 +153,9 @@ public class MessagePublisherImpl<K, V> implements MessagePublisher<K, V> {
|
||||
PegawaiVO pegawaiVO = convertToVO(new PegawaiVO(),pegawai);
|
||||
|
||||
for (NotifikasiMessageObjekModulVO vo : notifikasiMessageObjekModulVOs) {
|
||||
Ruangan ruanganTujuan = vo.getRuangan();
|
||||
ModulAplikasi modulAplikasi = vo.getModulAplikasi();
|
||||
ObjekModulAplikasi objekModulAplikasi = vo.getObjekModulAplikasi();
|
||||
RuanganVO ruanganTujuan = vo.getRuangan();
|
||||
ModulAplikasiVO modulAplikasi = vo.getModulAplikasi();
|
||||
ObjekModulAplikasiVO objekModulAplikasi = vo.getObjekModulAplikasi();
|
||||
String customURLObjekModul = vo.getCustomURLObjekModul();
|
||||
String titleNotifikasi = vo.getTitleNotifikasi();
|
||||
String pesanNotifikasi = vo.getPesanNotifikasi();
|
||||
|
||||
@ -5,17 +5,17 @@ import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import com.jasamedika.medifirst2000.entities.JadwalDokter;
|
||||
import com.jasamedika.medifirst2000.vo.JadwalDokter_VO;
|
||||
import com.jasamedika.medifirst2000.vo.JadwalDokterVO;
|
||||
import com.jasamedika.medifirst2000.vo.PegawaiVO;
|
||||
import com.jasamedika.medifirst2000.vo.UploadExcelVO;
|
||||
|
||||
public interface JadwalDokterService extends BaseVoService<JadwalDokter, JadwalDokter_VO, Integer> {
|
||||
public interface JadwalDokterService extends BaseVoService<JadwalDokter, JadwalDokterVO, Integer> {
|
||||
|
||||
Map<String, Object> saveJadwalDokter(JadwalDokter_VO vo);
|
||||
Map<String, Object> saveJadwalDokter(JadwalDokterVO vo);
|
||||
|
||||
Map<String, Object> saveListJadwalDokter(List<JadwalDokter_VO> vos);
|
||||
Map<String, Object> saveListJadwalDokter(List<JadwalDokterVO> vos);
|
||||
|
||||
Map<String, Object> updateJadwalDokter(JadwalDokter_VO vo);
|
||||
Map<String, Object> updateJadwalDokter(JadwalDokterVO vo);
|
||||
|
||||
Map<String, Object> findByRuangan(Integer id);
|
||||
|
||||
@ -27,7 +27,7 @@ public interface JadwalDokterService extends BaseVoService<JadwalDokter, JadwalD
|
||||
|
||||
Map<String, Object> getJadwalDokterByIdDokter(Integer idDokter);
|
||||
|
||||
Map<String, Object> saveJadwalSupirAmbulance(JadwalDokter_VO vo);
|
||||
Map<String, Object> saveJadwalSupirAmbulance(JadwalDokterVO vo);
|
||||
|
||||
Map<String, Object> getJadwalDokterMingguanByIdDokter(Integer id);
|
||||
|
||||
@ -40,17 +40,20 @@ public interface JadwalDokterService extends BaseVoService<JadwalDokter, JadwalD
|
||||
|
||||
Map<String, Object> findJadwalByTanggalRuanganBilik(Date tanggalJadwal, Integer idRuangan);
|
||||
|
||||
Map<String, Object> updateListJadwalDokter(List<JadwalDokter_VO> vos);
|
||||
Map<String, Object> updateListJadwalDokter(List<JadwalDokterVO> vos);
|
||||
|
||||
Map<String, Object> uploadAbsensi(UploadExcelVO fileInput);
|
||||
|
||||
Map<String, Object> saveJadwalPegawai(String idFinger, Date date, Date date2);
|
||||
Map<String, Object> deleteJadwalDokter(JadwalDokter_VO vo);
|
||||
|
||||
|
||||
Map<String, Object> deleteJadwalDokter(JadwalDokterVO vo);
|
||||
|
||||
/*
|
||||
* create by iwan date: 21.04.2017
|
||||
*/
|
||||
Map<String, Object> findJadwalDokterByKisaranTglRuangan(int idDokter, int idRuangan, Date from, Date to);
|
||||
|
||||
Map<String, Object> findJadwalDokterByKisaranTglRuanganAll(int idDokter, Date from, Date to);
|
||||
|
||||
|
||||
Map<String, Object> findJadwalByTanggalRuangan(Date tanggalJadwal, String noRec);
|
||||
}
|
||||
|
||||
@ -1,87 +1,22 @@
|
||||
package com.jasamedika.medifirst2000.service.impl;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Calendar;
|
||||
import java.util.Date;
|
||||
import java.util.HashMap;
|
||||
import java.util.HashSet;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
|
||||
import com.jasamedika.medifirst2000.converter.BaseConverterImpl;
|
||||
import com.jasamedika.medifirst2000.dao.*;
|
||||
import com.jasamedika.medifirst2000.dao.custom.DokumenInternalDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dto.DokumenInternalDto;
|
||||
import com.jasamedika.medifirst2000.entities.*;
|
||||
import com.jasamedika.medifirst2000.service.DokumenInternalService;
|
||||
import com.jasamedika.medifirst2000.service.LoginUserService;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
import com.jasamedika.medifirst2000.util.StringUtil;
|
||||
import com.jasamedika.medifirst2000.vo.*;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.data.domain.Page;
|
||||
import org.springframework.data.domain.PageRequest;
|
||||
import org.springframework.data.domain.Pageable;
|
||||
import org.springframework.data.domain.Sort;
|
||||
import org.springframework.data.domain.Sort.Direction;
|
||||
import org.springframework.data.jpa.domain.Specification;
|
||||
import org.springframework.stereotype.Service;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import com.jasamedika.medifirst2000.converter.BaseConverterImpl;
|
||||
import com.jasamedika.medifirst2000.dao.DokumenDao;
|
||||
import com.jasamedika.medifirst2000.dao.DokumenInternalDao;
|
||||
import com.jasamedika.medifirst2000.dao.LoginUserDao;
|
||||
import com.jasamedika.medifirst2000.dao.PegawaiDao;
|
||||
import com.jasamedika.medifirst2000.dao.RunningNumberDao;
|
||||
import com.jasamedika.medifirst2000.dao.StrukKirimDao;
|
||||
import com.jasamedika.medifirst2000.dao.custom.DokumenInternalDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dto.DetailRupDto;
|
||||
import com.jasamedika.medifirst2000.dto.DokumenInternalDto;
|
||||
import com.jasamedika.medifirst2000.entities.AsalProduk;
|
||||
import com.jasamedika.medifirst2000.entities.DetailAnggaran;
|
||||
import com.jasamedika.medifirst2000.entities.DetailSpekAnggaran;
|
||||
import com.jasamedika.medifirst2000.entities.Dokumen;
|
||||
import com.jasamedika.medifirst2000.entities.DokumenInternal;
|
||||
import com.jasamedika.medifirst2000.entities.JenisArsip;
|
||||
import com.jasamedika.medifirst2000.entities.JenisDokumen;
|
||||
import com.jasamedika.medifirst2000.entities.JenisSurat;
|
||||
import com.jasamedika.medifirst2000.entities.KegiatanAnggaran;
|
||||
import com.jasamedika.medifirst2000.entities.KlasifikasiArsip;
|
||||
import com.jasamedika.medifirst2000.entities.LoginUser;
|
||||
import com.jasamedika.medifirst2000.entities.Pegawai;
|
||||
import com.jasamedika.medifirst2000.entities.Produk;
|
||||
import com.jasamedika.medifirst2000.entities.Ruangan;
|
||||
import com.jasamedika.medifirst2000.entities.RunningNumber;
|
||||
import com.jasamedika.medifirst2000.entities.SifatSurat;
|
||||
import com.jasamedika.medifirst2000.entities.StatusBerkas;
|
||||
import com.jasamedika.medifirst2000.entities.StatusYaTidak;
|
||||
import com.jasamedika.medifirst2000.entities.StrukKirim;
|
||||
import com.jasamedika.medifirst2000.entities.StrukPelayanan;
|
||||
import com.jasamedika.medifirst2000.entities.SubKlasifikasiArsip;
|
||||
import com.jasamedika.medifirst2000.entities.TipePengirimSurat;
|
||||
import com.jasamedika.medifirst2000.service.DokumenInternalService;
|
||||
import com.jasamedika.medifirst2000.service.LoginUserService;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
import com.jasamedika.medifirst2000.util.HibernateInitialize;
|
||||
import com.jasamedika.medifirst2000.util.StringUtil;
|
||||
import com.jasamedika.medifirst2000.vo.AsalProdukVO;
|
||||
import com.jasamedika.medifirst2000.vo.ChartOfAccountVO;
|
||||
import com.jasamedika.medifirst2000.vo.DetailAnggaranVO;
|
||||
import com.jasamedika.medifirst2000.vo.DetailSpekAnggaranVO;
|
||||
import com.jasamedika.medifirst2000.vo.DokumenInternalVO;
|
||||
import com.jasamedika.medifirst2000.vo.DokumenVO;
|
||||
import com.jasamedika.medifirst2000.vo.GridDetailAnggaran;
|
||||
import com.jasamedika.medifirst2000.vo.GridDokumenInternal;
|
||||
import com.jasamedika.medifirst2000.vo.HeadAnggaranVO;
|
||||
import com.jasamedika.medifirst2000.vo.JenisArsipVO;
|
||||
import com.jasamedika.medifirst2000.vo.JenisSuratVO;
|
||||
import com.jasamedika.medifirst2000.vo.KegiatanAnggaranVO;
|
||||
import com.jasamedika.medifirst2000.vo.KlasifikasiArsipVO;
|
||||
import com.jasamedika.medifirst2000.vo.KomponenVO;
|
||||
import com.jasamedika.medifirst2000.vo.LoginUserVO;
|
||||
import com.jasamedika.medifirst2000.vo.PegawaiVO;
|
||||
import com.jasamedika.medifirst2000.vo.ProdukVO;
|
||||
import com.jasamedika.medifirst2000.vo.RuanganVO;
|
||||
import com.jasamedika.medifirst2000.vo.SifatSuratVO;
|
||||
import com.jasamedika.medifirst2000.vo.StatusBerkasVO;
|
||||
import com.jasamedika.medifirst2000.vo.StatusYaTidakVO;
|
||||
import com.jasamedika.medifirst2000.vo.StrukKirimVO;
|
||||
import com.jasamedika.medifirst2000.vo.StrukPelayananVO;
|
||||
import com.jasamedika.medifirst2000.vo.SubKlasifikasiArsipVO;
|
||||
import com.jasamedika.medifirst2000.vo.SuratMasukInternalVO;
|
||||
import com.jasamedika.medifirst2000.vo.TipePengirimSuratVO;
|
||||
import java.util.*;
|
||||
|
||||
@Service("DokumenInternalService")
|
||||
public class DokumenInternalServiceImpl extends BaseVoServiceImpl implements DokumenInternalService {
|
||||
@ -234,7 +169,7 @@ public class DokumenInternalServiceImpl extends BaseVoServiceImpl implements Dok
|
||||
DokumenVO voDokumen = new DokumenVO();
|
||||
if (CommonUtil.isNotNullOrEmpty(vo.getPerihal())) {
|
||||
voDokumen.setNamaJudulDokumen(vo.getPerihal());
|
||||
voDokumen.setqDokumen(0);
|
||||
voDokumen.setQDokumen(0);
|
||||
}
|
||||
|
||||
voDokumen.setIsDokumenInOutInt((byte) 0);
|
||||
@ -290,16 +225,16 @@ public class DokumenInternalServiceImpl extends BaseVoServiceImpl implements Dok
|
||||
/* Set Dokumen Internal */
|
||||
DokumenInternalVO voDokumenInternal = new DokumenInternalVO();
|
||||
if (CommonUtil.isNotNullOrEmpty(voDokumen)) {
|
||||
voDokumenInternal.setObjectDokumen(voDokumen);
|
||||
voDokumenInternal.setKddokumen(voDokumen);
|
||||
}
|
||||
if (CommonUtil.isNotNullOrEmpty(vo.getUserPegawaiTujuan())) {
|
||||
voDokumenInternal.setObjectPegawaiTujuan(vo.getUserPegawaiTujuan());
|
||||
voDokumenInternal.setKdpegawaitujuan(vo.getUserPegawaiTujuan());
|
||||
}
|
||||
if (CommonUtil.isNotNullOrEmpty(vo.getRuanganPenerima())) {
|
||||
voDokumenInternal.setObjectRuanganTujuan(vo.getRuanganPenerima());
|
||||
voDokumenInternal.setRuanganPenerima(vo.getRuanganPenerima());
|
||||
}
|
||||
if (CommonUtil.isNotNullOrEmpty(vo.getKeterangan())) {
|
||||
voDokumenInternal.setKeteranganLainnya(vo.getKeterangan());
|
||||
voDokumenInternal.setKeteranganlainnya(vo.getKeterangan());
|
||||
}
|
||||
if (CommonUtil.isNotNullOrEmpty(vo.getNomorSuratInternal())) {
|
||||
voDokumenInternal.setNodokumen_intern(vo.getNomorSuratInternal());
|
||||
@ -358,7 +293,7 @@ public class DokumenInternalServiceImpl extends BaseVoServiceImpl implements Dok
|
||||
if (CommonUtil.isNotNullOrEmpty(voDokumenInternal)) {
|
||||
dokumenInternal = dokumenInternalConverter.transferVOToModel(voDokumenInternal, new DokumenInternal());
|
||||
}
|
||||
if (CommonUtil.isNotNullOrEmpty(voDokumenInternal.getObjectDokumen())) {
|
||||
if (CommonUtil.isNotNullOrEmpty(voDokumenInternal.getKddokumen())) {
|
||||
dokumenInternal.setKddokumen(resultModelDokumen);
|
||||
}
|
||||
if (CommonUtil.isNotNullOrEmpty(voDokumenInternal.getKdruangantujuan())) {
|
||||
|
||||
@ -1,21 +1,19 @@
|
||||
package com.jasamedika.medifirst2000.service.impl;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.InformasiTarifLayananDao;
|
||||
import com.jasamedika.medifirst2000.dao.ProdukDao;
|
||||
import com.jasamedika.medifirst2000.dto.InformasiTarifLayananDto;
|
||||
import com.jasamedika.medifirst2000.entities.Produk;
|
||||
import com.jasamedika.medifirst2000.service.InformasiTarifLayananService;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.InformasiTarifLayananDao;
|
||||
import com.jasamedika.medifirst2000.dao.ProdukDao;
|
||||
import com.jasamedika.medifirst2000.entities.HargaNettoProdukByKelas;
|
||||
import com.jasamedika.medifirst2000.entities.Produk;
|
||||
import com.jasamedika.medifirst2000.service.InformasiTarifLayananService;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
import com.jasamedika.medifirst2000.vo.InformasiTarifLayananVO;
|
||||
|
||||
@Service("InformasiTarifLayananService")
|
||||
public class InformasiTarifLayananServiceImpl implements InformasiTarifLayananService{
|
||||
|
||||
@ -25,7 +23,7 @@ public class InformasiTarifLayananServiceImpl implements InformasiTarifLayananSe
|
||||
@Override
|
||||
public Map<String, Object> getInformasiTarifLayananRuangan() {
|
||||
Map<String, Object> result = new HashMap<>();
|
||||
List<InformasiTarifLayananVO> list = new ArrayList<InformasiTarifLayananVO>();
|
||||
List<InformasiTarifLayananDto> list = new ArrayList<InformasiTarifLayananDto>();
|
||||
list = informasiTarifLayananDao.getInformasiTarifRuangan();
|
||||
if(CommonUtil.isNotNullOrEmpty(list)){
|
||||
result.put("data", list);
|
||||
@ -40,7 +38,7 @@ public class InformasiTarifLayananServiceImpl implements InformasiTarifLayananSe
|
||||
@Override
|
||||
public Map<String, Object> getHargaByIdProduk(Integer produkId) {
|
||||
Map<String, Object> result = new HashMap<>();
|
||||
List<InformasiTarifLayananVO> list = new ArrayList<InformasiTarifLayananVO>();
|
||||
List<InformasiTarifLayananDto> list = new ArrayList<InformasiTarifLayananDto>();
|
||||
list = informasiTarifLayananDao.getInformasiHargaByIdProduk(produkId);
|
||||
if(CommonUtil.isNotNullOrEmpty(list)){
|
||||
result.put("data", list);
|
||||
@ -55,7 +53,7 @@ public class InformasiTarifLayananServiceImpl implements InformasiTarifLayananSe
|
||||
@Override
|
||||
public Map<String, Object> getAllHargaProduk() {
|
||||
Map<String, Object> result = new HashMap<>();
|
||||
List<InformasiTarifLayananVO> list = new ArrayList<InformasiTarifLayananVO>();
|
||||
List<InformasiTarifLayananDto> list = new ArrayList<InformasiTarifLayananDto>();
|
||||
list = informasiTarifLayananDao.getAllInformasiHarga();
|
||||
if(CommonUtil.isNotNullOrEmpty(list)){
|
||||
result.put("data", list);
|
||||
@ -70,7 +68,7 @@ public class InformasiTarifLayananServiceImpl implements InformasiTarifLayananSe
|
||||
@Override
|
||||
public Map<String, Object> getHargaNettoByNamaProduk(String namaProduk) {
|
||||
Map<String, Object> result = new HashMap<>();
|
||||
List<InformasiTarifLayananVO> list = new ArrayList<InformasiTarifLayananVO>();
|
||||
List<InformasiTarifLayananDto> list = new ArrayList<InformasiTarifLayananDto>();
|
||||
list = informasiTarifLayananDao.getInformasiHargaNettoByNamaProduk(namaProduk);
|
||||
if(CommonUtil.isNotNullOrEmpty(list)){
|
||||
result.put("data", list);
|
||||
@ -85,7 +83,7 @@ public class InformasiTarifLayananServiceImpl implements InformasiTarifLayananSe
|
||||
@Override
|
||||
public Map<String, Object> getHargaProdukByIdProdukMinimized(Integer produkId) {
|
||||
Map<String, Object> result = new HashMap<>();
|
||||
List<InformasiTarifLayananVO> list = new ArrayList<InformasiTarifLayananVO>();
|
||||
List<InformasiTarifLayananDto> list = new ArrayList<InformasiTarifLayananDto>();
|
||||
list = informasiTarifLayananDao.getInformasiHargaByIdProdukMinimized(produkId);
|
||||
if(CommonUtil.isNotNullOrEmpty(list)){
|
||||
result.put("data", list);
|
||||
|
||||
@ -1,14 +1,5 @@
|
||||
package com.jasamedika.medifirst2000.service.impl;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Date;
|
||||
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.PapAnamesisConverter;
|
||||
import com.jasamedika.medifirst2000.converter.PapRiwayatPenyakitPengobatanConverter;
|
||||
import com.jasamedika.medifirst2000.converter.PasienConverter;
|
||||
@ -23,6 +14,14 @@ import com.jasamedika.medifirst2000.vo.InputPAPAnamesisVO;
|
||||
import com.jasamedika.medifirst2000.vo.PapAnamesisVO;
|
||||
import com.jasamedika.medifirst2000.vo.PapRiwayatPenyakitPengobatanVO;
|
||||
import com.jasamedika.medifirst2000.vo.PasienVO;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.orm.jpa.JpaSystemException;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* Implement class for PAPAnamesisService
|
||||
@ -44,11 +43,11 @@ public class InputPapAnamesisServiceImpl implements InputPapAnamesisService {
|
||||
|
||||
@Override
|
||||
public InputPAPAnamesisVO add(InputPAPAnamesisVO vo) throws JpaSystemException, ServiceVOException {
|
||||
PapAnamesis model=papAnamesisConverter.transferVOToModel(vo.getpAPAnamesis(), new PapAnamesis());
|
||||
PapAnamesis model=papAnamesisConverter.transferVOToModel(vo.getPAPAnamesis(), new PapAnamesis());
|
||||
Pasien pasien=pasienConverter.transferVOToModel(vo.getPasien(), new Pasien());
|
||||
List<PapRiwayatPenyakitPengobatan> list=new ArrayList<PapRiwayatPenyakitPengobatan>();
|
||||
PapRiwayatPenyakitPengobatan papRiwayatPenyakitPengobatan=null;
|
||||
for(PapRiwayatPenyakitPengobatanVO abc:vo.getpAPRiwayatPenyakitPengobatans()){
|
||||
for(PapRiwayatPenyakitPengobatanVO abc:vo.getPAPRiwayatPenyakitPengobatans()){
|
||||
papRiwayatPenyakitPengobatan=papRiwayatPenyakitPengobatanConverter.transferVOToModel(abc, new PapRiwayatPenyakitPengobatan());
|
||||
papRiwayatPenyakitPengobatan.setPapAnamesis(model);
|
||||
list.add(papRiwayatPenyakitPengobatan);
|
||||
@ -64,7 +63,7 @@ public class InputPapAnamesisServiceImpl implements InputPapAnamesisService {
|
||||
pasienVo.setNoCm(resultModel.getPasien().getNoCm());
|
||||
anamesisVo.setPasien(pasienVo);
|
||||
anamesisVo.setTglInput(resultModel.getTglInput());
|
||||
resultVo.setpAPAnamesis(anamesisVo);
|
||||
resultVo.setPAPAnamesis(anamesisVo);
|
||||
return resultVo;
|
||||
}
|
||||
|
||||
|
||||
@ -42,7 +42,7 @@ import com.jasamedika.medifirst2000.service.JadwalDokterService;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
import com.jasamedika.medifirst2000.util.JsonUtil;
|
||||
import com.jasamedika.medifirst2000.vo.AbsensiPegawaiVO;
|
||||
import com.jasamedika.medifirst2000.vo.JadwalDokter_VO;
|
||||
import com.jasamedika.medifirst2000.vo.JadwalDokterVO;
|
||||
import com.jasamedika.medifirst2000.vo.JadwalPraktekVO;
|
||||
import com.jasamedika.medifirst2000.vo.PegawaiVO;
|
||||
import com.jasamedika.medifirst2000.vo.RuanganVO;
|
||||
@ -67,12 +67,12 @@ public class JadwalDokterServiceImpl extends BaseVoServiceImpl implements Jadwal
|
||||
private BaseConverterImpl<JadwalPraktekVO, JadwalPraktek> jadwalPraktekConverter;
|
||||
|
||||
@Override
|
||||
public JadwalDokter_VO add(JadwalDokter_VO vo) throws JpaSystemException, ServiceVOException {
|
||||
public JadwalDokterVO add(JadwalDokterVO vo) throws JpaSystemException, ServiceVOException {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public JadwalDokter_VO update(JadwalDokter_VO vo) throws JpaSystemException, ServiceVOException {
|
||||
public JadwalDokterVO update(JadwalDokterVO vo) throws JpaSystemException, ServiceVOException {
|
||||
return null;
|
||||
}
|
||||
|
||||
@ -82,12 +82,12 @@ public class JadwalDokterServiceImpl extends BaseVoServiceImpl implements Jadwal
|
||||
}
|
||||
|
||||
@Override
|
||||
public JadwalDokter_VO findById(Integer key) throws JpaSystemException {
|
||||
public JadwalDokterVO findById(Integer key) throws JpaSystemException {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<JadwalDokter_VO> findAll() throws JpaSystemException {
|
||||
public List<JadwalDokterVO> findAll() throws JpaSystemException {
|
||||
return null;
|
||||
}
|
||||
|
||||
@ -98,7 +98,7 @@ public class JadwalDokterServiceImpl extends BaseVoServiceImpl implements Jadwal
|
||||
}
|
||||
|
||||
@Override
|
||||
public Map<String, Object> saveJadwalDokter(JadwalDokter_VO vo) {
|
||||
public Map<String, Object> saveJadwalDokter(JadwalDokterVO vo) {
|
||||
Map<String, Object> result = new HashMap<String, Object>();
|
||||
JadwalDokter model = jadwalDokterConverter.transferVOToModel(vo, new JadwalDokter());
|
||||
JadwalDokter resultModel = jadwalDokterDao.save(model);
|
||||
@ -110,7 +110,7 @@ public class JadwalDokterServiceImpl extends BaseVoServiceImpl implements Jadwal
|
||||
}
|
||||
|
||||
@Override
|
||||
public Map<String, Object> updateJadwalDokter(JadwalDokter_VO vo) {
|
||||
public Map<String, Object> updateJadwalDokter(JadwalDokterVO vo) {
|
||||
Map<String, Object> result = new HashMap<String, Object>();
|
||||
JadwalDokter model = jadwalDokterDao.findOne(vo.getId());
|
||||
model = jadwalDokterConverter.transferVOToModel(vo, model);
|
||||
@ -332,9 +332,9 @@ public class JadwalDokterServiceImpl extends BaseVoServiceImpl implements Jadwal
|
||||
}
|
||||
|
||||
@Override
|
||||
public Map<String, Object> saveListJadwalDokter(List<JadwalDokter_VO> vos) {
|
||||
public Map<String, Object> saveListJadwalDokter(List<JadwalDokterVO> vos) {
|
||||
Map<String, Object> result = new HashMap<String, Object>();
|
||||
for (JadwalDokter_VO vo : vos) {
|
||||
for (JadwalDokterVO vo : vos) {
|
||||
JadwalDokter model = new JadwalDokter();
|
||||
if (vo.getId() != null)
|
||||
model.setId(vo.getId());
|
||||
@ -371,10 +371,10 @@ public class JadwalDokterServiceImpl extends BaseVoServiceImpl implements Jadwal
|
||||
}
|
||||
|
||||
@Autowired
|
||||
private BaseConverterImpl<JadwalDokter_VO, JadwalDokter> jadwalSupirAmbulanceConverter;
|
||||
private BaseConverterImpl<JadwalDokterVO, JadwalDokter> jadwalSupirAmbulanceConverter;
|
||||
|
||||
@Override
|
||||
public Map<String, Object> saveJadwalSupirAmbulance(JadwalDokter_VO vo) {
|
||||
public Map<String, Object> saveJadwalSupirAmbulance(JadwalDokterVO vo) {
|
||||
Map<String, Object> result = new HashMap<String, Object>();
|
||||
JadwalDokter jadwalSupirAmbulance = new JadwalDokter();
|
||||
if (CommonUtil.isNotNullOrEmpty(vo)) {
|
||||
@ -449,9 +449,9 @@ public class JadwalDokterServiceImpl extends BaseVoServiceImpl implements Jadwal
|
||||
|
||||
@Override
|
||||
@Transactional(readOnly = false)
|
||||
public Map<String, Object> updateListJadwalDokter(List<JadwalDokter_VO> vos) {
|
||||
public Map<String, Object> updateListJadwalDokter(List<JadwalDokterVO> vos) {
|
||||
Map<String, Object> result = new HashMap<String, Object>();
|
||||
for (JadwalDokter_VO vo : vos) {
|
||||
for (JadwalDokterVO vo : vos) {
|
||||
JadwalDokter model = jadwalDokterDao.findOne(vo.getId());
|
||||
if (vo.getJadwalPraktek() != null) {
|
||||
ShiftKerja statusKehadiran = new ShiftKerja();
|
||||
@ -561,7 +561,7 @@ public class JadwalDokterServiceImpl extends BaseVoServiceImpl implements Jadwal
|
||||
}
|
||||
|
||||
@Override
|
||||
public Map<String, Object> deleteJadwalDokter(JadwalDokter_VO vo) {
|
||||
public Map<String, Object> deleteJadwalDokter(JadwalDokterVO vo) {
|
||||
JadwalDokter pegawai = jadwalDokterDao.findOne(vo.getId());
|
||||
jadwalDokterDao.delete(pegawai);
|
||||
Map<String, Object> dokter = new HashMap<>();
|
||||
|
||||
@ -0,0 +1,35 @@
|
||||
package com.jasamedika.medifirst2000.dto;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
||||
import com.jasamedika.medifirst2000.entities.Kelas;
|
||||
import com.jasamedika.medifirst2000.entities.Produk;
|
||||
|
||||
public class InformasiTarifLayananDto {
|
||||
|
||||
public InformasiTarifLayananDto(Produk produk, Kelas kelas, Double tarif){
|
||||
this.produk = produk;
|
||||
this.kelas = kelas;
|
||||
this.tarif = tarif;
|
||||
}
|
||||
|
||||
public InformasiTarifLayananDto(String kdProduk, String namaProduk, Integer idProduk, Kelas kelas, Double tarif){
|
||||
this.produk = new Produk(kdProduk,namaProduk,idProduk);
|
||||
this.kelas = kelas;
|
||||
this.tarif = tarif;
|
||||
}
|
||||
|
||||
public InformasiTarifLayananDto(Kelas kelas, Double tarif, String kdProduk, String namaProduk, Integer idProduk){
|
||||
this.produk = new Produk(kdProduk,namaProduk,idProduk);
|
||||
this.kelas = kelas;
|
||||
this.tarif = tarif;
|
||||
}
|
||||
|
||||
@JsonIgnoreProperties({"hibernateLazyInitializer", "handler"})
|
||||
private Produk produk;
|
||||
|
||||
@JsonIgnoreProperties({"hibernateLazyInitializer", "handler"})
|
||||
private Kelas kelas;
|
||||
|
||||
private Double tarif;
|
||||
|
||||
}
|
||||
@ -1,54 +1,20 @@
|
||||
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.BaseTransaction;
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailAktivitasKemandirianVO extends BaseTransactionVO {
|
||||
|
||||
@ManyToOne
|
||||
@Caption(value="Object Status Mandiri")
|
||||
|
||||
@Caption(value = "Object Status Mandiri")
|
||||
private StatusMandiriVO statusMandiri;
|
||||
|
||||
@Column(name = "ObjectStatusMandiriFk", insertable=false,updatable=false)
|
||||
private Integer statusMandiriId;
|
||||
|
||||
@ManyToOne
|
||||
@Caption(value="Object Aktivias Kemandirian")
|
||||
|
||||
@Caption(value = "Object Aktivias Kemandirian")
|
||||
private AktivitasKemandirianVO aktivitasKemandirian;
|
||||
|
||||
public StatusMandiriVO getStatusMandiri() {
|
||||
return statusMandiri;
|
||||
}
|
||||
|
||||
public void setStatusMandiri(StatusMandiriVO statusMandiri) {
|
||||
this.statusMandiri = statusMandiri;
|
||||
}
|
||||
|
||||
public Integer getStatusMandiriId() {
|
||||
return statusMandiriId;
|
||||
}
|
||||
|
||||
public void setStatusMandiriId(Integer statusMandiriId) {
|
||||
this.statusMandiriId = statusMandiriId;
|
||||
}
|
||||
|
||||
public AktivitasKemandirianVO getAktivitasKemandirian() {
|
||||
return aktivitasKemandirian;
|
||||
}
|
||||
|
||||
public void setAktivitasKemandirian(AktivitasKemandirianVO aktivitasKemandirian) {
|
||||
this.aktivitasKemandirian = aktivitasKemandirian;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -1,64 +1,29 @@
|
||||
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 com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonBackReference;
|
||||
import com.jasamedika.medifirst2000.base.BaseMaster;
|
||||
import com.jasamedika.medifirst2000.base.BaseTransaction;
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.entities.AlasanPemindahanPasien;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
|
||||
/**
|
||||
* class Agama
|
||||
* class DetailAlasanPemindahanPasienVO
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailAlasanPemindahanPasienVO extends BaseTransactionVO {
|
||||
|
||||
@ManyToOne
|
||||
@Caption(value="Transfer Pasien Internal")
|
||||
@NotNull(message="TransferPasienInternal Harus Diisi")
|
||||
|
||||
@Caption(value = "Transfer Pasien Internal")
|
||||
@NotNull(message = "TransferPasienInternal Harus Diisi")
|
||||
private TransferPasienInternalVO transferPasienInternal;
|
||||
|
||||
@Column(name = "checked")
|
||||
private Boolean checked;
|
||||
|
||||
@ManyToOne
|
||||
@Caption(value="Alasan Pemindahan Pasien")
|
||||
@NotNull(message="Alasan Pemindahan Pasien Harus Diisi")
|
||||
@Caption(value = "Alasan Pemindahan Pasien")
|
||||
@NotNull(message = "Alasan Pemindahan Pasien Harus Diisi")
|
||||
private AlasanPemindahanPasienVO alasanPemindahanPasien;
|
||||
|
||||
public TransferPasienInternalVO getTransferPasienInternal() {
|
||||
return transferPasienInternal;
|
||||
}
|
||||
|
||||
public void setTransferPasienInternal(TransferPasienInternalVO transferPasienInternal) {
|
||||
this.transferPasienInternal = transferPasienInternal;
|
||||
}
|
||||
|
||||
public Boolean getChecked() {
|
||||
return checked;
|
||||
}
|
||||
|
||||
public void setChecked(Boolean checked) {
|
||||
this.checked = checked;
|
||||
}
|
||||
|
||||
public AlasanPemindahanPasienVO getAlasanPemindahanPasien() {
|
||||
return alasanPemindahanPasien;
|
||||
}
|
||||
|
||||
public void setAlasanPemindahanPasien(AlasanPemindahanPasienVO alasanPemindahanPasien) {
|
||||
this.alasanPemindahanPasien = alasanPemindahanPasien;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,143 +1,45 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import javax.persistence.Column;
|
||||
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 PosisiRahim
|
||||
* class PosisiRahim
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailAlatYangDigunakanVO extends BaseTransactionVO {
|
||||
|
||||
@ManyToOne
|
||||
@NotNull(message="Produk Harus Diisi")
|
||||
@Caption(value="Penghitungan Kassa Dan Alat Operasi")
|
||||
|
||||
@NotNull(message = "Produk Harus Diisi")
|
||||
@Caption(value = "Penghitungan Kassa Dan Alat Operasi")
|
||||
private PenghitunganKassaDanAlatOperasiVO penghitunganKassaDanAlatOperasi;
|
||||
|
||||
@ManyToOne
|
||||
@NotNull(message="Produk Harus Diisi")
|
||||
@Caption(value="Nama Alat Yang Digunakan")
|
||||
@NotNull(message = "Produk Harus Diisi")
|
||||
@Caption(value = "Nama Alat Yang Digunakan")
|
||||
private ProdukVO produk;
|
||||
|
||||
@Column(name = "Kuantitas")
|
||||
private String kuantitas;
|
||||
|
||||
@Column(name = "keterangan")
|
||||
|
||||
private String keterngan;
|
||||
|
||||
@Column(name="tambah1", length = 20)
|
||||
private String tambah1;
|
||||
|
||||
@Column(name="tambah2", length = 20)
|
||||
|
||||
private String tambah2;
|
||||
|
||||
@Column(name="tambah3", length = 20)
|
||||
|
||||
private String tambah3;
|
||||
|
||||
@Column(name="tambah4", length = 20)
|
||||
|
||||
private String tambah4;
|
||||
|
||||
@Column(name="tambah5", length = 20)
|
||||
|
||||
private String tambah5;
|
||||
|
||||
@Column(name="tambah6", length = 20)
|
||||
|
||||
private String tambah6;
|
||||
|
||||
@Column(name="tambah7", length = 20)
|
||||
|
||||
private String tambah7;
|
||||
|
||||
public PenghitunganKassaDanAlatOperasiVO getPenghitunganKassaDanAlatOperasi() {
|
||||
return penghitunganKassaDanAlatOperasi;
|
||||
}
|
||||
|
||||
public void setPenghitunganKassaDanAlatOperasi(PenghitunganKassaDanAlatOperasiVO penghitunganKassaDanAlatOperasi) {
|
||||
this.penghitunganKassaDanAlatOperasi = penghitunganKassaDanAlatOperasi;
|
||||
}
|
||||
|
||||
public ProdukVO getProduk() {
|
||||
return produk;
|
||||
}
|
||||
|
||||
public void setProduk(ProdukVO produk) {
|
||||
this.produk = produk;
|
||||
}
|
||||
|
||||
public String getKuantitas() {
|
||||
return kuantitas;
|
||||
}
|
||||
|
||||
public void setKuantitas(String kuantitas) {
|
||||
this.kuantitas = kuantitas;
|
||||
}
|
||||
|
||||
public String getKeterngan() {
|
||||
return keterngan;
|
||||
}
|
||||
|
||||
public void setKeterngan(String keterngan) {
|
||||
this.keterngan = keterngan;
|
||||
}
|
||||
|
||||
public String getTambah1() {
|
||||
return tambah1;
|
||||
}
|
||||
|
||||
public void setTambah1(String tambah1) {
|
||||
this.tambah1 = tambah1;
|
||||
}
|
||||
|
||||
public String getTambah2() {
|
||||
return tambah2;
|
||||
}
|
||||
|
||||
public void setTambah2(String tambah2) {
|
||||
this.tambah2 = tambah2;
|
||||
}
|
||||
|
||||
public String getTambah3() {
|
||||
return tambah3;
|
||||
}
|
||||
|
||||
public void setTambah3(String tambah3) {
|
||||
this.tambah3 = tambah3;
|
||||
}
|
||||
|
||||
public String getTambah4() {
|
||||
return tambah4;
|
||||
}
|
||||
|
||||
public void setTambah4(String tambah4) {
|
||||
this.tambah4 = tambah4;
|
||||
}
|
||||
|
||||
public String getTambah5() {
|
||||
return tambah5;
|
||||
}
|
||||
|
||||
public void setTambah5(String tambah5) {
|
||||
this.tambah5 = tambah5;
|
||||
}
|
||||
|
||||
public String getTambah6() {
|
||||
return tambah6;
|
||||
}
|
||||
|
||||
public void setTambah6(String tambah6) {
|
||||
this.tambah6 = tambah6;
|
||||
}
|
||||
|
||||
public String getTambah7() {
|
||||
return tambah7;
|
||||
}
|
||||
|
||||
public void setTambah7(String tambah7) {
|
||||
this.tambah7 = tambah7;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,133 +1,47 @@
|
||||
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 javax.validation.constraints.NotNull;
|
||||
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;
|
||||
import javax.validation.constraints.NotNull;
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailAnggaranVO extends BaseTransactionVO {
|
||||
|
||||
public class DetailAnggaranVO extends BaseTransactionVO{
|
||||
|
||||
@Caption(value="Detail Anggaran")
|
||||
@Caption(value = "Detail Anggaran")
|
||||
private String detailAnggaran;
|
||||
|
||||
@ManyToOne(fetch = FetchType.LAZY)
|
||||
@Caption(value="Kegiatan Anggaran")
|
||||
|
||||
@Caption(value = "Kegiatan Anggaran")
|
||||
@NotNull(message = "Kegiatan Anggaran Harus Diisi")
|
||||
private KegiatanAnggaranVO kegiatanAnggaran;
|
||||
|
||||
|
||||
@Caption(value = "Kode Barang")
|
||||
private String kdBarang;
|
||||
|
||||
|
||||
@Caption(value = "Periode Awal")
|
||||
private Date periodeAwal;
|
||||
|
||||
|
||||
@Caption(value = "Periode Ahir")
|
||||
private Date periodeAhir;
|
||||
|
||||
|
||||
@Caption(value = "Tanggal Pengajuan")
|
||||
private Date tanggalPengajuan;
|
||||
|
||||
@ManyToOne(fetch = FetchType.LAZY)
|
||||
|
||||
@Caption(value = "Object Akun")
|
||||
private MataAnggaranVO akun;
|
||||
|
||||
@ManyToOne(fetch = FetchType.LAZY)
|
||||
|
||||
@Caption(value = "Object Asal Produk")
|
||||
private AsalProdukVO asalProduk;
|
||||
|
||||
@ManyToOne(fetch = FetchType.LAZY)
|
||||
|
||||
@Caption(value = "Object Komponen")
|
||||
private KomponenVO komponen;
|
||||
|
||||
@OneToMany(cascade=CascadeType.ALL,fetch = FetchType.LAZY, mappedBy = "detailAnggaran")
|
||||
private Set<DetailSpekAnggaranVO> detailSpekAnggaran = new HashSet<DetailSpekAnggaranVO>();
|
||||
|
||||
public String getDetailAnggaran() {
|
||||
return detailAnggaran;
|
||||
}
|
||||
private Set<DetailSpekAnggaranVO> detailSpekAnggaran = new HashSet<>();
|
||||
|
||||
public void setDetailAnggaran(String detailAnggaran) {
|
||||
this.detailAnggaran = detailAnggaran;
|
||||
}
|
||||
|
||||
public KegiatanAnggaranVO getKegiatanAnggaran() {
|
||||
return kegiatanAnggaran;
|
||||
}
|
||||
|
||||
public void setKegiatanAnggaran(KegiatanAnggaranVO kegiatanAnggaran) {
|
||||
this.kegiatanAnggaran = kegiatanAnggaran;
|
||||
}
|
||||
|
||||
public String getKdBarang() {
|
||||
return kdBarang;
|
||||
}
|
||||
|
||||
public void setKdBarang(String kdBarang) {
|
||||
this.kdBarang = kdBarang;
|
||||
}
|
||||
|
||||
public Date getPeriodeAwal() {
|
||||
return periodeAwal;
|
||||
}
|
||||
|
||||
public void setPeriodeAwal(Date periodeAwal) {
|
||||
this.periodeAwal = periodeAwal;
|
||||
}
|
||||
|
||||
public Date getPeriodeAhir() {
|
||||
return periodeAhir;
|
||||
}
|
||||
|
||||
public void setPeriodeAhir(Date periodeAhir) {
|
||||
this.periodeAhir = periodeAhir;
|
||||
}
|
||||
|
||||
public Date getTanggalPengajuan() {
|
||||
return tanggalPengajuan;
|
||||
}
|
||||
|
||||
public void setTanggalPengajuan(Date tanggalPengajuan) {
|
||||
this.tanggalPengajuan = tanggalPengajuan;
|
||||
}
|
||||
|
||||
|
||||
public MataAnggaranVO getAkun() {
|
||||
return akun;
|
||||
}
|
||||
|
||||
public void setAkun(MataAnggaranVO akun) {
|
||||
this.akun = akun;
|
||||
}
|
||||
|
||||
public AsalProdukVO getAsalProduk() {
|
||||
return asalProduk;
|
||||
}
|
||||
|
||||
public void setAsalProduk(AsalProdukVO asalProduk) {
|
||||
this.asalProduk = asalProduk;
|
||||
}
|
||||
|
||||
public KomponenVO getKomponen() {
|
||||
return komponen;
|
||||
}
|
||||
|
||||
public void setKomponen(KomponenVO komponen) {
|
||||
this.komponen = komponen;
|
||||
}
|
||||
|
||||
public Set<DetailSpekAnggaranVO> getDetailSpekAnggaran() {
|
||||
return detailSpekAnggaran;
|
||||
}
|
||||
|
||||
public void setDetailSpekAnggaran(Set<DetailSpekAnggaranVO> detailSpekAnggaran) {
|
||||
this.detailSpekAnggaran = detailSpekAnggaran;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -1,81 +1,34 @@
|
||||
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 DetailAsalRujukan
|
||||
* class DetailAsalRujukanVO
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
//@Entity
|
||||
//@Table(name = "DetailAsalRujukan_M")
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailAsalRujukanVO extends BaseMasterVO {
|
||||
@Caption(value="Detail Asal Rujukan")
|
||||
|
||||
@Caption(value = "Detail Asal Rujukan")
|
||||
private String detailAsalRujukan;
|
||||
|
||||
public void setDetailAsalRujukan(String detailAsalRujukan) {
|
||||
this.detailAsalRujukan = detailAsalRujukan;
|
||||
}
|
||||
|
||||
@Column(name = "DetailAsalRujukan", nullable = false , length = 50)
|
||||
public String getDetailAsalRujukan(){
|
||||
return this.detailAsalRujukan;
|
||||
}
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectAsalRujukanFk")
|
||||
@NotNull(message="Object Asal Rujukan Harus Diisi")
|
||||
@Caption(value="Object Asal Rujukan")
|
||||
@NotNull(message = "Object Asal Rujukan Harus Diisi")
|
||||
@Caption(value = "Object Asal Rujukan")
|
||||
private AsalRujukanVO asalRujukan;
|
||||
|
||||
public void setAsalRujukan(AsalRujukanVO asalRujukan) {
|
||||
this.asalRujukan = asalRujukan;
|
||||
}
|
||||
|
||||
@Column(name = "KdAsalRujukan", nullable = false , length = 1)
|
||||
public AsalRujukanVO getAsalRujukan(){
|
||||
return this.asalRujukan;
|
||||
}
|
||||
|
||||
@Column(name = "ObjectAsalRujukanFk", insertable=false,updatable=false)
|
||||
private Integer asalRujukanId;
|
||||
|
||||
@Caption(value="Kode Detail Asal Rujukan")
|
||||
@Caption(value = "Kode Detail Asal Rujukan")
|
||||
private String kdDetailAsalRujukan;
|
||||
|
||||
public void setKdDetailAsalRujukan(String kdDetailAsalRujukan) {
|
||||
this.kdDetailAsalRujukan = kdDetailAsalRujukan;
|
||||
}
|
||||
|
||||
@Column(name = "KdDetailAsalRujukan", nullable = false , length = 4)
|
||||
public String getKdDetailAsalRujukan(){
|
||||
return this.kdDetailAsalRujukan;
|
||||
}
|
||||
|
||||
@Caption(value="QDetail Asal Rujukan")
|
||||
@Caption(value = "QDetail Asal Rujukan")
|
||||
private short qDetailAsalRujukan;
|
||||
|
||||
public void setqDetailAsalRujukan(short qDetailAsalRujukan) {
|
||||
this.qDetailAsalRujukan = qDetailAsalRujukan;
|
||||
}
|
||||
|
||||
@Column(name = "QDetailAsalRujukan", nullable = false )
|
||||
public short getqDetailAsalRujukan(){
|
||||
return this.qDetailAsalRujukan;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,66 +1,30 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
import javax.persistence.*;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonBackReference;
|
||||
import javax.validation.constraints.NotNull;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
/**
|
||||
* class DetailBerkasLamaranVOVO
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailBerkasLamaranVO extends BaseMasterVO {
|
||||
|
||||
|
||||
private BerkasLamaranVO berkasLamaran;
|
||||
|
||||
|
||||
|
||||
public BerkasLamaranVO getBerkasLamaran() {
|
||||
return berkasLamaran;
|
||||
}
|
||||
|
||||
public void setBerkasLamaran(BerkasLamaranVO berkasLamaran) {
|
||||
this.berkasLamaran = berkasLamaran;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "SyaratFk")
|
||||
@NotNull(message = "Syarat Harus Diisi")
|
||||
@Caption(value = "Syarat")
|
||||
private PersyaratanPelamarVO syarat;
|
||||
@Column(name = "SyaratFk", insertable = false, updatable = false)
|
||||
|
||||
private String syaratId;
|
||||
|
||||
public PersyaratanPelamarVO getSyarat() {
|
||||
return syarat;
|
||||
}
|
||||
|
||||
public void setSyarat(PersyaratanPelamarVO syarat) {
|
||||
this.syarat = syarat;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@Column(name = "Status", nullable = false, length = 100)
|
||||
@Caption(value = "Status")
|
||||
private String status;
|
||||
|
||||
public String getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(String status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
}
|
||||
@ -1,48 +1,27 @@
|
||||
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 DetailCheckOut
|
||||
* class DetailCheckOut
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
//@Entity
|
||||
//@Table(name = "RM_DetailCheckOut_M")
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailCheckOutVO extends BaseMasterVO {
|
||||
@NotNull(message="Title tidak boleh kosong")
|
||||
@Column(name = "Title", nullable = false, length = 100)
|
||||
|
||||
@NotNull(message = "Title tidak boleh kosong")
|
||||
@Caption(value = "Title")
|
||||
private String title;
|
||||
public void setTitle(String title)
|
||||
{
|
||||
this.title = title;
|
||||
}
|
||||
public String getTitle()
|
||||
{
|
||||
return this.title;
|
||||
}
|
||||
|
||||
|
||||
@NotNull(message="Children tidak boleh kosong")
|
||||
@Column(name = "Children", nullable = false, length = 100)
|
||||
@NotNull(message = "Children tidak boleh kosong")
|
||||
@Caption(value = "Children")
|
||||
private String children;
|
||||
public void setChildren(String children)
|
||||
{
|
||||
this.children = children;
|
||||
}
|
||||
public String getChildren()
|
||||
{
|
||||
return this.children;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
@ -1,74 +1,32 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
import java.util.Date;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.ManyToOne;
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
|
||||
/**
|
||||
* class RiwayatPenyakitPengobatan
|
||||
* class RiwayatPenyakitPengobatan
|
||||
*
|
||||
* @author Adik
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailDiagnosaPasienVO extends MedicalRecordTransactionVO {
|
||||
|
||||
@ManyToOne
|
||||
@NotNull(message="Diagnosa harus Diisi")
|
||||
@Caption(value="Diagnosa ")
|
||||
@NotNull(message = "Diagnosa harus Diisi")
|
||||
@Caption(value = "Diagnosa ")
|
||||
private DiagnosaVO diagnosa;
|
||||
|
||||
@ManyToOne
|
||||
@NotNull(message="Jenis Diagnosa harus Diisi")
|
||||
@Caption(value="Jenis Diagnosa ")
|
||||
|
||||
@NotNull(message = "Jenis Diagnosa harus Diisi")
|
||||
@Caption(value = "Jenis Diagnosa ")
|
||||
private JenisDiagnosaVO jenisDiagnosa;
|
||||
|
||||
@Column(name = "tglInputDiagnosa", nullable = true )
|
||||
@Caption(value="tglInputDiagnosa")
|
||||
@Caption(value = "tglInputDiagnosa")
|
||||
private Date tglInputDiagnosa;
|
||||
|
||||
|
||||
private String keterangan;
|
||||
|
||||
public DiagnosaVO getDiagnosa() {
|
||||
return diagnosa;
|
||||
}
|
||||
|
||||
|
||||
public void setDiagnosa(DiagnosaVO diagnosa) {
|
||||
this.diagnosa = diagnosa;
|
||||
}
|
||||
|
||||
|
||||
public JenisDiagnosaVO getJenisDiagnosa() {
|
||||
return jenisDiagnosa;
|
||||
}
|
||||
|
||||
|
||||
public void setJenisDiagnosa(JenisDiagnosaVO jenisDiagnosa) {
|
||||
this.jenisDiagnosa = jenisDiagnosa;
|
||||
}
|
||||
|
||||
|
||||
public Date getTglInputDiagnosa() {
|
||||
return tglInputDiagnosa;
|
||||
}
|
||||
|
||||
public void setTglInputDiagnosa(Date tglInputDiagnosa) {
|
||||
this.tglInputDiagnosa = tglInputDiagnosa;
|
||||
}
|
||||
|
||||
|
||||
public String getKeterangan() {
|
||||
return keterangan;
|
||||
}
|
||||
|
||||
|
||||
public void setKeterangan(String keterangan) {
|
||||
this.keterangan = keterangan;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,28 +1,15 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.entities.TransferPasienInternal;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailDiagnosaSekunderVO extends BaseTransactionVO {
|
||||
|
||||
private DiagnosaVO diagnosa ;
|
||||
|
||||
|
||||
private DiagnosaVO diagnosa;
|
||||
|
||||
private TransferPasienInternalVO transferPasienInternal;
|
||||
|
||||
public DiagnosaVO getDiagnosa() {
|
||||
return diagnosa;
|
||||
}
|
||||
|
||||
public void setDiagnosa(DiagnosaVO diagnosa) {
|
||||
this.diagnosa = diagnosa;
|
||||
}
|
||||
|
||||
public TransferPasienInternalVO getTransferPasienInternal() {
|
||||
return transferPasienInternal;
|
||||
}
|
||||
|
||||
public void setTransferPasienInternal(TransferPasienInternalVO transferPasienInternal) {
|
||||
this.transferPasienInternal = transferPasienInternal;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -1,54 +1,29 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
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 RiwayatPenyakitPengobatan
|
||||
* class RiwayatPenyakitPengobatan
|
||||
*
|
||||
* @author Adik
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailDiagnosaTindakanPasienVO extends BaseTransactionVO {
|
||||
|
||||
@ManyToOne
|
||||
@NotNull(message="Diagnosa Tindakan Pasien harus Diisi")
|
||||
@Caption(value="Diagnosa Tindakan Pasien")
|
||||
|
||||
@NotNull(message = "Diagnosa Tindakan Pasien harus Diisi")
|
||||
@Caption(value = "Diagnosa Tindakan Pasien")
|
||||
private DiagnosaTindakanPasienVO diagnosaTindakanPasien;
|
||||
|
||||
@ManyToOne
|
||||
@NotNull(message="Diagnosa Tindakan")
|
||||
@Caption(value="Diagnosa Tindakan ")
|
||||
|
||||
@NotNull(message = "Diagnosa Tindakan")
|
||||
@Caption(value = "Diagnosa Tindakan ")
|
||||
private DiagnosaTindakanVO diagnosaTindakan;
|
||||
|
||||
private Integer jumlah;
|
||||
public Integer getJumlah() {
|
||||
return jumlah;
|
||||
}
|
||||
|
||||
public void setJumlah(Integer jumlah) {
|
||||
this.jumlah = jumlah;
|
||||
}
|
||||
|
||||
public DiagnosaTindakanPasienVO getDiagnosaTindakanPasien() {
|
||||
return diagnosaTindakanPasien;
|
||||
}
|
||||
|
||||
public void setDiagnosaTindakanPasien(DiagnosaTindakanPasienVO diagnosaTindakanPasien) {
|
||||
this.diagnosaTindakanPasien = diagnosaTindakanPasien;
|
||||
}
|
||||
|
||||
public DiagnosaTindakanVO getDiagnosaTindakan() {
|
||||
return diagnosaTindakan;
|
||||
}
|
||||
|
||||
public void setDiagnosaTindakan(DiagnosaTindakanVO diagnosaTindakan) {
|
||||
this.diagnosaTindakan = diagnosaTindakan;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,224 +1,55 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.JoinColumn;
|
||||
import javax.persistence.ManyToOne;
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonBackReference;
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* class PosisiRahim
|
||||
* class PosisiRahim
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailDokterOperasiVO extends BaseTransactionVO {
|
||||
|
||||
@ManyToOne
|
||||
@NotNull(message="Produk Harus Diisi")
|
||||
@Caption(value="Penghitungan Kassa Dan Alat Operasi")
|
||||
//@JsonBackReference
|
||||
|
||||
@NotNull(message = "Produk Harus Diisi")
|
||||
@Caption(value = "Penghitungan Kassa Dan Alat Operasi")
|
||||
private PenghitunganKassaDanAlatOperasiVO penghitunganKassaDanAlatOperasi;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectProdukFk")
|
||||
@Caption(value="Nama Alat Yang Digunakan")
|
||||
|
||||
@Caption(value = "Nama Alat Yang Digunakan")
|
||||
private ProdukVO produk;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectkAhliBedahFk")
|
||||
@NotNull(message="Ahli Bedah Harus Diisi")
|
||||
@Caption(value="Ahli Bedah")
|
||||
|
||||
@NotNull(message = "Ahli Bedah Harus Diisi")
|
||||
@Caption(value = "Ahli Bedah")
|
||||
private PegawaiVO ahliBedah;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectkAsistenFk")
|
||||
@NotNull(message="Asisten Harus Diisi")
|
||||
@Caption(value="Asisten")
|
||||
|
||||
@NotNull(message = "Asisten Harus Diisi")
|
||||
@Caption(value = "Asisten")
|
||||
private PegawaiVO asisten;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectkPerawatInstrumenFk")
|
||||
@NotNull(message="Perawat Instrumen Harus Diisi")
|
||||
@Caption(value="Perawat Instrumen")
|
||||
|
||||
@NotNull(message = "Perawat Instrumen Harus Diisi")
|
||||
@Caption(value = "Perawat Instrumen")
|
||||
private PegawaiVO perawatInstrumen;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectkPerawatSekulerFk")
|
||||
@NotNull(message="Perawat Sekuler Harus Diisi")
|
||||
@Caption(value="Perawat Sekuler")
|
||||
|
||||
@NotNull(message = "Perawat Sekuler Harus Diisi")
|
||||
@Caption(value = "Perawat Sekuler")
|
||||
private PegawaiVO perawatSekuler;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectkPerawatSirkulerFk")
|
||||
@NotNull(message="Perawat SirkulerHarus Diisi")
|
||||
@Caption(value="Perawat Sirkuler")
|
||||
@NotNull(message = "Perawat SirkulerHarus Diisi")
|
||||
@Caption(value = "Perawat Sirkuler")
|
||||
private PegawaiVO perawatSirkuler;
|
||||
|
||||
//@Column(name = "ahliBedah")
|
||||
//private String ahliBedah;
|
||||
|
||||
//@Column(name = "asisten")
|
||||
//private String asisten;
|
||||
|
||||
//@Column(name = "perawatInstrumen")
|
||||
//private String perawatInstrumen;
|
||||
|
||||
//@Column(name = "perawatSekuler")
|
||||
//private String perawatSekuler;
|
||||
|
||||
@Column(name = "kondisiSterilisasi")
|
||||
private String kondisiSterilisasi;
|
||||
|
||||
@Column(name = "load")
|
||||
|
||||
private String load;
|
||||
|
||||
//@Column(name = "perawatSirkuler")
|
||||
//private String perawatSirkuler;
|
||||
|
||||
@Column(name = "tanggalSteril")
|
||||
|
||||
private Date tanggalSteril;
|
||||
|
||||
@Column(name = "alat")
|
||||
private String alat;
|
||||
|
||||
public PenghitunganKassaDanAlatOperasiVO getPenghitunganKassaDanAlatOperasi() {
|
||||
return penghitunganKassaDanAlatOperasi;
|
||||
}
|
||||
|
||||
public void setPenghitunganKassaDanAlatOperasi(PenghitunganKassaDanAlatOperasiVO penghitunganKassaDanAlatOperasi) {
|
||||
this.penghitunganKassaDanAlatOperasi = penghitunganKassaDanAlatOperasi;
|
||||
}
|
||||
|
||||
public ProdukVO getProduk() {
|
||||
return produk;
|
||||
}
|
||||
|
||||
public void setProduk(ProdukVO produk) {
|
||||
this.produk = produk;
|
||||
}
|
||||
|
||||
//public String getAhliBedah() {
|
||||
// return ahliBedah;
|
||||
//}
|
||||
|
||||
//public void setAhliBedah(String ahliBedah) {
|
||||
// this.ahliBedah = ahliBedah;
|
||||
//}
|
||||
|
||||
//public String getAsisten() {
|
||||
// return asisten;
|
||||
//}
|
||||
|
||||
//public void setAsisten(String asisten) {
|
||||
// this.asisten = asisten;
|
||||
//}
|
||||
|
||||
//public String getPerawatInstrumen() {
|
||||
// return perawatInstrumen;
|
||||
//}
|
||||
|
||||
//public void setPerawatInstrumen(String perawatInstrumen) {
|
||||
// this.perawatInstrumen = perawatInstrumen;
|
||||
//}
|
||||
|
||||
//public String getPerawatSekuler() {
|
||||
// return perawatSekuler;
|
||||
//}
|
||||
|
||||
//public void setPerawatSekuler(String perawatSekuler) {
|
||||
// this.perawatSekuler = perawatSekuler;
|
||||
//}
|
||||
|
||||
//public String getKondisiSterilisasi() {
|
||||
// return kondisiSterilisasi;
|
||||
//}
|
||||
|
||||
public void setKondisiSterilisasi(String kondisiSterilisasi) {
|
||||
this.kondisiSterilisasi = kondisiSterilisasi;
|
||||
}
|
||||
|
||||
public String getLoad() {
|
||||
return load;
|
||||
}
|
||||
|
||||
public void setLoad(String load) {
|
||||
this.load = load;
|
||||
}
|
||||
|
||||
//public String getPerawatSirkuler() {
|
||||
// return perawatSirkuler;
|
||||
//}
|
||||
|
||||
//public void setPerawatSirkuler(String perawatSirkuler) {
|
||||
// this.perawatSirkuler = perawatSirkuler;
|
||||
//}
|
||||
|
||||
public Date getTanggalSteril() {
|
||||
return tanggalSteril;
|
||||
}
|
||||
|
||||
public void setTanggalSteril(Date tanggalSteril) {
|
||||
this.tanggalSteril = tanggalSteril;
|
||||
}
|
||||
|
||||
public PegawaiVO getAhliBedah() {
|
||||
return ahliBedah;
|
||||
}
|
||||
|
||||
public void setAhliBedah(PegawaiVO ahliBedah) {
|
||||
this.ahliBedah = ahliBedah;
|
||||
}
|
||||
|
||||
public PegawaiVO getAsisten() {
|
||||
return asisten;
|
||||
}
|
||||
|
||||
public void setAsisten(PegawaiVO asisten) {
|
||||
this.asisten = asisten;
|
||||
}
|
||||
|
||||
public PegawaiVO getPerawatInstrumen() {
|
||||
return perawatInstrumen;
|
||||
}
|
||||
|
||||
public void setPerawatInstrumen(PegawaiVO perawatInstrumen) {
|
||||
this.perawatInstrumen = perawatInstrumen;
|
||||
}
|
||||
|
||||
public PegawaiVO getPerawatSekuler() {
|
||||
return perawatSekuler;
|
||||
}
|
||||
|
||||
public void setPerawatSekuler(PegawaiVO perawatSekuler) {
|
||||
this.perawatSekuler = perawatSekuler;
|
||||
}
|
||||
|
||||
public PegawaiVO getPerawatSirkuler() {
|
||||
return perawatSirkuler;
|
||||
}
|
||||
|
||||
public void setPerawatSirkuler(PegawaiVO perawatSirkuler) {
|
||||
this.perawatSirkuler = perawatSirkuler;
|
||||
}
|
||||
|
||||
public String getKondisiSterilisasi() {
|
||||
return kondisiSterilisasi;
|
||||
}
|
||||
|
||||
public String getAlat() {
|
||||
return alat;
|
||||
}
|
||||
|
||||
public void setAlat(String alat) {
|
||||
this.alat = alat;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,86 +1,32 @@
|
||||
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 DetailDraftPeraturanVO extends BaseMasterVO {
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectDraftPeraturanFk")
|
||||
@NotNull(message="Draft Peraturan tidak boleh kosong")
|
||||
@Caption(value="Draft Peraturan")
|
||||
@NotNull(message = "Draft Peraturan tidak boleh kosong")
|
||||
@Caption(value = "Draft Peraturan")
|
||||
private DraftPeraturanVO draftPeraturan;
|
||||
|
||||
@Column(name = "ObjectDraftPeraturanFk", insertable=false,updatable=false,nullable=false)
|
||||
|
||||
private Integer draftPeraturanId;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectTujuanDraftFk")
|
||||
@NotNull(message="Tujuan Draft tidak boleh kosong")
|
||||
@Caption(value="Tujuan Draft")
|
||||
|
||||
@NotNull(message = "Tujuan Draft tidak boleh kosong")
|
||||
@Caption(value = "Tujuan Draft")
|
||||
private JabatanVO tujuanDraft;
|
||||
|
||||
@Column(name = "ObjectTujuanDraftFk", insertable=false,updatable=false,nullable=false)
|
||||
|
||||
private Integer tujuanId;
|
||||
|
||||
@Column(name="koreksi",nullable=true)
|
||||
@Caption(value="Koreksi")
|
||||
@Caption(value = "Koreksi")
|
||||
private String koreksi;
|
||||
|
||||
@Column(name="statusDraft",nullable=true)
|
||||
@Caption(value="Status Draft")
|
||||
|
||||
@Caption(value = "Status Draft")
|
||||
private String statusDraft;
|
||||
|
||||
public DraftPeraturanVO getDraftPeraturan() {
|
||||
return draftPeraturan;
|
||||
}
|
||||
|
||||
public void setDraftPeraturan(DraftPeraturanVO draftPeraturan) {
|
||||
this.draftPeraturan = draftPeraturan;
|
||||
}
|
||||
|
||||
public Integer getDraftPeraturanId() {
|
||||
return draftPeraturanId;
|
||||
}
|
||||
|
||||
public void setDraftPeraturanId(Integer draftPeraturanId) {
|
||||
this.draftPeraturanId = draftPeraturanId;
|
||||
}
|
||||
|
||||
public JabatanVO getTujuanDraft() {
|
||||
return tujuanDraft;
|
||||
}
|
||||
|
||||
public void setTujuanDraft(JabatanVO tujuanDraft) {
|
||||
this.tujuanDraft = tujuanDraft;
|
||||
}
|
||||
|
||||
public Integer getTujuanId() {
|
||||
return tujuanId;
|
||||
}
|
||||
|
||||
public void setTujuanId(Integer tujuanId) {
|
||||
this.tujuanId = tujuanId;
|
||||
}
|
||||
|
||||
public String getKoreksi() {
|
||||
return koreksi;
|
||||
}
|
||||
|
||||
public void setKoreksi(String koreksi) {
|
||||
this.koreksi = koreksi;
|
||||
}
|
||||
|
||||
public String getStatusDraft() {
|
||||
return statusDraft;
|
||||
}
|
||||
|
||||
public void setStatusDraft(String statusDraft) {
|
||||
this.statusDraft = statusDraft;
|
||||
}
|
||||
}
|
||||
|
||||
@ -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 DetailGolonganProduk
|
||||
* class DetailGolonganProduk
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
//@Entity
|
||||
//@Table(name = "DetailGolonganProduk_M")
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailGolonganProdukVO extends BaseMasterVO {
|
||||
@Caption(value="Detail Golongan Produk")
|
||||
|
||||
@Caption(value = "Detail Golongan Produk")
|
||||
private String detailGolonganProduk;
|
||||
|
||||
public void setDetailGolonganProduk(String detailGolonganProduk) {
|
||||
this.detailGolonganProduk = detailGolonganProduk;
|
||||
}
|
||||
|
||||
@Column(name = "DetailGolonganProduk", nullable = false , length = 30)
|
||||
public String getDetailGolonganProduk(){
|
||||
return this.detailGolonganProduk;
|
||||
}
|
||||
|
||||
@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;
|
||||
|
||||
@Caption(value="Kode Detail Golongan Produk")
|
||||
@Caption(value = "Kode Detail Golongan Produk")
|
||||
private Byte kdDetailGolonganProduk;
|
||||
|
||||
public void setKdDetailGolonganProduk(Byte kdDetailGolonganProduk) {
|
||||
this.kdDetailGolonganProduk = kdDetailGolonganProduk;
|
||||
}
|
||||
|
||||
@Column(name = "KdDetailGolonganProduk", nullable = false )
|
||||
public Byte getKdDetailGolonganProduk(){
|
||||
return this.kdDetailGolonganProduk;
|
||||
}
|
||||
|
||||
@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="QDetail Golongan Produk")
|
||||
@Caption(value = "QDetail Golongan Produk")
|
||||
private Byte qDetailGolonganProduk;
|
||||
|
||||
public void setqDetailGolonganProduk(Byte qDetailGolonganProduk) {
|
||||
this.qDetailGolonganProduk = qDetailGolonganProduk;
|
||||
}
|
||||
|
||||
@Column(name = "QDetailGolonganProduk", nullable = false )
|
||||
public Byte getqDetailGolonganProduk(){
|
||||
return this.qDetailGolonganProduk;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,110 +1,39 @@
|
||||
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 DetailHVAVO extends BaseTransactionVO{
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailHVAVO extends BaseTransactionVO {
|
||||
|
||||
@ManyToOne(fetch=FetchType.LAZY)
|
||||
@Caption(value="Object HVA")
|
||||
@Caption(value = "Object HVA")
|
||||
private HVAVO hva;
|
||||
|
||||
@Caption(value="Event")
|
||||
|
||||
@Caption(value = "Event")
|
||||
private String event;
|
||||
|
||||
@Caption(value="Probability")
|
||||
|
||||
@Caption(value = "Probability")
|
||||
private Integer probability;
|
||||
|
||||
@Caption(value="Human Impact")
|
||||
|
||||
@Caption(value = "Human Impact")
|
||||
private Integer humanImpact;
|
||||
|
||||
@Caption(value="Property Impact")
|
||||
|
||||
@Caption(value = "Property Impact")
|
||||
private Integer propertyImpact;
|
||||
|
||||
@Caption(value="Business Impact")
|
||||
|
||||
@Caption(value = "Business Impact")
|
||||
private Integer businessImpact;
|
||||
|
||||
@Caption(value="Preparedness")
|
||||
|
||||
@Caption(value = "Preparedness")
|
||||
private Integer preparedness;
|
||||
|
||||
@Caption(value="Internal Response")
|
||||
|
||||
@Caption(value = "Internal Response")
|
||||
private Integer internalResponse;
|
||||
|
||||
@Caption(value="External Response")
|
||||
|
||||
@Caption(value = "External Response")
|
||||
private Integer externalResponse;
|
||||
|
||||
public HVAVO getHva() {
|
||||
return hva;
|
||||
}
|
||||
|
||||
public void setHva(HVAVO hva) {
|
||||
this.hva = hva;
|
||||
}
|
||||
|
||||
public String getEvent() {
|
||||
return event;
|
||||
}
|
||||
|
||||
public void setEvent(String event) {
|
||||
this.event = event;
|
||||
}
|
||||
|
||||
public Integer getProbability() {
|
||||
return probability;
|
||||
}
|
||||
|
||||
public void setProbability(Integer probability) {
|
||||
this.probability = probability;
|
||||
}
|
||||
|
||||
public Integer getHumanImpact() {
|
||||
return humanImpact;
|
||||
}
|
||||
|
||||
public void setHumanImpact(Integer humanImpact) {
|
||||
this.humanImpact = humanImpact;
|
||||
}
|
||||
|
||||
public Integer getPropertyImpact() {
|
||||
return propertyImpact;
|
||||
}
|
||||
|
||||
public void setPropertyImpact(Integer propertyImpact) {
|
||||
this.propertyImpact = propertyImpact;
|
||||
}
|
||||
|
||||
public Integer getBusinessImpact() {
|
||||
return businessImpact;
|
||||
}
|
||||
|
||||
public void setBusinessImpact(Integer businessImpact) {
|
||||
this.businessImpact = businessImpact;
|
||||
}
|
||||
|
||||
public Integer getPreparedness() {
|
||||
return preparedness;
|
||||
}
|
||||
|
||||
public void setPreparedness(Integer preparedness) {
|
||||
this.preparedness = preparedness;
|
||||
}
|
||||
|
||||
public Integer getInternalResponse() {
|
||||
return internalResponse;
|
||||
}
|
||||
|
||||
public void setInternalResponse(Integer internalResponse) {
|
||||
this.internalResponse = internalResponse;
|
||||
}
|
||||
|
||||
public Integer getExternalResponse() {
|
||||
return externalResponse;
|
||||
}
|
||||
|
||||
public void setExternalResponse(Integer externalResponse) {
|
||||
this.externalResponse = externalResponse;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -1,46 +1,20 @@
|
||||
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;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailHasilDeviceVO {
|
||||
|
||||
private String noOrder;
|
||||
|
||||
private String noSample;
|
||||
|
||||
private Integer noDetail;
|
||||
|
||||
private String hasil;
|
||||
|
||||
private String komen;
|
||||
public String getNoOrder() {
|
||||
return noOrder;
|
||||
}
|
||||
public void setNoOrder(String noOrder) {
|
||||
this.noOrder = noOrder;
|
||||
}
|
||||
public String getNoSample() {
|
||||
return noSample;
|
||||
}
|
||||
public void setNoSample(String noSample) {
|
||||
this.noSample = noSample;
|
||||
}
|
||||
public String getHasil() {
|
||||
return hasil;
|
||||
}
|
||||
public void setHasil(String hasil) {
|
||||
this.hasil = hasil;
|
||||
}
|
||||
public String getKomen() {
|
||||
return komen;
|
||||
}
|
||||
public void setKomen(String komen) {
|
||||
this.komen = komen;
|
||||
}
|
||||
public Integer getNoDetail() {
|
||||
return noDetail;
|
||||
}
|
||||
public void setNoDetail(Integer noDetail) {
|
||||
this.noDetail = noDetail;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -13,6 +13,7 @@ import javax.validation.constraints.NotNull;
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailHasilTriaseVO extends BaseTransactionVO {
|
||||
|
||||
@Caption(value = "ID HasilTriase")
|
||||
@NotNull(message = "ID HasilTriase tidak boleh kosong")
|
||||
private HasilTriaseVO hasilTriase;
|
||||
@ -20,4 +21,5 @@ public class DetailHasilTriaseVO extends BaseTransactionVO {
|
||||
@Caption(value = "ID PemeriksaanTriage")
|
||||
@NotNull(message = "ID PemeriksaanTriage tidak boleh kosong")
|
||||
private PemeriksaanTriageVO pemeriksaanTriage;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -1,27 +1,15 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailImplementasiVO extends BaseTransactionVO {
|
||||
|
||||
|
||||
private MappingDiagnosaKeperawatanVO mappingDiagnosaKeperawatan;
|
||||
|
||||
|
||||
private ImplementasiVO implementasi;
|
||||
|
||||
public MappingDiagnosaKeperawatanVO getMappingDiagnosaKeperawatan() {
|
||||
return mappingDiagnosaKeperawatan;
|
||||
}
|
||||
|
||||
public void setMappingDiagnosaKeperawatan(MappingDiagnosaKeperawatanVO mappingDiagnosaKeperawatan) {
|
||||
this.mappingDiagnosaKeperawatan = mappingDiagnosaKeperawatan;
|
||||
}
|
||||
|
||||
public ImplementasiVO getImplementasi() {
|
||||
return implementasi;
|
||||
}
|
||||
|
||||
public void setImplementasi(ImplementasiVO implementasi) {
|
||||
this.implementasi = implementasi;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -1,77 +1,31 @@
|
||||
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 com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonBackReference;
|
||||
import com.jasamedika.medifirst2000.base.BaseMaster;
|
||||
import com.jasamedika.medifirst2000.base.BaseTransaction;
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.entities.InformasiMedis;
|
||||
import com.jasamedika.medifirst2000.entities.TransferPasienInternal;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
|
||||
/**
|
||||
* class Agama
|
||||
* class DetailInformasiMedisVO
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailInformasiMedisVO extends BaseTransactionVO {
|
||||
|
||||
@ManyToOne
|
||||
@Caption(value="Transfer Pasien Internal")
|
||||
@NotNull(message="TransferPasienInternal Harus Diisi")
|
||||
|
||||
@Caption(value = "Transfer Pasien Internal")
|
||||
@NotNull(message = "TransferPasienInternal Harus Diisi")
|
||||
private TransferPasienInternalVO transferPasienInternal;
|
||||
|
||||
@Column(name = "objectTransferPasienInternalFk", insertable=false,updatable=false,nullable=false)
|
||||
private String transferPasienInternalId;
|
||||
|
||||
@ManyToOne
|
||||
@Caption(value="InformasiMedis Pasien")
|
||||
@NotNull(message="InformasiMedis Harus Diisi")
|
||||
|
||||
@Caption(value = "InformasiMedis Pasien")
|
||||
@NotNull(message = "InformasiMedis Harus Diisi")
|
||||
private InformasiMedisVO informasiMedis;
|
||||
|
||||
@Column(name = "checked")
|
||||
|
||||
private Boolean checked;
|
||||
|
||||
public TransferPasienInternalVO getTransferPasienInternal() {
|
||||
return transferPasienInternal;
|
||||
}
|
||||
|
||||
public void setTransferPasienInternal(TransferPasienInternalVO transferPasienInternal) {
|
||||
this.transferPasienInternal = transferPasienInternal;
|
||||
}
|
||||
|
||||
public String getTransferPasienInternalId() {
|
||||
return transferPasienInternalId;
|
||||
}
|
||||
|
||||
public void setTransferPasienInternalId(String transferPasienInternalId) {
|
||||
this.transferPasienInternalId = transferPasienInternalId;
|
||||
}
|
||||
|
||||
public InformasiMedisVO getInformasiMedis() {
|
||||
return informasiMedis;
|
||||
}
|
||||
|
||||
public void setInformasiMedis(InformasiMedisVO informasiMedis) {
|
||||
this.informasiMedis = informasiMedis;
|
||||
}
|
||||
|
||||
|
||||
public Boolean getChecked() {
|
||||
return checked;
|
||||
}
|
||||
|
||||
public void setChecked(Boolean checked) {
|
||||
this.checked = checked;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,27 +1,15 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailIntervensiVO extends BaseTransactionVO {
|
||||
|
||||
|
||||
private MappingDiagnosaKeperawatanVO mappingDiagnosaKeperawatan;
|
||||
|
||||
|
||||
private IntervensiVO intervensi;
|
||||
|
||||
public MappingDiagnosaKeperawatanVO getMappingDiagnosaKeperawatan() {
|
||||
return mappingDiagnosaKeperawatan;
|
||||
}
|
||||
|
||||
public void setMappingDiagnosaKeperawatan(MappingDiagnosaKeperawatanVO mappingDiagnosaKeperawatan) {
|
||||
this.mappingDiagnosaKeperawatan = mappingDiagnosaKeperawatan;
|
||||
}
|
||||
|
||||
public IntervensiVO getIntervensi() {
|
||||
return intervensi;
|
||||
}
|
||||
|
||||
public void setIntervensi(IntervensiVO intervensi) {
|
||||
this.intervensi = intervensi;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -1,40 +1,18 @@
|
||||
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.vo.BaseTransactionVO;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Entity
|
||||
@Table(name = "DetailJenisLimbah_T")
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailJenisLimbahVO extends BaseTransactionVO {
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectjenisLimbahB3MasukFk",nullable=false)
|
||||
|
||||
@NotNull(message = "Jenis Limbah tidak boleh kosong")
|
||||
private JenisLimbahB3MasukVO jenisLimbahB3Masuk;
|
||||
|
||||
@Column(name="jenisLimbahYangDikelola")
|
||||
private Double jumlah;
|
||||
|
||||
public JenisLimbahB3MasukVO getJenisLimbahB3Masuk() {
|
||||
return jenisLimbahB3Masuk;
|
||||
}
|
||||
|
||||
public void setJenisLimbahB3Masuk(JenisLimbahB3MasukVO jenisLimbahB3Masuk) {
|
||||
this.jenisLimbahB3Masuk = jenisLimbahB3Masuk;
|
||||
}
|
||||
|
||||
public Double getJumlah() {
|
||||
return jumlah;
|
||||
}
|
||||
|
||||
public void setJumlah(Double jumlah) {
|
||||
this.jumlah = jumlah;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -1,156 +1,51 @@
|
||||
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;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
/**
|
||||
* class DetailJenisProduk
|
||||
* class DetailJenisProduk
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
//@Entity
|
||||
//@Table(name = "DetailJenisProduk_M")
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailJenisProdukVO extends BaseMasterVO {
|
||||
@Caption(value="Detail Jenis Produk")
|
||||
|
||||
@Caption(value = "Detail Jenis Produk")
|
||||
private String detailJenisProduk;
|
||||
|
||||
public void setDetailJenisProduk(String detailJenisProduk) {
|
||||
this.detailJenisProduk = detailJenisProduk;
|
||||
}
|
||||
|
||||
@Column(name = "DetailJenisProduk", nullable = false , length = 50)
|
||||
public String getDetailJenisProduk(){
|
||||
return this.detailJenisProduk;
|
||||
}
|
||||
|
||||
@Caption(value="Is Registrasi Aset")
|
||||
@Caption(value = "Is Registrasi Aset")
|
||||
private Byte isRegistrasiAset;
|
||||
|
||||
public void setIsRegistrasiAset(Byte isRegistrasiAset) {
|
||||
this.isRegistrasiAset = isRegistrasiAset;
|
||||
}
|
||||
|
||||
@Column(name = "isRegistrasiAset", nullable = true )
|
||||
public Byte getIsRegistrasiAset(){
|
||||
return this.isRegistrasiAset;
|
||||
}
|
||||
|
||||
@ManyToOne(fetch=FetchType.LAZY)
|
||||
@JoinColumn(name = "ObjectAccountFk")
|
||||
@Caption(value="Object Account")
|
||||
@Caption(value = "Object Account")
|
||||
private ChartOfAccountVO account;
|
||||
|
||||
public void setAccount(ChartOfAccountVO account) {
|
||||
this.account = account;
|
||||
}
|
||||
|
||||
@Column(name = "KdAccount", nullable = true )
|
||||
public ChartOfAccountVO getAccount(){
|
||||
return this.account;
|
||||
}
|
||||
|
||||
@Column(name = "ObjectAccountFk", insertable=false,updatable=false)
|
||||
private Integer accountId;
|
||||
|
||||
@ManyToOne(fetch=FetchType.LAZY)
|
||||
@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;
|
||||
|
||||
@Caption(value="Kode Detail Jenis Produk")
|
||||
@Caption(value = "Kode Detail Jenis Produk")
|
||||
private String kdDetailJenisProduk;
|
||||
|
||||
public void setKdDetailJenisProduk(String kdDetailJenisProduk) {
|
||||
this.kdDetailJenisProduk = kdDetailJenisProduk;
|
||||
}
|
||||
|
||||
@Column(name = "KdDetailJenisProduk", nullable = false , length = 4)
|
||||
public String getKdDetailJenisProduk(){
|
||||
return this.kdDetailJenisProduk;
|
||||
}
|
||||
|
||||
@ManyToOne(fetch=FetchType.LAZY)
|
||||
@JoinColumn(name = "ObjectJenisProdukFk")
|
||||
@NotNull(message="Object Jenis ProdukVO Harus Diisi")
|
||||
@Caption(value="Object Jenis Produk")
|
||||
@NotNull(message = "Object Jenis ProdukVO Harus Diisi")
|
||||
@Caption(value = "Object Jenis Produk")
|
||||
private JenisProdukVO jenisProduk;
|
||||
|
||||
public void setJenisProduk(JenisProdukVO jenisProduk) {
|
||||
this.jenisProduk = jenisProduk;
|
||||
}
|
||||
|
||||
@Column(name = "KdJenisProduk", nullable = false , length = 2)
|
||||
public JenisProdukVO getJenisProduk(){
|
||||
return this.jenisProduk;
|
||||
}
|
||||
|
||||
@Column(name = "ObjectJenisProdukFk", insertable=false,updatable=false)
|
||||
private Integer jenisProdukId;
|
||||
|
||||
@Caption(value="Persen Harga Cito")
|
||||
@Caption(value = "Persen Harga Cito")
|
||||
private Double persenHargaCito;
|
||||
|
||||
public void setPersenHargaCito(Double persenHargaCito) {
|
||||
this.persenHargaCito = persenHargaCito;
|
||||
}
|
||||
|
||||
@Column(name = "PersenHargaCito", nullable = false )
|
||||
public Double getPersenHargaCito(){
|
||||
return this.persenHargaCito;
|
||||
}
|
||||
|
||||
@Caption(value="QDetail Jenis Produk")
|
||||
@Caption(value = "QDetail Jenis Produk")
|
||||
private short qDetailJenisProduk;
|
||||
|
||||
public void setqDetailJenisProduk(short qDetailJenisProduk) {
|
||||
this.qDetailJenisProduk = qDetailJenisProduk;
|
||||
}
|
||||
|
||||
@Column(name = "QDetailJenisProduk", nullable = false )
|
||||
public short getqDetailJenisProduk(){
|
||||
return this.qDetailJenisProduk;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*//
|
||||
@OneToMany(fetch=FetchType.LAZY, cascade = CascadeType.ALL, mappedBy="kddetailjenisproduk")
|
||||
private Set<HargaNettoProdukCitoD> HargaNettoProdukCitoDSet = new HashSet<HargaNettoProdukCitoD>();
|
||||
|
||||
public Set<HargaNettoProdukCitoD> getHargaNettoProdukCitoDSet() {
|
||||
return HargaNettoProdukCitoDSet;
|
||||
}
|
||||
|
||||
public void setHargaNettoProdukCitoDSet(Set<HargaNettoProdukCitoD> hargaNettoProdukCitoDSet) {
|
||||
HargaNettoProdukCitoDSet = hargaNettoProdukCitoDSet;
|
||||
}*/
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,65 +1,24 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import javax.persistence.Column;
|
||||
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 DetailKajianEvaluasiVO extends BaseMasterVO{
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailKajianEvaluasiVO extends BaseMasterVO {
|
||||
|
||||
@ManyToOne
|
||||
@Caption(value="Tujuan")
|
||||
@Caption(value = "Tujuan")
|
||||
private JabatanVO tujuan;
|
||||
|
||||
// @Column(name = "ObjectTujuanFk", insertable=false,updatable=false,nullable=false)
|
||||
// private Integer tujuanId;
|
||||
|
||||
@Column(name="statusUsulan")
|
||||
@Caption(value="Status Usulan")
|
||||
|
||||
@Caption(value = "Status Usulan")
|
||||
private String statusUsulan;
|
||||
|
||||
@Column(name="koreksi")
|
||||
@Caption(value="Koreksi")
|
||||
|
||||
@Caption(value = "Koreksi")
|
||||
private String koreksi;
|
||||
|
||||
@ManyToOne
|
||||
@Caption(value="Kajian Evaluasi")
|
||||
|
||||
@Caption(value = "Kajian Evaluasi")
|
||||
private KajianEvaluasiVO kajianEvaluasi;
|
||||
|
||||
public JabatanVO getTujuan() {
|
||||
return tujuan;
|
||||
}
|
||||
|
||||
public void setTujuan(JabatanVO tujuan) {
|
||||
this.tujuan = tujuan;
|
||||
}
|
||||
|
||||
public KajianEvaluasiVO getKajianEvaluasi() {
|
||||
return kajianEvaluasi;
|
||||
}
|
||||
|
||||
public void setKajianEvaluasi(KajianEvaluasiVO kajianEvaluasi) {
|
||||
this.kajianEvaluasi = kajianEvaluasi;
|
||||
}
|
||||
|
||||
public String getStatusUsulan() {
|
||||
return statusUsulan;
|
||||
}
|
||||
|
||||
public void setStatusUsulan(String statusUsulan) {
|
||||
this.statusUsulan = statusUsulan;
|
||||
}
|
||||
|
||||
public String getKoreksi() {
|
||||
return koreksi;
|
||||
}
|
||||
|
||||
public void setKoreksi(String koreksi) {
|
||||
this.koreksi = koreksi;
|
||||
}
|
||||
|
||||
// @Column(name = "ObjectKajianEvaluasiFk", insertable=false,updatable=false,nullable=false)
|
||||
// private Integer kajianId;
|
||||
|
||||
}
|
||||
|
||||
@ -1,198 +1,34 @@
|
||||
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;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
/**
|
||||
* class DetailKamar
|
||||
* class DetailKamar
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
//@Entity
|
||||
//@Table(name = "DetailKamar_M")
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailKamarVO extends BaseMasterVO {
|
||||
@Caption(value="Fasilitas")
|
||||
|
||||
@Caption(value = "Fasilitas")
|
||||
private String fasilitas;
|
||||
|
||||
public void setFasilitas(String fasilitas) {
|
||||
this.fasilitas = fasilitas;
|
||||
}
|
||||
|
||||
@Column(name = "Fasilitas", nullable = false , length = 300)
|
||||
public String getFasilitas(){
|
||||
return this.fasilitas;
|
||||
}
|
||||
|
||||
@Caption(value="Gambar")
|
||||
@Caption(value = "Gambar")
|
||||
private String gambar;
|
||||
|
||||
public void setGambar(String gambar) {
|
||||
this.gambar = gambar;
|
||||
}
|
||||
|
||||
@Column(name = "Gambar", nullable = true , length = 2147483647)
|
||||
public String getGambar(){
|
||||
return this.gambar;
|
||||
}
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectKelasFk")
|
||||
@NotNull(message="Object KelasVO Harus Diisi")
|
||||
@Caption(value="Object Kelas")
|
||||
@NotNull(message = "Object KelasVO Harus Diisi")
|
||||
@Caption(value = "Object Kelas")
|
||||
private KelasVO kelas;
|
||||
|
||||
public void setKelas(KelasVO kelas) {
|
||||
this.kelas = kelas;
|
||||
}
|
||||
|
||||
@Column(name = "KdKelas", nullable = false , length = 2)
|
||||
public KelasVO getKelas(){
|
||||
return this.kelas;
|
||||
}
|
||||
|
||||
@Column(name = "ObjectKelasFk", insertable=false,updatable=false)
|
||||
private Integer kelasId;
|
||||
|
||||
@Caption(value="Qty Kamar")
|
||||
@Caption(value = "Qty Kamar")
|
||||
private short qtyKamar;
|
||||
|
||||
public void setqtyKamar(short qtyKamar) {
|
||||
this.qtyKamar = qtyKamar;
|
||||
}
|
||||
|
||||
@Column(name = "QtyKamar", nullable = false )
|
||||
public short getqtyKamar(){
|
||||
return this.qtyKamar;
|
||||
}
|
||||
|
||||
/*//
|
||||
@OneToMany(fetch=FetchType.LAZY, cascade = CascadeType.ALL, mappedBy="kdkelasdijamin")
|
||||
private Set<AsuransiPasien> AsuransiPasienSet = new HashSet<AsuransiPasien>();
|
||||
|
||||
public Set<AsuransiPasien> getAsuransiPasienSet() {
|
||||
return AsuransiPasienSet;
|
||||
}
|
||||
|
||||
public void setAsuransiPasienSet(Set<AsuransiPasien> asuransiPasienSet) {
|
||||
AsuransiPasienSet = asuransiPasienSet;
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
@OneToMany(fetch=FetchType.LAZY, cascade = CascadeType.ALL, mappedBy="kdkelas")
|
||||
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="kdkelas")
|
||||
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="kdkelas")
|
||||
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="kdkelas")
|
||||
private Set<HargaPaketPenjamin> HargaPaketPenjaminSet = new HashSet<HargaPaketPenjamin>();
|
||||
|
||||
public Set<HargaPaketPenjamin> getHargaPaketPenjaminSet() {
|
||||
return HargaPaketPenjaminSet;
|
||||
}
|
||||
|
||||
public void setHargaPaketPenjaminSet(Set<HargaPaketPenjamin> hargaPaketPenjaminSet) {
|
||||
HargaPaketPenjaminSet = hargaPaketPenjaminSet;
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
@OneToMany(fetch=FetchType.LAZY, cascade = CascadeType.ALL, mappedBy="kdkelas")
|
||||
private Set<HargaPaketPenjaminLuarPaket> HargaPaketPenjaminLuarPaketSet = new HashSet<HargaPaketPenjaminLuarPaket>();
|
||||
|
||||
public Set<HargaPaketPenjaminLuarPaket> getHargaPaketPenjaminLuarPaketSet() {
|
||||
return HargaPaketPenjaminLuarPaketSet;
|
||||
}
|
||||
|
||||
public void setHargaPaketPenjaminLuarPaketSet(Set<HargaPaketPenjaminLuarPaket> hargaPaketPenjaminLuarPaketSet) {
|
||||
HargaPaketPenjaminLuarPaketSet = hargaPaketPenjaminLuarPaketSet;
|
||||
}
|
||||
|
||||
//
|
||||
@OneToMany(fetch=FetchType.LAZY, cascade = CascadeType.ALL, mappedBy="kdkelasdefault")
|
||||
private Set<JenisTransaksi> JenisTransaksiSet = new HashSet<JenisTransaksi>();
|
||||
|
||||
public Set<JenisTransaksi> getJenisTransaksiSet() {
|
||||
return JenisTransaksiSet;
|
||||
}
|
||||
|
||||
public void setJenisTransaksiSet(Set<JenisTransaksi> jenisTransaksiSet) {
|
||||
JenisTransaksiSet = jenisTransaksiSet;
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
@OneToMany(fetch=FetchType.LAZY, cascade = CascadeType.ALL, mappedBy="kdkelas")
|
||||
private Set<Kamar> KamarSet = new HashSet<Kamar>();
|
||||
|
||||
public Set<Kamar> getKamarSet() {
|
||||
return KamarSet;
|
||||
}
|
||||
|
||||
public void setKamarSet(Set<Kamar> kamarSet) {
|
||||
KamarSet = kamarSet;
|
||||
}
|
||||
|
||||
//
|
||||
@OneToMany(fetch = FetchType.LAZY, cascade = CascadeType.ALL, mappedBy = "kdkelas")
|
||||
private Set<Kelas> KelasSet = new HashSet<Kelas>();
|
||||
|
||||
public Set<Kelas> getKelasSet() {
|
||||
return KelasSet;
|
||||
}
|
||||
|
||||
public void setKelasSet(Set<Kelas> kelasSet) {
|
||||
KelasSet = kelasSet;
|
||||
}*/
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,81 +1,34 @@
|
||||
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 DetailKategoryPegawai
|
||||
* class DetailKategoryPegawai
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
//@Entity
|
||||
//@Table(name = "DetailKategoryPegawai_M")
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailKategoryPegawaiVO extends BaseMasterVO {
|
||||
@Caption(value="Detail Kategory Pegawai")
|
||||
|
||||
@Caption(value = "Detail Kategory Pegawai")
|
||||
private String detailKategoryPegawai;
|
||||
|
||||
public void setDetailKategoryPegawai(String detailKategoryPegawai) {
|
||||
this.detailKategoryPegawai = detailKategoryPegawai;
|
||||
}
|
||||
|
||||
@Column(name = "DetailKategoryPegawai", nullable = false , length = 50)
|
||||
public String getDetailKategoryPegawai(){
|
||||
return this.detailKategoryPegawai;
|
||||
}
|
||||
|
||||
@Caption(value="Kode Detail Kategory Pegawai")
|
||||
@Caption(value = "Kode Detail Kategory Pegawai")
|
||||
private String kdDetailKategoryPegawai;
|
||||
|
||||
public void setKdDetailKategoryPegawai(String kdDetailKategoryPegawai) {
|
||||
this.kdDetailKategoryPegawai = kdDetailKategoryPegawai;
|
||||
}
|
||||
|
||||
@Column(name = "KdDetailKategoryPegawai", nullable = false , length = 2)
|
||||
public String getKdDetailKategoryPegawai(){
|
||||
return this.kdDetailKategoryPegawai;
|
||||
}
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectKategoryPegawaiFk")
|
||||
@NotNull(message="Object Kategory PegawaiVO Harus Diisi")
|
||||
@Caption(value="Object Kategory Pegawai")
|
||||
@NotNull(message = "Object Kategory PegawaiVO Harus Diisi")
|
||||
@Caption(value = "Object Kategory Pegawai")
|
||||
private KategoryPegawaiVO kategoryPegawai;
|
||||
|
||||
public void setKategoryPegawai(KategoryPegawaiVO kategoryPegawai) {
|
||||
this.kategoryPegawai = kategoryPegawai;
|
||||
}
|
||||
|
||||
@Column(name = "KdKategoryPegawai", nullable = false , length = 1)
|
||||
public KategoryPegawaiVO getKategoryPegawai(){
|
||||
return this.kategoryPegawai;
|
||||
}
|
||||
|
||||
@Column(name = "ObjectKategoryPegawaiFk", insertable=false,updatable=false)
|
||||
private Integer kategoryPegawaiId;
|
||||
|
||||
@Caption(value="QDetail Kategory Pegawai")
|
||||
@Caption(value = "QDetail Kategory Pegawai")
|
||||
private Byte qDetailKategoryPegawai;
|
||||
|
||||
public void setqDetailKategoryPegawai(Byte qDetailKategoryPegawai) {
|
||||
this.qDetailKategoryPegawai = qDetailKategoryPegawai;
|
||||
}
|
||||
|
||||
@Column(name = "QDetailKategoryPegawai", nullable = false )
|
||||
public Byte getqDetailKategoryPegawai(){
|
||||
return this.qDetailKategoryPegawai;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,95 +1,34 @@
|
||||
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;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
/**
|
||||
* class DetailKelompokPegawai
|
||||
* class DetailKelompokPegawai
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
//@Entity
|
||||
//@Table(name = "DetailKelompokPegawai_M")
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailKelompokPegawaiVO extends BaseMasterVO {
|
||||
@Caption(value="Detail Kelompok Pegawai")
|
||||
|
||||
@Caption(value = "Detail Kelompok Pegawai")
|
||||
private String detailKelompokPegawai;
|
||||
|
||||
public void setDetailKelompokPegawai(String detailKelompokPegawai) {
|
||||
this.detailKelompokPegawai = detailKelompokPegawai;
|
||||
}
|
||||
|
||||
@Column(name = "DetailKelompokPegawai", nullable = false , length = 50)
|
||||
public String getDetailKelompokPegawai(){
|
||||
return this.detailKelompokPegawai;
|
||||
}
|
||||
|
||||
@Caption(value="Kode Detail Kelompok Pegawai")
|
||||
@Caption(value = "Kode Detail Kelompok Pegawai")
|
||||
private String kdDetailKelompokPegawai;
|
||||
|
||||
public void setKdDetailKelompokPegawai(String kdDetailKelompokPegawai) {
|
||||
this.kdDetailKelompokPegawai = kdDetailKelompokPegawai;
|
||||
}
|
||||
|
||||
@Column(name = "KdDetailKelompokPegawai", nullable = false , length = 2)
|
||||
public String getKdDetailKelompokPegawai(){
|
||||
return this.kdDetailKelompokPegawai;
|
||||
}
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectKelompokPegawaiFk")
|
||||
@NotNull(message="Object Kelompok PegawaiVO Harus Diisi")
|
||||
@Caption(value="Object Kelompok Pegawai")
|
||||
@NotNull(message = "Object Kelompok PegawaiVO Harus Diisi")
|
||||
@Caption(value = "Object Kelompok Pegawai")
|
||||
private KelompokPegawaiVO kelompokPegawai;
|
||||
|
||||
public void setKelompokPegawai(KelompokPegawaiVO kelompokPegawai) {
|
||||
this.kelompokPegawai = kelompokPegawai;
|
||||
}
|
||||
|
||||
@Column(name = "KdKelompokPegawai", nullable = false , length = 1)
|
||||
public KelompokPegawaiVO getKelompokPegawai(){
|
||||
return this.kelompokPegawai;
|
||||
}
|
||||
|
||||
@Column(name = "ObjectKelompokPegawaiFk", insertable=false,updatable=false)
|
||||
private Integer kelompokPegawaiId;
|
||||
|
||||
@Caption(value="QDetail Kelompok Pegawai")
|
||||
@Caption(value = "QDetail Kelompok Pegawai")
|
||||
private Byte qDetailKelompokPegawai;
|
||||
|
||||
public void setqDetailKelompokPegawai(Byte qDetailKelompokPegawai) {
|
||||
this.qDetailKelompokPegawai = qDetailKelompokPegawai;
|
||||
}
|
||||
|
||||
@Column(name = "QDetailKelompokPegawai", nullable = false )
|
||||
public Byte getqDetailKelompokPegawai(){
|
||||
return this.qDetailKelompokPegawai;
|
||||
}
|
||||
|
||||
/*//
|
||||
@OneToMany(fetch=FetchType.LAZY, cascade = CascadeType.ALL, mappedBy="kddetailkelompokpegawai")
|
||||
private Set<JenisPegawai> JenisPegawaiSet = new HashSet<JenisPegawai>();
|
||||
|
||||
public Set<JenisPegawai> getJenisPegawaiSet() {
|
||||
return JenisPegawaiSet;
|
||||
}
|
||||
|
||||
public void setJenisPegawaiSet(Set<JenisPegawai> jenisPegawaiSet) {
|
||||
JenisPegawaiSet = jenisPegawaiSet;
|
||||
}*/
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,30 +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.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;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author yudimf
|
||||
*
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailObatVO extends BaseMasterVO {
|
||||
|
||||
public class DetailObatVO 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,50 +1,30 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonBackReference;
|
||||
import javax.validation.constraints.NotNull;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
/**
|
||||
* class DetailOrderTindakanLabVOVO
|
||||
* class DetailOrderTindakanLabVOVO
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
public class DetailOrderTindakanLabVO extends MedicalRecordTransactionVO{
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ProdukVOFk")
|
||||
@NotNull(message = "ProdukVO Harus Diisi")
|
||||
@Caption(value = "ProdukVO")
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailOrderTindakanLabVO extends MedicalRecordTransactionVO {
|
||||
|
||||
@NotNull(message = "ProdukVO Harus Diisi")
|
||||
@Caption(value = "ProdukVO")
|
||||
private ProdukVO produkVO;
|
||||
public ProdukVO getProdukVO() {
|
||||
return produkVO;
|
||||
}
|
||||
public void setProdukVO(ProdukVO produkVO) {
|
||||
this.produkVO = produkVO;
|
||||
}
|
||||
@Column(name = "ProdukVOFk", insertable=false,updatable=false)
|
||||
|
||||
private String produkVOId;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "OrderProdukVOFk")
|
||||
@NotNull(message = "OrderProdukVO Harus Diisi")
|
||||
@Caption(value = "OrderProdukVO")
|
||||
@NotNull(message = "OrderProdukVO Harus Diisi")
|
||||
@Caption(value = "OrderProdukVO")
|
||||
private OrderProdukVO orderTindakanLab;
|
||||
public OrderProdukVO getOrderProdukVO() {
|
||||
return orderTindakanLab;
|
||||
}
|
||||
public void setOrderProdukVO(OrderProdukVO orderTindakanLab) {
|
||||
this.orderTindakanLab = orderTindakanLab;
|
||||
}
|
||||
@Column(name = "OrderProdukVOFk", insertable=false,updatable=false)
|
||||
|
||||
private String orderTindakanLabId;
|
||||
|
||||
|
||||
}
|
||||
@ -1,116 +1,46 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
import javax.persistence.*;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.entities.TipeMakanan;
|
||||
import com.fasterxml.jackson.annotation.JsonBackReference;
|
||||
import javax.validation.constraints.NotNull;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
/**
|
||||
* class DetailOrderTindakanLabVOVO
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailOrderTindakanVO extends MedicalRecordTransactionVO {
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectJenisDietFk")
|
||||
@Caption(value="Object Jenis Diet")
|
||||
|
||||
@Caption(value = "Object Jenis Diet")
|
||||
private JenisDietVO jenisDiet;
|
||||
@Column(name = "ObjectJenisDietFk", insertable = false, updatable = false,nullable=true)
|
||||
|
||||
private Integer jenisDietId;
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectJenisWaktuFk")
|
||||
@Caption(value="Object Jenis Waktu")
|
||||
|
||||
@Caption(value = "Object Jenis Waktu")
|
||||
private JenisWaktuVO jenisWaktu;
|
||||
@Column(name = "ObjectJenisWaktuFk", insertable = false, updatable = false,nullable=true)
|
||||
|
||||
private Integer jenisWaktuFk;
|
||||
@Column(name = "QtyProduk", insertable = false, updatable = false,nullable=true)
|
||||
|
||||
private Double qtyProduk;
|
||||
|
||||
|
||||
private RuanganVO ruangan;
|
||||
|
||||
|
||||
@Column(name = "TipeMakanan", insertable = false, updatable = false,nullable=true)
|
||||
|
||||
private TipeMakananVO tipeMakanan;
|
||||
|
||||
public Double getQtyProduk() {
|
||||
return qtyProduk;
|
||||
}
|
||||
|
||||
public void setQtyProduk(Double qtyProduk) {
|
||||
this.qtyProduk = qtyProduk;
|
||||
}
|
||||
|
||||
public JenisDietVO getJenisDiet() {
|
||||
return jenisDiet;
|
||||
}
|
||||
|
||||
public void setJenisDiet(JenisDietVO jenisDiet) {
|
||||
this.jenisDiet = jenisDiet;
|
||||
}
|
||||
|
||||
public JenisWaktuVO getJenisWaktu() {
|
||||
return jenisWaktu;
|
||||
}
|
||||
|
||||
public void setJenisWaktu(JenisWaktuVO jenisWaktu) {
|
||||
this.jenisWaktu = jenisWaktu;
|
||||
}
|
||||
|
||||
public TipeMakananVO getTipeMakanan() {
|
||||
return tipeMakanan;
|
||||
}
|
||||
|
||||
public void setTipeMakanan(TipeMakananVO tipeMakanan) {
|
||||
this.tipeMakanan = tipeMakanan;
|
||||
}
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ProdukVOFk")
|
||||
@NotNull(message = "ProdukVO Harus Diisi")
|
||||
@Caption(value = "ProdukVO")
|
||||
private ProdukVO produk;
|
||||
|
||||
public ProdukVO getProduk() {
|
||||
return produk;
|
||||
}
|
||||
|
||||
public void setProduk(ProdukVO produk) {
|
||||
this.produk = produk;
|
||||
}
|
||||
|
||||
@Column(name = "ProdukVOFk", insertable = false, updatable = false)
|
||||
private String produkVOId;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "OrderProdukVOFk")
|
||||
@NotNull(message = "OrderProdukVO Harus Diisi")
|
||||
@Caption(value = "OrderProdukVO")
|
||||
private OrderProdukVO orderTindakanLab;
|
||||
|
||||
public OrderProdukVO getOrderProdukVO() {
|
||||
return orderTindakanLab;
|
||||
}
|
||||
|
||||
public void setOrderProdukVO(OrderProdukVO orderTindakanLab) {
|
||||
this.orderTindakanLab = orderTindakanLab;
|
||||
}
|
||||
|
||||
public RuanganVO getRuangan() {
|
||||
return ruangan;
|
||||
}
|
||||
|
||||
public void setRuangan(RuanganVO ruangan) {
|
||||
this.ruangan = ruangan;
|
||||
}
|
||||
|
||||
@Column(name = "OrderProdukVOFk", insertable = false, updatable = false)
|
||||
private String orderTindakanLabId;
|
||||
|
||||
}
|
||||
@ -1,45 +1,18 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import javax.persistence.ManyToOne;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailPengadaanVO extends BaseTransactionVO {
|
||||
|
||||
@ManyToOne
|
||||
@Caption(value="Object Pengadaan")
|
||||
@Caption(value = "Object Pengadaan")
|
||||
private PengadaanVO pengadaan;
|
||||
|
||||
|
||||
@ManyToOne
|
||||
@Caption(value="Object Detail Rup")
|
||||
@Caption(value = "Object Detail Rup")
|
||||
private DetailRupVO detailRup;
|
||||
|
||||
|
||||
public PengadaanVO getPengadaan() {
|
||||
return pengadaan;
|
||||
}
|
||||
|
||||
|
||||
public void setPengadaan(PengadaanVO pengadaan) {
|
||||
this.pengadaan = pengadaan;
|
||||
}
|
||||
|
||||
|
||||
public DetailRupVO getDetailRup() {
|
||||
return detailRup;
|
||||
}
|
||||
|
||||
|
||||
public void setDetailRup(DetailRupVO detailRup) {
|
||||
this.detailRup = detailRup;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -1,45 +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 DetailPengkajianAwalVO extends BaseTransactionVO{
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailPengkajianAwalVO extends BaseTransactionVO {
|
||||
|
||||
@ManyToOne(fetch=FetchType.LAZY)
|
||||
@Caption(value = "Pengkajian Awal Transaksi")
|
||||
private PengkajianAwalTransaksiVO pengkajianAwalTransaksi;
|
||||
|
||||
@ManyToOne(fetch=FetchType.LAZY)
|
||||
@Caption(value="Pengkajian Awal")
|
||||
|
||||
@Caption(value = "Pengkajian Awal")
|
||||
private PengkajianAwalVO pengkajianAwal;
|
||||
|
||||
@Caption(value="Nilai")
|
||||
|
||||
@Caption(value = "Nilai")
|
||||
private String nilai;
|
||||
|
||||
public PengkajianAwalTransaksiVO getPengkajianAwalTransaksi() {
|
||||
return pengkajianAwalTransaksi;
|
||||
}
|
||||
|
||||
public void setPengkajianAwalTransaksi(PengkajianAwalTransaksiVO pengkajianAwalTransaksi) {
|
||||
this.pengkajianAwalTransaksi = pengkajianAwalTransaksi;
|
||||
}
|
||||
|
||||
public PengkajianAwalVO getPengkajianAwal() {
|
||||
return pengkajianAwal;
|
||||
}
|
||||
|
||||
public void setPengkajianAwal(PengkajianAwalVO pengkajianAwal) {
|
||||
this.pengkajianAwal = pengkajianAwal;
|
||||
}
|
||||
|
||||
public String getNilai() {
|
||||
return nilai;
|
||||
}
|
||||
|
||||
public void setNilai(String nilai) {
|
||||
this.nilai = nilai;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -1,40 +1,23 @@
|
||||
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.fasterxml.jackson.annotation.JsonBackReference;
|
||||
import com.jasamedika.medifirst2000.base.BaseMaster;
|
||||
import com.jasamedika.medifirst2000.base.BaseTransaction;
|
||||
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 Agama
|
||||
* class Agama
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailPenyakitLainnyaVO 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 String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,89 +1,33 @@
|
||||
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 com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonBackReference;
|
||||
import com.jasamedika.medifirst2000.base.BaseMaster;
|
||||
import com.jasamedika.medifirst2000.base.BaseTransaction;
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.entities.DetailPenyakitLainnya;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
|
||||
/**
|
||||
* class Agama
|
||||
* class Agama
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailPenyakitObstetriLainnyaVO extends BaseTransactionVO {
|
||||
|
||||
@ManyToOne
|
||||
@Caption(value="Obstetri")
|
||||
//@JsonBackReference
|
||||
@NotNull(message="Obstetri Harus Diisi")
|
||||
|
||||
@Caption(value = "Obstetri")
|
||||
@NotNull(message = "Obstetri Harus Diisi")
|
||||
private PapObstetriVO papObsetri;
|
||||
|
||||
@Column(name = "papObsetriFk", insertable=false,updatable=false,nullable=false)
|
||||
private String papObsetriId;
|
||||
|
||||
@Column(name = "diskripsi", nullable = false, length = 100)
|
||||
|
||||
@Caption(value = "diskripsi")
|
||||
private String diskripsi;
|
||||
|
||||
@Column(name = "checked")
|
||||
|
||||
private Boolean checked;
|
||||
|
||||
@ManyToOne
|
||||
@Caption(value="Detail Penyakit Lainnya")
|
||||
|
||||
@Caption(value = "Detail Penyakit Lainnya")
|
||||
private DetailPenyakitLainnyaVO detailPenyakitLainnyaVO;
|
||||
|
||||
public PapObstetriVO getPapObsetri() {
|
||||
return papObsetri;
|
||||
}
|
||||
|
||||
public void setPapObsetri(PapObstetriVO papObsetri) {
|
||||
this.papObsetri = papObsetri;
|
||||
}
|
||||
|
||||
public String getPapObsetriId() {
|
||||
return papObsetriId;
|
||||
}
|
||||
|
||||
public void setPapObsetriId(String papObsetriId) {
|
||||
this.papObsetriId = papObsetriId;
|
||||
}
|
||||
|
||||
|
||||
public Boolean getChecked() {
|
||||
return checked;
|
||||
}
|
||||
|
||||
public void setChecked(Boolean checked) {
|
||||
this.checked = checked;
|
||||
}
|
||||
|
||||
public String getDiskripsi() {
|
||||
return diskripsi;
|
||||
}
|
||||
|
||||
public void setDiskripsi(String diskripsi) {
|
||||
this.diskripsi = diskripsi;
|
||||
}
|
||||
|
||||
public DetailPenyakitLainnyaVO getDetailPenyakitLainnyaVO() {
|
||||
return detailPenyakitLainnyaVO;
|
||||
}
|
||||
|
||||
public void setDetailPenyakitLainnyaVO(DetailPenyakitLainnyaVO detailPenyakitLainnyaVO) {
|
||||
this.detailPenyakitLainnyaVO = detailPenyakitLainnyaVO;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,82 +1,31 @@
|
||||
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 com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonBackReference;
|
||||
import com.jasamedika.medifirst2000.base.BaseMaster;
|
||||
import com.jasamedika.medifirst2000.base.BaseTransaction;
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.entities.DetailPenyakit;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
|
||||
/**
|
||||
* class Agama
|
||||
* class Agama
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailPenyakitObstetriVO extends BaseTransactionVO {
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "papObsetriFk")
|
||||
@Caption(value="Obstetri")
|
||||
//@JsonBackReference
|
||||
@NotNull(message="Obstetri Harus Diisi")
|
||||
|
||||
@Caption(value = "Obstetri")
|
||||
@NotNull(message = "Obstetri Harus Diisi")
|
||||
private PapObstetriVO papObsetri;
|
||||
|
||||
@Column(name = "papObsetriFk", insertable=false,updatable=false,nullable=false)
|
||||
private String papObsetriId;
|
||||
|
||||
@Column(name = "checked")
|
||||
|
||||
private Boolean checked;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "detailPenyakitFk")
|
||||
@Caption(value="detail Penyakit")
|
||||
//@JsonBackReference
|
||||
@NotNull(message="Detail Penyakit Harus Diisi")
|
||||
|
||||
@Caption(value = "detail Penyakit")
|
||||
@NotNull(message = "Detail Penyakit Harus Diisi")
|
||||
private DetailPenyakitVO detailPenyakit;
|
||||
|
||||
public PapObstetriVO getPapObsetri() {
|
||||
return papObsetri;
|
||||
}
|
||||
|
||||
public void setPapObsetri(PapObstetriVO papObsetri) {
|
||||
this.papObsetri = papObsetri;
|
||||
}
|
||||
|
||||
public String getPapObsetriId() {
|
||||
return papObsetriId;
|
||||
}
|
||||
|
||||
public void setPapObsetriId(String papObsetriId) {
|
||||
this.papObsetriId = papObsetriId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public DetailPenyakitVO getDetailPenyakit() {
|
||||
return detailPenyakit;
|
||||
}
|
||||
|
||||
public void setDetailPenyakit(DetailPenyakitVO detailPenyakit) {
|
||||
this.detailPenyakit = detailPenyakit;
|
||||
}
|
||||
|
||||
public Boolean getChecked() {
|
||||
return checked;
|
||||
}
|
||||
|
||||
public void setChecked(Boolean checked) {
|
||||
this.checked = checked;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,41 +1,23 @@
|
||||
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.fasterxml.jackson.annotation.JsonBackReference;
|
||||
import com.jasamedika.medifirst2000.base.BaseMaster;
|
||||
import com.jasamedika.medifirst2000.base.BaseTransaction;
|
||||
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 Agama
|
||||
* class Agama
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailPenyakitVO 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 String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,60 +1,19 @@
|
||||
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 lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailPerlakuanVO extends BaseTransactionVO {
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "objectPerlakuanFk")
|
||||
|
||||
private PerlakuanVO perlakuan;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "objectPerizinanLimbahFk")
|
||||
|
||||
private PerizinanLimbahVO perizinanLimbah;
|
||||
|
||||
@Column(name="jenisLimbahYangDikelola")
|
||||
|
||||
private String jenisLimbahYangDikelola;
|
||||
|
||||
@Column(name="jenisLimbahYangDikelola")
|
||||
|
||||
private Double jumlah;
|
||||
|
||||
public PerlakuanVO getPerlakuan() {
|
||||
return perlakuan;
|
||||
}
|
||||
|
||||
public void setPerlakuan(PerlakuanVO perlakuan) {
|
||||
this.perlakuan = perlakuan;
|
||||
}
|
||||
|
||||
public PerizinanLimbahVO getPerizinanLimbah() {
|
||||
return perizinanLimbah;
|
||||
}
|
||||
|
||||
public void setPerizinanLimbah(PerizinanLimbahVO perizinanLimbah) {
|
||||
this.perizinanLimbah = perizinanLimbah;
|
||||
}
|
||||
|
||||
public String getJenisLimbahYangDikelola() {
|
||||
return jenisLimbahYangDikelola;
|
||||
}
|
||||
|
||||
public void setJenisLimbahYangDikelola(String jenisLimbahYangDikelola) {
|
||||
this.jenisLimbahYangDikelola = jenisLimbahYangDikelola;
|
||||
}
|
||||
|
||||
public Double getJumlah() {
|
||||
return jumlah;
|
||||
}
|
||||
|
||||
public void setJumlah(Double jumlah) {
|
||||
this.jumlah = jumlah;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -1,74 +1,26 @@
|
||||
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 com.fasterxml.jackson.annotation.JsonBackReference;
|
||||
import com.jasamedika.medifirst2000.base.BaseTransaction;
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
* class Agama
|
||||
* class Agama
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
@Entity
|
||||
@Table(name = "DetailPio_T")
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailPioVO extends BaseTransactionVO {
|
||||
|
||||
@Column(name = "pertanyaan")
|
||||
|
||||
private String pertanyaan;
|
||||
|
||||
@Column(name = "pemberiInformasi")
|
||||
|
||||
private String pemberiInformasi;
|
||||
|
||||
@Column(name = "jawaban")
|
||||
|
||||
private String jawaban;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "objectPioFk")
|
||||
@Caption(value="Pio")
|
||||
//@JsonBackReference
|
||||
|
||||
@Caption(value = "Pio")
|
||||
private PioVO pio;
|
||||
|
||||
public String getPertanyaan() {
|
||||
return pertanyaan;
|
||||
}
|
||||
|
||||
public void setPertanyaan(String pertanyaan) {
|
||||
this.pertanyaan = pertanyaan;
|
||||
}
|
||||
|
||||
public String getPemberiInformasi() {
|
||||
return pemberiInformasi;
|
||||
}
|
||||
|
||||
public void setPemberiInformasi(String pemberiInformasi) {
|
||||
this.pemberiInformasi = pemberiInformasi;
|
||||
}
|
||||
|
||||
public String getJawaban() {
|
||||
return jawaban;
|
||||
}
|
||||
|
||||
public void setJawaban(String jawaban) {
|
||||
this.jawaban = jawaban;
|
||||
}
|
||||
|
||||
public PioVO getPio() {
|
||||
return pio;
|
||||
}
|
||||
|
||||
public void setPio(PioVO pio) {
|
||||
this.pio = pio;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,87 +1,35 @@
|
||||
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.fasterxml.jackson.annotation.JsonBackReference;
|
||||
import com.jasamedika.medifirst2000.base.BaseMaster;
|
||||
import com.jasamedika.medifirst2000.base.BaseTransaction;
|
||||
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 Agama
|
||||
* class DetailPsikologisVO
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailPsikologisVO extends BaseTransactionVO {
|
||||
|
||||
@ManyToOne
|
||||
@Caption(value="Transfer Pasien Internal")
|
||||
@NotNull(message="TransferPasienInternal Harus Diisi")
|
||||
|
||||
@Caption(value = "Transfer Pasien Internal")
|
||||
@NotNull(message = "TransferPasienInternal Harus Diisi")
|
||||
private TransferPasienInternalVO transferPasienInternal;
|
||||
|
||||
@ManyToOne
|
||||
@Caption(value="Transfer Pasien Exsternal")
|
||||
@NotNull(message="TransferPasien Exsternal Harus Diisi")
|
||||
@Caption(value = "Transfer Pasien Exsternal")
|
||||
@NotNull(message = "TransferPasien Exsternal Harus Diisi")
|
||||
private TransferPasienInternalVO transferPasienExsternal;
|
||||
|
||||
@ManyToOne
|
||||
@Caption(value="Psikologis Pasien")
|
||||
@NotNull(message="Psikologis Harus Diisi")
|
||||
|
||||
@Caption(value = "Psikologis Pasien")
|
||||
@NotNull(message = "Psikologis Harus Diisi")
|
||||
private PsikologisVO psikologis;
|
||||
|
||||
@Column(name = "objectPsikologisFk", insertable=false,updatable=false,nullable=false)
|
||||
private Integer psikologisId;
|
||||
|
||||
@Column(name = "checked")
|
||||
|
||||
private Boolean checked;
|
||||
|
||||
public TransferPasienInternalVO getTransferPasienInternal() {
|
||||
return transferPasienInternal;
|
||||
}
|
||||
|
||||
public void setTransferPasienInternal(TransferPasienInternalVO transferPasienInternal) {
|
||||
this.transferPasienInternal = transferPasienInternal;
|
||||
}
|
||||
|
||||
|
||||
public PsikologisVO getPsikologis() {
|
||||
return psikologis;
|
||||
}
|
||||
|
||||
public void setPsikologis(PsikologisVO psikologis) {
|
||||
this.psikologis = psikologis;
|
||||
}
|
||||
|
||||
public Integer getPsikologisId() {
|
||||
return psikologisId;
|
||||
}
|
||||
|
||||
public void setPsikologisId(Integer psikologisId) {
|
||||
this.psikologisId = psikologisId;
|
||||
}
|
||||
|
||||
public Boolean getChecked() {
|
||||
return checked;
|
||||
}
|
||||
|
||||
public void setChecked(Boolean checked) {
|
||||
this.checked = checked;
|
||||
}
|
||||
|
||||
public TransferPasienInternalVO getTransferPasienExsternal() {
|
||||
return transferPasienExsternal;
|
||||
}
|
||||
|
||||
public void setTransferPasienExsternal(TransferPasienInternalVO transferPasienExsternal) {
|
||||
this.transferPasienExsternal = transferPasienExsternal;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,56 +1,29 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
import javax.persistence.*;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonBackReference;
|
||||
import javax.validation.constraints.NotNull;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* class DetailRadiologiVOVO
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailRadiologiVO extends MedicalRecordTransactionVO {
|
||||
|
||||
private String keluhan;
|
||||
|
||||
private Date tglHaidTerkait;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "OrderProdukVOFk")
|
||||
@NotNull(message = "OrderProdukVO Harus Diisi")
|
||||
@Caption(value = "OrderProdukVO")
|
||||
private OrderProdukVO orderProduk;
|
||||
|
||||
public OrderProdukVO getOrderProdukVO() {
|
||||
return orderProduk;
|
||||
}
|
||||
|
||||
public void setOrderProdukVO(OrderProdukVO orderProduk) {
|
||||
this.orderProduk = orderProduk;
|
||||
}
|
||||
|
||||
public Date getTglHaidTerkait() {
|
||||
return tglHaidTerkait;
|
||||
}
|
||||
|
||||
public void setTglHaidTerkait(Date tglHaidTerkait) {
|
||||
this.tglHaidTerkait = tglHaidTerkait;
|
||||
}
|
||||
|
||||
public String getKeluhan() {
|
||||
return keluhan;
|
||||
}
|
||||
|
||||
public void setKeluhan(String keluhan) {
|
||||
this.keluhan = keluhan;
|
||||
}
|
||||
|
||||
@Column(name = "OrderProdukVOFk", insertable = false, updatable = false)
|
||||
private String orderProdukId;
|
||||
|
||||
}
|
||||
@ -1,106 +1,38 @@
|
||||
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 javax.validation.constraints.NotNull;
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
import javax.persistence.*;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.entities.RencanaOperasi;
|
||||
import com.jasamedika.medifirst2000.entities.Ruangan;
|
||||
import com.fasterxml.jackson.annotation.JsonBackReference;
|
||||
import javax.validation.constraints.NotNull;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
|
||||
/**
|
||||
* class DetailRencanaOperasiVOVO
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailRencanaOperasiVO extends BaseTransactionVO {
|
||||
@ManyToOne(fetch=FetchType.LAZY)
|
||||
@JoinColumn(name = "RencanaOperasi")
|
||||
|
||||
@Caption(value="Rencana Operasi")
|
||||
//
|
||||
|
||||
@Caption(value = "Rencana Operasi")
|
||||
private RencanaOperasiVO rencanaOperasi;
|
||||
|
||||
|
||||
private RuanganVO ruangan;
|
||||
|
||||
public RencanaOperasiVO getRencanaOperasi() {
|
||||
return rencanaOperasi;
|
||||
}
|
||||
public void setRencanaOperasi(RencanaOperasiVO rencanaOperasi) {
|
||||
this.rencanaOperasi = rencanaOperasi;
|
||||
}
|
||||
@Column(name = "RencanaOperasi", insertable=false,updatable=false,nullable=false)
|
||||
private String rencanaOperasiId;
|
||||
|
||||
/*@ManyToOne
|
||||
@JoinColumn(name = "PegawaiFk")
|
||||
@NotNull(message = "Pegawai Harus Diisi")
|
||||
@Caption(value = "Pegawai")
|
||||
private PegawaiVO pegawai;*/
|
||||
|
||||
private Set<PegawaiVO> pegawaiList = new HashSet<PegawaiVO>();
|
||||
|
||||
/*public PegawaiVO getPegawai() {
|
||||
return pegawai;
|
||||
}
|
||||
private Set<PegawaiVO> pegawaiList = new HashSet<>();
|
||||
|
||||
public void setPegawai(PegawaiVO pegawai) {
|
||||
this.pegawai = pegawai;
|
||||
}*/
|
||||
|
||||
@Column(name = "PegawaiFk", insertable = false, updatable = false)
|
||||
private String pegawaiId;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "JenisPelaksanaFk")
|
||||
@NotNull(message = "Jenis Pelaksana Harus Diisi")
|
||||
@Caption(value = "Jenis Pelaksana")
|
||||
private JenisPetugasPelaksanaVO jenisPelaksana;
|
||||
|
||||
public JenisPetugasPelaksanaVO getJenisPelaksana() {
|
||||
return jenisPelaksana;
|
||||
}
|
||||
|
||||
public void setJenisPelaksana(JenisPetugasPelaksanaVO jenisPelaksana) {
|
||||
this.jenisPelaksana = jenisPelaksana;
|
||||
}
|
||||
|
||||
@Column(name = "JenisPelaksanaFk", insertable = false, updatable = false)
|
||||
private String jenisPelaksanaId;
|
||||
|
||||
public RuanganVO getRuangan() {
|
||||
return ruangan;
|
||||
}
|
||||
public void setRuangan(RuanganVO ruangan) {
|
||||
this.ruangan = ruangan;
|
||||
}
|
||||
public String getRencanaOperasiId() {
|
||||
return rencanaOperasiId;
|
||||
}
|
||||
public void setRencanaOperasiId(String rencanaOperasiId) {
|
||||
this.rencanaOperasiId = rencanaOperasiId;
|
||||
}
|
||||
public String getPegawaiId() {
|
||||
return pegawaiId;
|
||||
}
|
||||
public void setPegawaiId(String pegawaiId) {
|
||||
this.pegawaiId = pegawaiId;
|
||||
}
|
||||
public String getJenisPelaksanaId() {
|
||||
return jenisPelaksanaId;
|
||||
}
|
||||
public void setJenisPelaksanaId(String jenisPelaksanaId) {
|
||||
this.jenisPelaksanaId = jenisPelaksanaId;
|
||||
}
|
||||
public Set<PegawaiVO> getPegawaiList() {
|
||||
return pegawaiList;
|
||||
}
|
||||
public void setPegawaiList(Set<PegawaiVO> pegawaiList) {
|
||||
this.pegawaiList = pegawaiList;
|
||||
}
|
||||
|
||||
}
|
||||
@ -1,173 +1,55 @@
|
||||
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.fasterxml.jackson.annotation.JsonBackReference;
|
||||
import com.jasamedika.medifirst2000.base.BaseMaster;
|
||||
import com.jasamedika.medifirst2000.base.BaseTransaction;
|
||||
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 Agama
|
||||
* class Agama
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailRiwayatObstetriVO extends BaseTransactionVO {
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "papObstetriFk")
|
||||
@Caption(value="Obstetri")
|
||||
//@JsonBackReference
|
||||
@NotNull(message="Obstetri Harus Diisi")
|
||||
|
||||
@Caption(value = "Obstetri")
|
||||
@NotNull(message = "Obstetri Harus Diisi")
|
||||
private PapObstetriVO papObstetri;
|
||||
|
||||
@Column(name = "papObstetriFk", insertable=false,updatable=false,nullable=false)
|
||||
private String papObstetriId;
|
||||
|
||||
@Column(name = "Name", nullable = true, length = 100)
|
||||
|
||||
@Caption(value = "Temat Bersalin / Penolong")
|
||||
private String tepatBersalinPenolong;
|
||||
|
||||
@Column(name = "noRec", nullable = true, length = 100)
|
||||
|
||||
@Caption(value = "noRec")
|
||||
private String noRec;
|
||||
|
||||
@Column(name = "taahun", nullable = true, length = 100)
|
||||
|
||||
@Caption(value = "tahun")
|
||||
private String tahun;
|
||||
|
||||
@Column(name = "kehamilan", nullable = true, length = 100)
|
||||
|
||||
@Caption(value = "kehailan")
|
||||
private String kehamilan;
|
||||
|
||||
@Column(name = "jenisPersalinan", nullable = true, length = 100)
|
||||
|
||||
@Caption(value = "jenisPersalinan")
|
||||
private String jenisPersalinan;
|
||||
|
||||
@Column(name = "penyulit", nullable = true, length = 100)
|
||||
|
||||
@Caption(value = "penyulit")
|
||||
private String penyulit;
|
||||
|
||||
@Column(name = "nifas", nullable = true, length = 100)
|
||||
|
||||
@Caption(value = "nifas")
|
||||
private String nifas;
|
||||
|
||||
@Column(name = "anakSex", nullable = true, length = 100)
|
||||
|
||||
@Caption(value = "anak")
|
||||
private String anakSex;
|
||||
|
||||
@Column(name = "anakBeratBadan", nullable = true, length = 100)
|
||||
|
||||
@Caption(value = "Berat Badan")
|
||||
private String anakBeratBadan;
|
||||
|
||||
@Column(name = "anakKeadaan", nullable = true, length = 100)
|
||||
|
||||
@Caption(value = "Keadaan")
|
||||
private String anakKeadaan;
|
||||
|
||||
public PapObstetriVO getPapObstetri() {
|
||||
return papObstetri;
|
||||
}
|
||||
|
||||
public void setPapObstetri(PapObstetriVO papObstetri) {
|
||||
this.papObstetri = papObstetri;
|
||||
}
|
||||
|
||||
public String getPapObstetriId() {
|
||||
return papObstetriId;
|
||||
}
|
||||
|
||||
public void setPapObstetriId(String papObstetriId) {
|
||||
this.papObstetriId = papObstetriId;
|
||||
}
|
||||
|
||||
public String getTepatBersalinPenolong() {
|
||||
return tepatBersalinPenolong;
|
||||
}
|
||||
|
||||
public void setTepatBersalinPenolong(String tepatBersalinPenolong) {
|
||||
this.tepatBersalinPenolong = tepatBersalinPenolong;
|
||||
}
|
||||
|
||||
public String getNoRec() {
|
||||
return noRec;
|
||||
}
|
||||
|
||||
public void setNoRec(String noRec) {
|
||||
this.noRec = noRec;
|
||||
}
|
||||
|
||||
public String getTahun() {
|
||||
return tahun;
|
||||
}
|
||||
|
||||
public void setTahun(String tahun) {
|
||||
this.tahun = tahun;
|
||||
}
|
||||
|
||||
public String getKehamilan() {
|
||||
return kehamilan;
|
||||
}
|
||||
|
||||
public void setKehamilan(String kehamilan) {
|
||||
this.kehamilan = kehamilan;
|
||||
}
|
||||
|
||||
public String getJenisPersalinan() {
|
||||
return jenisPersalinan;
|
||||
}
|
||||
|
||||
public void setJenisPersalinan(String jenisPersalinan) {
|
||||
this.jenisPersalinan = jenisPersalinan;
|
||||
}
|
||||
|
||||
public String getPenyulit() {
|
||||
return penyulit;
|
||||
}
|
||||
|
||||
public void setPenyulit(String penyulit) {
|
||||
this.penyulit = penyulit;
|
||||
}
|
||||
|
||||
public String getNifas() {
|
||||
return nifas;
|
||||
}
|
||||
|
||||
public void setNifas(String nifas) {
|
||||
this.nifas = nifas;
|
||||
}
|
||||
|
||||
public String getAnakSex() {
|
||||
return anakSex;
|
||||
}
|
||||
|
||||
public void setAnakSex(String anakSex) {
|
||||
this.anakSex = anakSex;
|
||||
}
|
||||
|
||||
public String getAnakBeratBadan() {
|
||||
return anakBeratBadan;
|
||||
}
|
||||
|
||||
public void setAnakBeratBadan(String anakBeratBadan) {
|
||||
this.anakBeratBadan = anakBeratBadan;
|
||||
}
|
||||
|
||||
public String getAnakKeadaan() {
|
||||
return anakKeadaan;
|
||||
}
|
||||
|
||||
public void setAnakKeadaan(String anakKeadaan) {
|
||||
this.anakKeadaan = anakKeadaan;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,102 +1,35 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.HashSet;
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.ManyToOne;
|
||||
import javax.persistence.OneToMany;
|
||||
|
||||
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;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailRupCustomVO extends BaseTransactionVO {
|
||||
|
||||
@Column(name = "PelaksanaanPemilihanAwal", nullable = true )
|
||||
@Caption(value="Pelaksanaan Pemilihan Awal")
|
||||
@Caption(value = "Pelaksanaan Pemilihan Awal")
|
||||
private Date pelaksanaanPemilihanAwal;
|
||||
|
||||
@Column(name = "PelaksanaanPemilihanAhir", nullable = true )
|
||||
@Caption(value="Pelaksanaan Pemilihan Ahir")
|
||||
|
||||
@Caption(value = "Pelaksanaan Pemilihan Ahir")
|
||||
private Date pelaksanaanPemilihanAhir;
|
||||
|
||||
|
||||
@Column(name = "PelaksanaanPekerjaanAwal", nullable = true )
|
||||
@Caption(value="Pelaksanaan Pekerjaan Awal")
|
||||
|
||||
@Caption(value = "Pelaksanaan Pekerjaan Awal")
|
||||
private Date pelaksanaanPekerjaanAwal;
|
||||
|
||||
@Column(name = "PelaksanaanPekerjaanAhir", nullable = true )
|
||||
@Caption(value="Pelaksanaan Pekerjaan Ahir")
|
||||
|
||||
@Caption(value = "Pelaksanaan Pekerjaan Ahir")
|
||||
private Date pelaksanaanPekerjaanAhir;
|
||||
|
||||
|
||||
@Column(name = "keterangan")
|
||||
@Caption(value="Keterangan")
|
||||
@Caption(value = "Keterangan")
|
||||
private String keterangan;
|
||||
|
||||
private Set<DetailSpekAnggaranVO> detailSpekAnggaran=new HashSet<DetailSpekAnggaranVO>();
|
||||
|
||||
@OneToMany
|
||||
private Set<DetailPengadaanVO> detailPengadaan=new HashSet<DetailPengadaanVO>();
|
||||
|
||||
public Date getPelaksanaanPemilihanAwal() {
|
||||
return pelaksanaanPemilihanAwal;
|
||||
}
|
||||
private Set<DetailSpekAnggaranVO> detailSpekAnggaran = new HashSet<>();
|
||||
|
||||
public void setPelaksanaanPemilihanAwal(Date pelaksanaanPemilihanAwal) {
|
||||
this.pelaksanaanPemilihanAwal = pelaksanaanPemilihanAwal;
|
||||
}
|
||||
|
||||
public Date getPelaksanaanPemilihanAhir() {
|
||||
return pelaksanaanPemilihanAhir;
|
||||
}
|
||||
|
||||
public void setPelaksanaanPemilihanAhir(Date pelaksanaanPemilihanAhir) {
|
||||
this.pelaksanaanPemilihanAhir = pelaksanaanPemilihanAhir;
|
||||
}
|
||||
|
||||
public Date getPelaksanaanPekerjaanAwal() {
|
||||
return pelaksanaanPekerjaanAwal;
|
||||
}
|
||||
|
||||
public void setPelaksanaanPekerjaanAwal(Date pelaksanaanPekerjaanAwal) {
|
||||
this.pelaksanaanPekerjaanAwal = pelaksanaanPekerjaanAwal;
|
||||
}
|
||||
|
||||
public Date getPelaksanaanPekerjaanAhir() {
|
||||
return pelaksanaanPekerjaanAhir;
|
||||
}
|
||||
|
||||
public void setPelaksanaanPekerjaanAhir(Date pelaksanaanPekerjaanAhir) {
|
||||
this.pelaksanaanPekerjaanAhir = pelaksanaanPekerjaanAhir;
|
||||
}
|
||||
|
||||
public String getKeterangan() {
|
||||
return keterangan;
|
||||
}
|
||||
|
||||
public void setKeterangan(String keterangan) {
|
||||
this.keterangan = keterangan;
|
||||
}
|
||||
|
||||
public Set<DetailSpekAnggaranVO> getDetailSpekAnggaran() {
|
||||
return detailSpekAnggaran;
|
||||
}
|
||||
|
||||
public void setDetailSpekAnggaran(Set<DetailSpekAnggaranVO> detailSpekAnggaran) {
|
||||
this.detailSpekAnggaran = detailSpekAnggaran;
|
||||
}
|
||||
|
||||
public Set<DetailPengadaanVO> getDetailPengadaan() {
|
||||
return detailPengadaan;
|
||||
}
|
||||
|
||||
public void setDetailPengadaan(Set<DetailPengadaanVO> detailPengadaan) {
|
||||
this.detailPengadaan = detailPengadaan;
|
||||
}
|
||||
|
||||
|
||||
private Set<DetailPengadaanVO> detailPengadaan = new HashSet<>();
|
||||
|
||||
}
|
||||
|
||||
@ -1,119 +1,36 @@
|
||||
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.Column;
|
||||
import javax.persistence.JoinColumn;
|
||||
import javax.persistence.ManyToOne;
|
||||
import javax.persistence.OneToMany;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailRupVO extends BaseTransactionVO {
|
||||
|
||||
@Column(name = "PelaksanaanPemilihanAwal", nullable = true )
|
||||
@Caption(value="Pelaksanaan Pemilihan Awal")
|
||||
@Caption(value = "Pelaksanaan Pemilihan Awal")
|
||||
private Date pelaksanaanPemilihanAwal;
|
||||
|
||||
@Column(name = "PelaksanaanPemilihanAhir", nullable = true )
|
||||
@Caption(value="Pelaksanaan Pemilihan Ahir")
|
||||
private Date pelaksanaanPemilihanAhir;
|
||||
|
||||
|
||||
@Column(name = "PelaksanaanPekerjaanAwal", nullable = true )
|
||||
@Caption(value="Pelaksanaan Pekerjaan Awal")
|
||||
private Date pelaksanaanPekerjaanAwal;
|
||||
|
||||
@Column(name = "PelaksanaanPekerjaanAhir", nullable = true )
|
||||
@Caption(value="Pelaksanaan Pekerjaan Ahir")
|
||||
private Date pelaksanaanPekerjaanAhir;
|
||||
|
||||
|
||||
@Column(name = "keterangan")
|
||||
@Caption(value="Keterangan")
|
||||
@Caption(value = "Pelaksanaan Pemilihan Ahir")
|
||||
private Date pelaksanaanPemilihanAhir;
|
||||
|
||||
@Caption(value = "Pelaksanaan Pekerjaan Awal")
|
||||
private Date pelaksanaanPekerjaanAwal;
|
||||
|
||||
@Caption(value = "Pelaksanaan Pekerjaan Ahir")
|
||||
private Date pelaksanaanPekerjaanAhir;
|
||||
|
||||
@Caption(value = "Keterangan")
|
||||
private String keterangan;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectDetailSpekAnggaran")
|
||||
@Caption(value="Object Detail Spek Agggaran")
|
||||
|
||||
@Caption(value = "Object Detail Spek Agggaran")
|
||||
private DetailSpekAnggaranVO detailSpekAnggaran;
|
||||
|
||||
@OneToMany
|
||||
private Set<DetailPengadaanVO> detailPengadaan=new HashSet<DetailPengadaanVO>();
|
||||
|
||||
public Date getPelaksanaanPemilihanAwal() {
|
||||
return pelaksanaanPemilihanAwal;
|
||||
}
|
||||
|
||||
|
||||
public void setPelaksanaanPemilihanAwal(Date pelaksanaanPemilihanAwal) {
|
||||
this.pelaksanaanPemilihanAwal = pelaksanaanPemilihanAwal;
|
||||
}
|
||||
|
||||
|
||||
public Date getPelaksanaanPemilihanAhir() {
|
||||
return pelaksanaanPemilihanAhir;
|
||||
}
|
||||
|
||||
|
||||
public void setPelaksanaanPemilihanAhir(Date pelaksanaanPemilihanAhir) {
|
||||
this.pelaksanaanPemilihanAhir = pelaksanaanPemilihanAhir;
|
||||
}
|
||||
|
||||
|
||||
public Date getPelaksanaanPekerjaanAwal() {
|
||||
return pelaksanaanPekerjaanAwal;
|
||||
}
|
||||
|
||||
|
||||
public void setPelaksanaanPekerjaanAwal(Date pelaksanaanPekerjaanAwal) {
|
||||
this.pelaksanaanPekerjaanAwal = pelaksanaanPekerjaanAwal;
|
||||
}
|
||||
|
||||
|
||||
public Date getPelaksanaanPekerjaanAhir() {
|
||||
return pelaksanaanPekerjaanAhir;
|
||||
}
|
||||
|
||||
|
||||
public void setPelaksanaanPekerjaanAhir(Date pelaksanaanPekerjaanAhir) {
|
||||
this.pelaksanaanPekerjaanAhir = pelaksanaanPekerjaanAhir;
|
||||
}
|
||||
|
||||
|
||||
public String getKeterangan() {
|
||||
return keterangan;
|
||||
}
|
||||
|
||||
|
||||
public void setKeterangan(String keterangan) {
|
||||
this.keterangan = keterangan;
|
||||
}
|
||||
|
||||
|
||||
public DetailSpekAnggaranVO getDetailSpekAnggaran() {
|
||||
return detailSpekAnggaran;
|
||||
}
|
||||
|
||||
|
||||
public void setDetailSpekAnggaran(DetailSpekAnggaranVO detailSpekAnggaran) {
|
||||
this.detailSpekAnggaran = detailSpekAnggaran;
|
||||
}
|
||||
|
||||
|
||||
public Set<DetailPengadaanVO> getDetailPengadaan() {
|
||||
return detailPengadaan;
|
||||
}
|
||||
|
||||
|
||||
public void setDetailPengadaan(Set<DetailPengadaanVO> detailPengadaan) {
|
||||
this.detailPengadaan = detailPengadaan;
|
||||
}
|
||||
|
||||
|
||||
|
||||
private Set<DetailPengadaanVO> detailPengadaan = new HashSet<>();
|
||||
|
||||
}
|
||||
|
||||
@ -1,106 +1,35 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
|
||||
import javax.persistence.Column;
|
||||
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 DetailSWOTVO extends BaseMasterVO{
|
||||
@ManyToOne
|
||||
@Caption(value="SWOT")
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailSWOTVO extends BaseMasterVO {
|
||||
|
||||
@Caption(value = "SWOT")
|
||||
private SWOTVO swot;
|
||||
|
||||
@Column(name = "SwotFk", insertable=false,updatable=false)
|
||||
|
||||
private Integer swotFk;
|
||||
|
||||
@Column(name="detailFaktor")
|
||||
@Caption(value="Detail Faktor")
|
||||
|
||||
@Caption(value = "Detail Faktor")
|
||||
private String detailFaktor;
|
||||
|
||||
@Column(name="bobot")
|
||||
@Caption(value="Bobot")
|
||||
|
||||
@Caption(value = "Bobot")
|
||||
private Double bobot;
|
||||
|
||||
@Column(name="rating")
|
||||
@Caption(value="Rating")
|
||||
|
||||
@Caption(value = "Rating")
|
||||
private Integer rating;
|
||||
|
||||
@Column(name="skor")
|
||||
@Caption(value="Skor")
|
||||
|
||||
@Caption(value = "Skor")
|
||||
private Double skor;
|
||||
|
||||
@Column(name="awalPeriode")
|
||||
@Caption(value="Awal Periode")
|
||||
@Caption(value = "Awal Periode")
|
||||
private Integer awalPeriode;
|
||||
|
||||
@Column(name="akhirPeriode")
|
||||
@Caption(value="Akhir Periode")
|
||||
|
||||
@Caption(value = "Akhir Periode")
|
||||
private Integer akhirPeriode;
|
||||
|
||||
public SWOTVO getSwot() {
|
||||
return swot;
|
||||
}
|
||||
|
||||
public void setSwot(SWOTVO swot) {
|
||||
this.swot = swot;
|
||||
}
|
||||
|
||||
public Integer getSwotFk() {
|
||||
return swotFk;
|
||||
}
|
||||
|
||||
public void setSwotFk(Integer swotFk) {
|
||||
this.swotFk = swotFk;
|
||||
}
|
||||
|
||||
public String getDetailFaktor() {
|
||||
return detailFaktor;
|
||||
}
|
||||
|
||||
public void setDetailFaktor(String detailFaktor) {
|
||||
this.detailFaktor = detailFaktor;
|
||||
}
|
||||
|
||||
public Double getBobot() {
|
||||
return bobot;
|
||||
}
|
||||
|
||||
public void setBobot(Double bobot) {
|
||||
this.bobot = bobot;
|
||||
}
|
||||
|
||||
public Integer getRating() {
|
||||
return rating;
|
||||
}
|
||||
|
||||
public void setRating(Integer rating) {
|
||||
this.rating = rating;
|
||||
}
|
||||
|
||||
public Double getSkor() {
|
||||
return skor;
|
||||
}
|
||||
|
||||
public void setSkor(Double skor) {
|
||||
this.skor = skor;
|
||||
}
|
||||
|
||||
public Integer getAwalPeriode() {
|
||||
return awalPeriode;
|
||||
}
|
||||
|
||||
public void setAwalPeriode(Integer awalPeriode) {
|
||||
this.awalPeriode = awalPeriode;
|
||||
}
|
||||
|
||||
public Integer getAkhirPeriode() {
|
||||
return akhirPeriode;
|
||||
}
|
||||
|
||||
public void setAkhirPeriode(Integer akhirPeriode) {
|
||||
this.akhirPeriode = akhirPeriode;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -1,48 +1,27 @@
|
||||
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 DetailSignIn
|
||||
* class DetailSignIn
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
//@Entity
|
||||
//@Table(name = "RM_DetailSignIn_M")
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailSignInVO 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;
|
||||
}
|
||||
|
||||
|
||||
@NotNull(message="Keterangan tidak boleh kosong")
|
||||
@Column(name = "Keterangan", nullable = false, length = 100)
|
||||
@NotNull(message = "Keterangan tidak boleh kosong")
|
||||
@Caption(value = "Keterangan")
|
||||
private String keterangan;
|
||||
public void setKeterangan(String keterangan)
|
||||
{
|
||||
this.keterangan = keterangan;
|
||||
}
|
||||
public String getKeterangan()
|
||||
{
|
||||
return this.keterangan;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
@ -1,30 +1,24 @@
|
||||
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.Column;
|
||||
import javax.persistence.FetchType;
|
||||
import javax.persistence.ManyToOne;
|
||||
import javax.persistence.OneToMany;
|
||||
import javax.persistence.Transient;
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailSpekAnggaranVO extends BaseTransactionVO {
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
|
||||
public class DetailSpekAnggaranVO extends BaseTransactionVO{
|
||||
|
||||
@ManyToOne(fetch = FetchType.LAZY)
|
||||
@Caption(value="detail Anggaran")
|
||||
@Caption(value = "detail Anggaran")
|
||||
private DetailAnggaranVO detailAnggaran;
|
||||
|
||||
@ManyToOne
|
||||
@Caption(value="Produk")
|
||||
|
||||
@Caption(value = "Produk")
|
||||
private ProdukVO produk;
|
||||
|
||||
|
||||
@Caption(value = "Volume Barang")
|
||||
private float volumeBarang;
|
||||
|
||||
@ -33,276 +27,57 @@ public class DetailSpekAnggaranVO extends BaseTransactionVO{
|
||||
|
||||
@Caption(value = "Total Harga Barang")
|
||||
private Double totalHargaBarang;
|
||||
|
||||
|
||||
@Caption(value = "Status Code")
|
||||
private Integer statusCode;
|
||||
|
||||
|
||||
public String isVerifikasi;
|
||||
|
||||
|
||||
public Boolean isActive;
|
||||
|
||||
@ManyToOne
|
||||
|
||||
@Caption(value = "Ruangan")
|
||||
private RuanganVO ruangan;
|
||||
|
||||
@ManyToOne(fetch = FetchType.LAZY)
|
||||
|
||||
@Caption(value = "Jenis Belanja")
|
||||
private JenisBelanjaVO jenisBelanja;
|
||||
|
||||
@ManyToOne(fetch = FetchType.LAZY)
|
||||
|
||||
@Caption(value = "Jenis Pengadaan")
|
||||
private JenisPengadaanVO jenisPengadaan;
|
||||
|
||||
|
||||
@Caption(value = "Periode Awal")
|
||||
private Date periodeAwal;
|
||||
|
||||
|
||||
@Caption(value = "Periode Ahir")
|
||||
private Date periodeAhir;
|
||||
|
||||
@Caption(value="Keterangan")
|
||||
|
||||
@Caption(value = "Keterangan")
|
||||
private String keterangan;
|
||||
|
||||
@ManyToOne
|
||||
|
||||
@Caption(value = "Object Pengendali")
|
||||
private PengendaliVO pengendali;
|
||||
|
||||
@ManyToOne(fetch = FetchType.LAZY)
|
||||
|
||||
@Caption(value = "Detail Spek ANggaran")
|
||||
private DetailSpekAnggaranVO detailSpekAnggaran;
|
||||
|
||||
@Caption(value="Spesifikasi")
|
||||
|
||||
@Caption(value = "Spesifikasi")
|
||||
private String spesifikasi;
|
||||
|
||||
@Column(name = "Tipe", nullable = true)
|
||||
@Caption(value="Tipe")
|
||||
|
||||
@Caption(value = "Tipe")
|
||||
private String tipe;
|
||||
|
||||
@ManyToOne(fetch = FetchType.LAZY)
|
||||
|
||||
@Caption(value = "Satuan Standar")
|
||||
private SatuanStandarVO satuanStandar;
|
||||
|
||||
@OneToMany(cascade=CascadeType.ALL,fetch = FetchType.LAZY, mappedBy = "detailSpekAnggaran")
|
||||
|
||||
private Set<DetailSpekAnggaranVO> detailSpekAnggaranSet = new HashSet<>();
|
||||
|
||||
|
||||
|
||||
public SatuanStandarVO getSatuanStandar() {
|
||||
return satuanStandar;
|
||||
}
|
||||
|
||||
public void setSatuanStandar(SatuanStandarVO satuanStandar) {
|
||||
this.satuanStandar = satuanStandar;
|
||||
}
|
||||
|
||||
@Transient
|
||||
private Date pelaksanaanPemilihanAwal;
|
||||
|
||||
@Transient
|
||||
|
||||
private Date pelaksanaanPemilihanAhir;
|
||||
|
||||
@Transient
|
||||
|
||||
private Date pelaksanaanPekerjaanAwal;
|
||||
|
||||
@Transient
|
||||
|
||||
private Date pelaksanaanPekerjaanAhir;
|
||||
|
||||
@Transient
|
||||
|
||||
private String keteranganRup;
|
||||
|
||||
public DetailAnggaranVO getDetailAnggaran() {
|
||||
return detailAnggaran;
|
||||
}
|
||||
|
||||
public void setDetailAnggaran(DetailAnggaranVO detailAnggaran) {
|
||||
this.detailAnggaran = detailAnggaran;
|
||||
}
|
||||
|
||||
public ProdukVO getProduk() {
|
||||
return produk;
|
||||
}
|
||||
|
||||
public void setProduk(ProdukVO produk) {
|
||||
this.produk = produk;
|
||||
}
|
||||
|
||||
public float getVolumeBarang() {
|
||||
return volumeBarang;
|
||||
}
|
||||
|
||||
public void setVolumeBarang(float volumeBarang) {
|
||||
this.volumeBarang = volumeBarang;
|
||||
}
|
||||
|
||||
public Double getHargaSatuanBarang() {
|
||||
return hargaSatuanBarang;
|
||||
}
|
||||
|
||||
public void setHargaSatuanBarang(Double hargaSatuanBarang) {
|
||||
this.hargaSatuanBarang = hargaSatuanBarang;
|
||||
}
|
||||
|
||||
public Double getTotalHargaBarang() {
|
||||
return totalHargaBarang;
|
||||
}
|
||||
|
||||
public void setTotalHargaBarang(Double totalHargaBarang) {
|
||||
this.totalHargaBarang = totalHargaBarang;
|
||||
}
|
||||
|
||||
public Integer getStatusCode() {
|
||||
return statusCode;
|
||||
}
|
||||
|
||||
public void setStatusCode(Integer statusCode) {
|
||||
this.statusCode = statusCode;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public Boolean getIsActive() {
|
||||
return isActive;
|
||||
}
|
||||
|
||||
public void setIsActive(Boolean isActive) {
|
||||
this.isActive = isActive;
|
||||
}
|
||||
|
||||
public RuanganVO getRuangan() {
|
||||
return ruangan;
|
||||
}
|
||||
|
||||
public void setRuangan(RuanganVO ruangan) {
|
||||
this.ruangan = ruangan;
|
||||
}
|
||||
|
||||
public JenisBelanjaVO getJenisBelanja() {
|
||||
return jenisBelanja;
|
||||
}
|
||||
|
||||
public void setJenisBelanja(JenisBelanjaVO jenisBelanja) {
|
||||
this.jenisBelanja = jenisBelanja;
|
||||
}
|
||||
|
||||
public JenisPengadaanVO getJenisPengadaan() {
|
||||
return jenisPengadaan;
|
||||
}
|
||||
|
||||
public void setJenisPengadaan(JenisPengadaanVO jenisPengadaan) {
|
||||
this.jenisPengadaan = jenisPengadaan;
|
||||
}
|
||||
|
||||
public Date getPeriodeAwal() {
|
||||
return periodeAwal;
|
||||
}
|
||||
|
||||
public void setPeriodeAwal(Date periodeAwal) {
|
||||
this.periodeAwal = periodeAwal;
|
||||
}
|
||||
|
||||
public Date getPeriodeAhir() {
|
||||
return periodeAhir;
|
||||
}
|
||||
|
||||
public void setPeriodeAhir(Date periodeAhir) {
|
||||
this.periodeAhir = periodeAhir;
|
||||
}
|
||||
|
||||
public String getKeterangan() {
|
||||
return keterangan;
|
||||
}
|
||||
|
||||
public void setKeterangan(String keterangan) {
|
||||
this.keterangan = keterangan;
|
||||
}
|
||||
|
||||
public PengendaliVO getPengendali() {
|
||||
return pengendali;
|
||||
}
|
||||
|
||||
public void setPengendali(PengendaliVO pengendali) {
|
||||
this.pengendali = pengendali;
|
||||
}
|
||||
|
||||
public DetailSpekAnggaranVO getDetailSpekAnggaran() {
|
||||
return detailSpekAnggaran;
|
||||
}
|
||||
|
||||
public void setDetailSpekAnggaran(DetailSpekAnggaranVO detailSpekAnggaran) {
|
||||
this.detailSpekAnggaran = detailSpekAnggaran;
|
||||
}
|
||||
|
||||
public String getSpesifikasi() {
|
||||
return spesifikasi;
|
||||
}
|
||||
|
||||
public void setSpesifikasi(String spesifikasi) {
|
||||
this.spesifikasi = spesifikasi;
|
||||
}
|
||||
|
||||
public Set<DetailSpekAnggaranVO> getDetailSpekAnggaranSet() {
|
||||
return detailSpekAnggaranSet;
|
||||
}
|
||||
|
||||
public void setDetailSpekAnggaranSet(Set<DetailSpekAnggaranVO> detailSpekAnggaranSet) {
|
||||
this.detailSpekAnggaranSet = detailSpekAnggaranSet;
|
||||
}
|
||||
|
||||
public Date getPelaksanaanPemilihanAwal() {
|
||||
return pelaksanaanPemilihanAwal;
|
||||
}
|
||||
|
||||
public void setPelaksanaanPemilihanAwal(Date pelaksanaanPemilihanAwal) {
|
||||
this.pelaksanaanPemilihanAwal = pelaksanaanPemilihanAwal;
|
||||
}
|
||||
|
||||
public Date getPelaksanaanPemilihanAhir() {
|
||||
return pelaksanaanPemilihanAhir;
|
||||
}
|
||||
|
||||
public void setPelaksanaanPemilihanAhir(Date pelaksanaanPemilihanAhir) {
|
||||
this.pelaksanaanPemilihanAhir = pelaksanaanPemilihanAhir;
|
||||
}
|
||||
|
||||
public Date getPelaksanaanPekerjaanAwal() {
|
||||
return pelaksanaanPekerjaanAwal;
|
||||
}
|
||||
|
||||
public void setPelaksanaanPekerjaanAwal(Date pelaksanaanPekerjaanAwal) {
|
||||
this.pelaksanaanPekerjaanAwal = pelaksanaanPekerjaanAwal;
|
||||
}
|
||||
|
||||
public Date getPelaksanaanPekerjaanAhir() {
|
||||
return pelaksanaanPekerjaanAhir;
|
||||
}
|
||||
|
||||
public void setPelaksanaanPekerjaanAhir(Date pelaksanaanPekerjaanAhir) {
|
||||
this.pelaksanaanPekerjaanAhir = pelaksanaanPekerjaanAhir;
|
||||
}
|
||||
|
||||
public String getKeteranganRup() {
|
||||
return keteranganRup;
|
||||
}
|
||||
|
||||
public void setKeteranganRup(String keteranganRup) {
|
||||
this.keteranganRup = keteranganRup;
|
||||
}
|
||||
|
||||
public String getTipe() {
|
||||
return tipe;
|
||||
}
|
||||
|
||||
public void setTipe(String tipe) {
|
||||
this.tipe = tipe;
|
||||
}
|
||||
|
||||
public String getIsVerifikasi() {
|
||||
return isVerifikasi;
|
||||
}
|
||||
|
||||
public void setIsVerifikasi(String isVerifikasi) {
|
||||
this.isVerifikasi = isVerifikasi;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -1,48 +1,22 @@
|
||||
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;
|
||||
|
||||
public class DetailTOWSVO extends BaseMasterVO{
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "towsFk")
|
||||
@NotNull(message="TOWS Harus Diisi")
|
||||
@Caption(value="SWOT")
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailTOWSVO extends BaseMasterVO {
|
||||
|
||||
@NotNull(message = "TOWS Harus Diisi")
|
||||
@Caption(value = "SWOT")
|
||||
private TOWSVO tows;
|
||||
|
||||
@Column(name = "towsFk", insertable=false,updatable=false)
|
||||
|
||||
private Integer towsId;
|
||||
|
||||
@Column(name="input",nullable = false)
|
||||
|
||||
private String input;
|
||||
|
||||
public TOWSVO getTows() {
|
||||
return tows;
|
||||
}
|
||||
|
||||
public void setTows(TOWSVO tows) {
|
||||
this.tows = tows;
|
||||
}
|
||||
|
||||
public Integer getTowsId() {
|
||||
return towsId;
|
||||
}
|
||||
|
||||
public void setTowsId(Integer towsId) {
|
||||
this.towsId = towsId;
|
||||
}
|
||||
|
||||
public String getInput() {
|
||||
return input;
|
||||
}
|
||||
|
||||
public void setInput(String input) {
|
||||
this.input = input;
|
||||
}
|
||||
}
|
||||
|
||||
@ -1,76 +1,25 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailTerapiPulangVO extends BaseTransactionVO {
|
||||
|
||||
private ResumeMedisVO resumeMedis;
|
||||
|
||||
|
||||
private ResumeMedisVO resumeMedis;
|
||||
|
||||
private String resumeMedisId;
|
||||
|
||||
|
||||
private String namaObat;
|
||||
|
||||
|
||||
private String jumlah;
|
||||
|
||||
|
||||
private String dosis;
|
||||
|
||||
|
||||
private String frekuensi;
|
||||
|
||||
|
||||
private String caraPemberian;
|
||||
|
||||
public ResumeMedisVO getResumeMedis() {
|
||||
return resumeMedis;
|
||||
}
|
||||
|
||||
public void setResumeMedis(ResumeMedisVO resumeMedis) {
|
||||
this.resumeMedis = resumeMedis;
|
||||
}
|
||||
|
||||
public String getResumeMedisId() {
|
||||
return resumeMedisId;
|
||||
}
|
||||
|
||||
public void setResumeMedisId(String resumeMedisId) {
|
||||
this.resumeMedisId = resumeMedisId;
|
||||
}
|
||||
|
||||
public String getNamaObat() {
|
||||
return namaObat;
|
||||
}
|
||||
|
||||
public void setNamaObat(String namaObat) {
|
||||
this.namaObat = namaObat;
|
||||
}
|
||||
|
||||
public String getJumlah() {
|
||||
return jumlah;
|
||||
}
|
||||
|
||||
public void setJumlah(String jumlah) {
|
||||
this.jumlah = jumlah;
|
||||
}
|
||||
|
||||
public String getDosis() {
|
||||
return dosis;
|
||||
}
|
||||
|
||||
public void setDosis(String dosis) {
|
||||
this.dosis = dosis;
|
||||
}
|
||||
|
||||
public String getFrekuensi() {
|
||||
return frekuensi;
|
||||
}
|
||||
|
||||
public void setFrekuensi(String frekuensi) {
|
||||
this.frekuensi = frekuensi;
|
||||
}
|
||||
|
||||
public String getCaraPemberian() {
|
||||
return caraPemberian;
|
||||
}
|
||||
|
||||
public void setCaraPemberian(String caraPemberian) {
|
||||
this.caraPemberian = caraPemberian;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -1,68 +1,33 @@
|
||||
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;
|
||||
|
||||
/******************
|
||||
/**
|
||||
* @author Shakato
|
||||
******************/
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailTriaseVO extends BaseMasterVO {
|
||||
@NotNull(message="Kode Triase tidak boleh kosong")
|
||||
@Column(name = "kdTriase", nullable = false)
|
||||
@Caption(value="Kode Triase")
|
||||
|
||||
@NotNull(message = "Kode Triase tidak boleh kosong")
|
||||
@Caption(value = "Kode Triase")
|
||||
private short kdTriage;
|
||||
|
||||
@NotNull(message="Nama Triase Kelulusan tidak boleh kosong")
|
||||
@Column(name = "namaTriage", nullable = false )
|
||||
@Caption(value="Nama Triase")
|
||||
@NotNull(message = "Nama Triase Kelulusan tidak boleh kosong")
|
||||
@Caption(value = "Nama Triase")
|
||||
private String namaTriage;
|
||||
|
||||
@NotNull(message="Jenis Pemeriksaan tidak boleh kosong")
|
||||
@Column(name = "jenisPemeriksaan", nullable = false )
|
||||
@Caption(value="Jenis Pemerikasaan")
|
||||
@NotNull(message = "Jenis Pemeriksaan tidak boleh kosong")
|
||||
@Caption(value = "Jenis Pemerikasaan")
|
||||
private String jenisPemeriksaan;
|
||||
|
||||
@NotNull(message="qDetailTriage tidak boleh kosong")
|
||||
@Column(name = "qDetailTriage", nullable = false )
|
||||
@Caption(value="QDetailTriage")
|
||||
@NotNull(message = "qDetailTriage tidak boleh kosong")
|
||||
@Caption(value = "QDetailTriage")
|
||||
private short qDetailTriage;
|
||||
|
||||
public short getKdTriage() {
|
||||
return kdTriage;
|
||||
}
|
||||
|
||||
public void setKdTriage(short kdTriage) {
|
||||
this.kdTriage = kdTriage;
|
||||
}
|
||||
|
||||
public String getNamaTriage() {
|
||||
return namaTriage;
|
||||
}
|
||||
|
||||
public void setNamaTriage(String namaTriage) {
|
||||
this.namaTriage = namaTriage;
|
||||
}
|
||||
|
||||
public String getJenisPemeriksaan() {
|
||||
return jenisPemeriksaan;
|
||||
}
|
||||
|
||||
public void setJenisPemeriksaan(String jenisPemeriksaan) {
|
||||
this.jenisPemeriksaan = jenisPemeriksaan;
|
||||
}
|
||||
|
||||
public short getqDetailTriage() {
|
||||
return qDetailTriage;
|
||||
}
|
||||
|
||||
public void setqDetailTriage(short qDetailTriage) {
|
||||
this.qDetailTriage = qDetailTriage;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -1,115 +1,38 @@
|
||||
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 javax.validation.constraints.NotNull;
|
||||
import java.util.Date;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.JoinColumn;
|
||||
import javax.persistence.ManyToOne;
|
||||
import javax.validation.constraints.NotNull;
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetailUraianTugasTransaksiVO extends BaseTransactionVO {
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.entities.Pegawai;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
|
||||
public class DetailUraianTugasTransaksiVO extends BaseTransactionVO{
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectUraianTugasTransaksiFk")
|
||||
@Caption(value = "Object UraianTugasTransaksi")
|
||||
private UraianTugasTransaksiVO uraianTugasTransaksi;
|
||||
|
||||
@Column(name = "ObjectUraianTugasTransaksiFk", insertable = false, updatable = false, nullable = false)
|
||||
|
||||
private String uraianTugasTransaksiId;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectRincianTugasFk")
|
||||
|
||||
@Caption(value = "Object Rincian Tugas")
|
||||
private RincianKegiatanVO rincianKegiatan;
|
||||
|
||||
@Column(name = "ObjectRincianTugasFk", insertable = false, updatable = false, nullable = true)
|
||||
|
||||
private Integer rincianKegiatanId;
|
||||
|
||||
|
||||
@Caption(value = "Capaian")
|
||||
@NotNull(message = "Capaian tidak boleh kosong")
|
||||
@Column(name = "capaian", nullable = true)
|
||||
private Double capaian;
|
||||
|
||||
@Caption(value = "Tanggal")
|
||||
@NotNull(message = "Tanggal tidak boleh kosong")
|
||||
@Column(name = "tanggal", nullable = true)
|
||||
private Date tanggal;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectPegawaiFk")
|
||||
private Date tanggal;
|
||||
|
||||
@Caption(value = "Object Pegawai")
|
||||
private PegawaiVO pegawai;
|
||||
|
||||
@Column(name = "ObjectPegawaiFk", insertable = false, updatable = false, nullable = true)
|
||||
|
||||
private Integer pegawaiId;
|
||||
|
||||
public UraianTugasTransaksiVO getUraianTugasTransaksi() {
|
||||
return uraianTugasTransaksi;
|
||||
}
|
||||
|
||||
public void setUraianTugasTransaksi(UraianTugasTransaksiVO uraianTugasTransaksi) {
|
||||
this.uraianTugasTransaksi = uraianTugasTransaksi;
|
||||
}
|
||||
|
||||
public String getUraianTugasTransaksiId() {
|
||||
return uraianTugasTransaksiId;
|
||||
}
|
||||
|
||||
public void setUraianTugasTransaksiId(String uraianTugasTransaksiId) {
|
||||
this.uraianTugasTransaksiId = uraianTugasTransaksiId;
|
||||
}
|
||||
|
||||
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 Double getCapaian() {
|
||||
return capaian;
|
||||
}
|
||||
|
||||
public void setCapaian(Double capaian) {
|
||||
this.capaian = capaian;
|
||||
}
|
||||
|
||||
public Date getTanggal() {
|
||||
return tanggal;
|
||||
}
|
||||
|
||||
public void setTanggal(Date tanggal) {
|
||||
this.tanggal = tanggal;
|
||||
}
|
||||
|
||||
public PegawaiVO getPegawai() {
|
||||
return pegawai;
|
||||
}
|
||||
|
||||
public void setPegawai(PegawaiVO pegawai) {
|
||||
this.pegawai = pegawai;
|
||||
}
|
||||
|
||||
public Integer getPegawaiId() {
|
||||
return pegawaiId;
|
||||
}
|
||||
|
||||
public void setPegawaiId(Integer pegawaiId) {
|
||||
this.pegawaiId = pegawaiId;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -1,57 +1,27 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
||||
import javax.persistence.ManyToOne;
|
||||
import javax.persistence.OneToMany;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
||||
import com.jasamedika.medifirst2000.entities.Rekanan;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* class Penerimaaan Barang VO
|
||||
* class Penerimaaan Barang VO
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
public class DetilPenerimaanVO {
|
||||
|
||||
@Caption(value="no Sppb")
|
||||
@Getter
|
||||
@Setter
|
||||
public class DetilPenerimaanVO {
|
||||
|
||||
@Caption(value = "no Sppb")
|
||||
private String noBatch;
|
||||
|
||||
@Caption(value="Tanggal Terima")
|
||||
|
||||
@Caption(value = "Tanggal Terima")
|
||||
private Date tanggalKadaluarsa;
|
||||
|
||||
@Caption(value="no Faktur")
|
||||
|
||||
@Caption(value = "no Faktur")
|
||||
private Double qty;
|
||||
|
||||
public String getNoBatch() {
|
||||
return noBatch;
|
||||
}
|
||||
|
||||
public void setNoBatch(String noBatch) {
|
||||
this.noBatch = noBatch;
|
||||
}
|
||||
|
||||
public Date getTanggalKadaluarsa() {
|
||||
return tanggalKadaluarsa;
|
||||
}
|
||||
|
||||
public void setTanggalKadaluarsa(Date tanggalKadaluarsa) {
|
||||
this.tanggalKadaluarsa = tanggalKadaluarsa;
|
||||
}
|
||||
|
||||
public Double getQty() {
|
||||
return qty;
|
||||
}
|
||||
|
||||
public void setQty(Double qty) {
|
||||
this.qty = qty;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,123 +1,40 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import javax.persistence.FetchType;
|
||||
import javax.persistence.ManyToOne;
|
||||
|
||||
import com.jasamedika.medifirst2000.entities.DiagnosaKeperawatan;
|
||||
import com.jasamedika.medifirst2000.entities.Evaluasi;
|
||||
import com.jasamedika.medifirst2000.entities.Implementasi;
|
||||
import com.jasamedika.medifirst2000.entities.Intervensi;
|
||||
import com.jasamedika.medifirst2000.entities.Pegawai;
|
||||
import com.jasamedika.medifirst2000.entities.Ruangan;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class DiagnosaKeperawatanTransaksiVO extends MedicalRecordTransactionVO {
|
||||
|
||||
@ManyToOne(fetch=FetchType.LAZY)
|
||||
@Caption(value="DiagnosaKeperawatan")
|
||||
|
||||
@Caption(value = "DiagnosaKeperawatan")
|
||||
private DiagnosaKeperawatanVO diagnosaKeperawatan;
|
||||
|
||||
@ManyToOne(fetch=FetchType.LAZY)
|
||||
@Caption(value="Implementasi")
|
||||
|
||||
@Caption(value = "Implementasi")
|
||||
private ImplementasiVO implementasi;
|
||||
|
||||
@ManyToOne(fetch=FetchType.LAZY)
|
||||
@Caption(value="Intervensi")
|
||||
|
||||
@Caption(value = "Intervensi")
|
||||
private IntervensiVO intervensi;
|
||||
|
||||
@ManyToOne(fetch=FetchType.LAZY)
|
||||
@Caption(value="Evaluasi")
|
||||
|
||||
@Caption(value = "Evaluasi")
|
||||
private EvaluasiVO evaluasi;
|
||||
|
||||
@Caption(value="tglDitemukan")
|
||||
|
||||
@Caption(value = "tglDitemukan")
|
||||
private Date tglDitemukan;
|
||||
|
||||
@Caption(value="tglTeratasi")
|
||||
|
||||
@Caption(value = "tglTeratasi")
|
||||
private Date tglTeratasi;
|
||||
|
||||
@Caption(value="tglInput")
|
||||
|
||||
@Caption(value = "tglInput")
|
||||
private Date tglInput;
|
||||
|
||||
@ManyToOne(fetch=FetchType.LAZY)
|
||||
@Caption(value="Pegawai")
|
||||
|
||||
@Caption(value = "Pegawai")
|
||||
private PegawaiVO pegawai;
|
||||
|
||||
@ManyToOne(fetch=FetchType.LAZY)
|
||||
@Caption(value="Ruangan")
|
||||
|
||||
@Caption(value = "Ruangan")
|
||||
private RuanganVO ruangan;
|
||||
|
||||
public DiagnosaKeperawatanVO getDiagnosaKeperawatan() {
|
||||
return diagnosaKeperawatan;
|
||||
}
|
||||
|
||||
public void setDiagnosaKeperawatan(DiagnosaKeperawatanVO diagnosaKeperawatan) {
|
||||
this.diagnosaKeperawatan = diagnosaKeperawatan;
|
||||
}
|
||||
|
||||
public ImplementasiVO getImplementasi() {
|
||||
return implementasi;
|
||||
}
|
||||
|
||||
public void setImplementasi(ImplementasiVO implementasi) {
|
||||
this.implementasi = implementasi;
|
||||
}
|
||||
|
||||
public IntervensiVO getIntervensi() {
|
||||
return intervensi;
|
||||
}
|
||||
|
||||
public void setIntervensi(IntervensiVO intervensi) {
|
||||
this.intervensi = intervensi;
|
||||
}
|
||||
|
||||
public EvaluasiVO getEvaluasi() {
|
||||
return evaluasi;
|
||||
}
|
||||
|
||||
public void setEvaluasi(EvaluasiVO evaluasi) {
|
||||
this.evaluasi = evaluasi;
|
||||
}
|
||||
|
||||
public Date getTglDitemukan() {
|
||||
return tglDitemukan;
|
||||
}
|
||||
|
||||
public void setTglDitemukan(Date tglDitemukan) {
|
||||
this.tglDitemukan = tglDitemukan;
|
||||
}
|
||||
|
||||
public Date getTglTeratasi() {
|
||||
return tglTeratasi;
|
||||
}
|
||||
|
||||
public void setTglTeratasi(Date tglTeratasi) {
|
||||
this.tglTeratasi = tglTeratasi;
|
||||
}
|
||||
|
||||
public Date getTglInput() {
|
||||
return tglInput;
|
||||
}
|
||||
|
||||
public void setTglInput(Date tglInput) {
|
||||
this.tglInput = tglInput;
|
||||
}
|
||||
|
||||
public PegawaiVO getPegawai() {
|
||||
return pegawai;
|
||||
}
|
||||
|
||||
public void setPegawai(PegawaiVO pegawai) {
|
||||
this.pegawai = pegawai;
|
||||
}
|
||||
|
||||
public RuanganVO getRuangan() {
|
||||
return ruangan;
|
||||
}
|
||||
|
||||
public void setRuangan(RuanganVO ruangan) {
|
||||
this.ruangan = ruangan;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -1,67 +1,24 @@
|
||||
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 DiagnosaKeperawatan
|
||||
* class DiagnosaKeperawatan
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
//@Entity
|
||||
//@Table(name = "DiagnosaKeperawatan_M")
|
||||
@Getter
|
||||
@Setter
|
||||
public class DiagnosaKeperawatanVO extends BaseMasterVO {
|
||||
|
||||
private String deskripsiDiagnosaKep;
|
||||
|
||||
private String namaDiagnosaKep;
|
||||
|
||||
|
||||
private String namaDiagnosaKep;
|
||||
|
||||
private Integer qDiagnosaKep;
|
||||
|
||||
private String diagnosaKep;
|
||||
|
||||
public String getDeskripsiDiagnosaKep() {
|
||||
return deskripsiDiagnosaKep;
|
||||
}
|
||||
|
||||
public void setDeskripsiDiagnosaKep(String deskripsiDiagnosaKep) {
|
||||
this.deskripsiDiagnosaKep = deskripsiDiagnosaKep;
|
||||
}
|
||||
|
||||
public String getNamaDiagnosaKep() {
|
||||
return namaDiagnosaKep;
|
||||
}
|
||||
|
||||
public void setNamaDiagnosaKep(String namaDiagnosaKep) {
|
||||
this.namaDiagnosaKep = namaDiagnosaKep;
|
||||
}
|
||||
|
||||
public Integer getqDiagnosaKep() {
|
||||
return qDiagnosaKep;
|
||||
}
|
||||
|
||||
public void setqDiagnosaKep(Integer qDiagnosaKep) {
|
||||
this.qDiagnosaKep = qDiagnosaKep;
|
||||
}
|
||||
|
||||
public String getDiagnosaKep() {
|
||||
return diagnosaKep;
|
||||
}
|
||||
|
||||
public void setDiagnosaKep(String diagnosaKep) {
|
||||
this.diagnosaKep = diagnosaKep;
|
||||
}
|
||||
private String diagnosaKep;
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,72 +1,23 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.FetchType;
|
||||
import javax.persistence.JoinColumn;
|
||||
import javax.persistence.ManyToOne;
|
||||
import javax.persistence.Table;
|
||||
|
||||
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 DiagnosaOnkologiMorfologiVO extends BaseMasterVO{
|
||||
@ManyToOne(fetch=FetchType.LAZY)
|
||||
@JoinColumn(name = "ObjectKategoryDiagnosaFk")
|
||||
@Caption(value="Object Kategory Diagnosa")
|
||||
@Getter
|
||||
@Setter
|
||||
public class DiagnosaOnkologiMorfologiVO extends BaseMasterVO {
|
||||
|
||||
@Caption(value = "Object Kategory Diagnosa")
|
||||
private KategoryDiagnosaVO kategoryDiagnosa;
|
||||
|
||||
@Column(name = "qDiagnosaOnkologiMorfologi", nullable = true)
|
||||
|
||||
private Integer qDiagnosaOnkologiMorfologi;
|
||||
|
||||
@Column(name = "kdDiagnosaOnkologiMorfologi", nullable = true)
|
||||
|
||||
private String kdDiagnosaOnkologiMorfologi;
|
||||
|
||||
@Column(name = "struct", nullable = true)
|
||||
|
||||
private String struct;
|
||||
|
||||
@Column(name = "namaDiagnosaOnkologiMorfologi", nullable = true)
|
||||
|
||||
private String namaDiagnosaOnkologiMorfologi;
|
||||
|
||||
public KategoryDiagnosaVO getKategoryDiagnosa() {
|
||||
return kategoryDiagnosa;
|
||||
}
|
||||
|
||||
public void setKategoryDiagnosa(KategoryDiagnosaVO kategoryDiagnosa) {
|
||||
this.kategoryDiagnosa = kategoryDiagnosa;
|
||||
}
|
||||
|
||||
public Integer getqDiagnosaOnkologiMorfologi() {
|
||||
return qDiagnosaOnkologiMorfologi;
|
||||
}
|
||||
|
||||
public void setqDiagnosaOnkologiMorfologi(Integer qDiagnosaOnkologiMorfologi) {
|
||||
this.qDiagnosaOnkologiMorfologi = qDiagnosaOnkologiMorfologi;
|
||||
}
|
||||
|
||||
public String getKdDiagnosaOnkologiMorfologi() {
|
||||
return kdDiagnosaOnkologiMorfologi;
|
||||
}
|
||||
|
||||
public void setKdDiagnosaOnkologiMorfologi(String kdDiagnosaOnkologiMorfologi) {
|
||||
this.kdDiagnosaOnkologiMorfologi = kdDiagnosaOnkologiMorfologi;
|
||||
}
|
||||
|
||||
public String getStruct() {
|
||||
return struct;
|
||||
}
|
||||
|
||||
public void setStruct(String struct) {
|
||||
this.struct = struct;
|
||||
}
|
||||
|
||||
public String getNamaDiagnosaOnkologiMorfologi() {
|
||||
return namaDiagnosaOnkologiMorfologi;
|
||||
}
|
||||
|
||||
public void setNamaDiagnosaOnkologiMorfologi(String namaDiagnosaOnkologiMorfologi) {
|
||||
this.namaDiagnosaOnkologiMorfologi = namaDiagnosaOnkologiMorfologi;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -1,83 +1,25 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.FetchType;
|
||||
import javax.persistence.JoinColumn;
|
||||
import javax.persistence.ManyToOne;
|
||||
import javax.persistence.Table;
|
||||
|
||||
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 DiagnosaOnkologiTopologiVO extends BaseMasterVO{
|
||||
@ManyToOne(fetch=FetchType.LAZY)
|
||||
@JoinColumn(name = "ObjectKategoryDiagnosaFk")
|
||||
@Caption(value="Object Kategory Diagnosa")
|
||||
@Getter
|
||||
@Setter
|
||||
public class DiagnosaOnkologiTopologiVO extends BaseMasterVO {
|
||||
|
||||
@Caption(value = "Object Kategory Diagnosa")
|
||||
private KategoryDiagnosaVO kategoryDiagnosa;
|
||||
|
||||
@Column(name = "ObjectKategoryDiagnosaFk", insertable=false,updatable=false)
|
||||
|
||||
private Integer idKategoryDiagnosa;
|
||||
|
||||
@Column(name = "qdiagnosaonkologitopologi", nullable = true)
|
||||
|
||||
private Integer qDiagnosaOnkologiTopologi;
|
||||
|
||||
@Column(name = "kdDiagnosaOnkologiTopologi", nullable = true)
|
||||
|
||||
private String kdDiagnosaOnkologiTopologi;
|
||||
|
||||
@Column(name = "level", nullable = true)
|
||||
|
||||
private String level;
|
||||
|
||||
@Column(name = "namaDiagnosaOnkologiTopologi", nullable = true)
|
||||
|
||||
private String namaDiagnosaOnkologiTopologi;
|
||||
|
||||
public KategoryDiagnosaVO getKategoryDiagnosa() {
|
||||
return kategoryDiagnosa;
|
||||
}
|
||||
|
||||
public void setKategoryDiagnosa(KategoryDiagnosaVO kategoryDiagnosa) {
|
||||
this.kategoryDiagnosa = kategoryDiagnosa;
|
||||
}
|
||||
|
||||
public Integer getIdKategoryDiagnosa() {
|
||||
return idKategoryDiagnosa;
|
||||
}
|
||||
|
||||
public void setIdKategoryDiagnosa(Integer idKategoryDiagnosa) {
|
||||
this.idKategoryDiagnosa = idKategoryDiagnosa;
|
||||
}
|
||||
|
||||
public Integer getqDiagnosaOnkologiTopologi() {
|
||||
return qDiagnosaOnkologiTopologi;
|
||||
}
|
||||
|
||||
public void setqDiagnosaOnkologiTopologi(Integer qDiagnosaOnkologiTopologi) {
|
||||
this.qDiagnosaOnkologiTopologi = qDiagnosaOnkologiTopologi;
|
||||
}
|
||||
|
||||
public String getKdDiagnosaOnkologiTopologi() {
|
||||
return kdDiagnosaOnkologiTopologi;
|
||||
}
|
||||
|
||||
public void setKdDiagnosaOnkologiTopologi(String kdDiagnosaOnkologiTopologi) {
|
||||
this.kdDiagnosaOnkologiTopologi = kdDiagnosaOnkologiTopologi;
|
||||
}
|
||||
|
||||
public String getLevel() {
|
||||
return level;
|
||||
}
|
||||
|
||||
public void setLevel(String level) {
|
||||
this.level = level;
|
||||
}
|
||||
|
||||
public String getNamaDiagnosaOnkologiTopologi() {
|
||||
return namaDiagnosaOnkologiTopologi;
|
||||
}
|
||||
|
||||
public void setNamaDiagnosaOnkologiTopologi(String namaDiagnosaOnkologiTopologi) {
|
||||
this.namaDiagnosaOnkologiTopologi = namaDiagnosaOnkologiTopologi;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -1,84 +1,37 @@
|
||||
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 javax.validation.constraints.NotNull;
|
||||
import java.util.Date;
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.ManyToOne;
|
||||
import javax.persistence.OneToMany;
|
||||
import javax.persistence.Table;
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.BaseTransaction;
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Adik
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
public class DiagnosaPasienVO extends BaseTransactionVO {
|
||||
|
||||
@ManyToOne
|
||||
@NotNull(message="No C M Harus Diisi")
|
||||
@Caption(value="No C M")
|
||||
|
||||
@NotNull(message = "No C M Harus Diisi")
|
||||
@Caption(value = "No C M")
|
||||
private PasienVO pasien;
|
||||
|
||||
@NotNull(message="Tanggal Pendaftran Tidak Boleh Kosong")
|
||||
@Caption(value="Tanggal Pendafaran")
|
||||
@NotNull(message = "Tanggal Pendaftran Tidak Boleh Kosong")
|
||||
@Caption(value = "Tanggal Pendafaran")
|
||||
private Date tanggalPendaftaran;
|
||||
|
||||
@OneToMany
|
||||
private Set<DetailDiagnosaPasienVO> diagnosis=new HashSet<DetailDiagnosaPasienVO>();
|
||||
|
||||
@Column(name = "ketDiagnosis", nullable = true )
|
||||
@Caption(value="ketDiagnosis")
|
||||
private Set<DetailDiagnosaPasienVO> diagnosis = new HashSet<>();
|
||||
|
||||
@Caption(value = "ketDiagnosis")
|
||||
private String ketDiagnosis;
|
||||
|
||||
@Caption(value="NoRec PasienDaftar")
|
||||
|
||||
@Caption(value = "NoRec PasienDaftar")
|
||||
private String noRecPasienDaftar;
|
||||
|
||||
public PasienVO getPasien() {
|
||||
return pasien;
|
||||
}
|
||||
|
||||
public void setPasien(PasienVO pasien) {
|
||||
this.pasien = pasien;
|
||||
}
|
||||
|
||||
public Date getTanggalPendaftaran() {
|
||||
return tanggalPendaftaran;
|
||||
}
|
||||
|
||||
public void setTanggalPendaftaran(Date tanggalPendaftaran) {
|
||||
this.tanggalPendaftaran = tanggalPendaftaran;
|
||||
}
|
||||
|
||||
public Set<DetailDiagnosaPasienVO> getDiagnosis() {
|
||||
return diagnosis;
|
||||
}
|
||||
|
||||
public void setDiagnosis(Set<DetailDiagnosaPasienVO> diagnosis) {
|
||||
this.diagnosis = diagnosis;
|
||||
}
|
||||
|
||||
public String getKetDiagnosis() {
|
||||
return ketDiagnosis;
|
||||
}
|
||||
|
||||
public void setKetDiagnosis(String ketDiagnosis) {
|
||||
this.ketDiagnosis = ketDiagnosis;
|
||||
}
|
||||
|
||||
public String getNoRecPasienDaftar() {
|
||||
return noRecPasienDaftar;
|
||||
}
|
||||
|
||||
public void setNoRecPasienDaftar(String noRecPasienDaftar) {
|
||||
this.noRecPasienDaftar = noRecPasienDaftar;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,60 +1,31 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
||||
import javax.persistence.ManyToOne;
|
||||
import javax.persistence.OneToMany;
|
||||
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;
|
||||
import java.util.Date;
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Adik
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
public class DiagnosaTindakanPasienVO extends BaseTransactionVO {
|
||||
|
||||
@ManyToOne
|
||||
@NotNull(message="No C M Harus Diisi")
|
||||
@Caption(value="No C M")
|
||||
|
||||
@NotNull(message = "No C M Harus Diisi")
|
||||
@Caption(value = "No C M")
|
||||
private PasienVO pasien;
|
||||
|
||||
@NotNull(message="Tanggal Pendaftran Tidak Boleh Kosong")
|
||||
@Caption(value="Tanggal Pendafaran")
|
||||
|
||||
@NotNull(message = "Tanggal Pendaftran Tidak Boleh Kosong")
|
||||
@Caption(value = "Tanggal Pendafaran")
|
||||
private Date tanggalPendaftaran;
|
||||
|
||||
@OneToMany
|
||||
private Set<DetailDiagnosaTindakanPasienVO> diagnosisTindakan=new HashSet<DetailDiagnosaTindakanPasienVO>();
|
||||
|
||||
public PasienVO getPasien() {
|
||||
return pasien;
|
||||
}
|
||||
|
||||
public void setPasien(PasienVO pasien) {
|
||||
this.pasien = pasien;
|
||||
}
|
||||
|
||||
public Date getTanggalPendaftaran() {
|
||||
return tanggalPendaftaran;
|
||||
}
|
||||
|
||||
public void setTanggalPendaftaran(Date tanggalPendaftaran) {
|
||||
this.tanggalPendaftaran = tanggalPendaftaran;
|
||||
}
|
||||
|
||||
public Set<DetailDiagnosaTindakanPasienVO> getDiagnosisTindakan() {
|
||||
return diagnosisTindakan;
|
||||
}
|
||||
|
||||
public void setDiagnosisTindakan(Set<DetailDiagnosaTindakanPasienVO> diagnosisTindakan) {
|
||||
this.diagnosisTindakan = diagnosisTindakan;
|
||||
}
|
||||
|
||||
|
||||
|
||||
private Set<DetailDiagnosaTindakanPasienVO> diagnosisTindakan = new HashSet<>();
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,87 +1,37 @@
|
||||
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 DiagnosaTindakan
|
||||
* class DiagnosaTindakan
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
//@Entity
|
||||
//@Table(name = "DiagnosaTindakan_M")
|
||||
@Getter
|
||||
@Setter
|
||||
public class DiagnosaTindakanVO extends BaseMasterVO {
|
||||
@Caption(value="DiagnosaVO Tindakan")
|
||||
|
||||
@Caption(value = "DiagnosaVO Tindakan")
|
||||
private String namaDiagnosaTindakan;
|
||||
|
||||
@Column(name = "DiagnosaTindakan", nullable = false , length = 150)
|
||||
public String getNamaDiagnosaTindakan() {
|
||||
return namaDiagnosaTindakan;
|
||||
}
|
||||
|
||||
public void setNamaDiagnosaTindakan(String namaDiagnosaTindakan) {
|
||||
this.namaDiagnosaTindakan = namaDiagnosaTindakan;
|
||||
}
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectDiagnosaTindakanFk")
|
||||
@NotNull(message="Object DiagnosaVO Tindakan Harus Diisi")
|
||||
@Caption(value="Object DiagnosaVO Tindakan")
|
||||
@NotNull(message = "Object DiagnosaVO Tindakan Harus Diisi")
|
||||
@Caption(value = "Object DiagnosaVO Tindakan")
|
||||
private DiagnosaVO diagnosaTindakan;
|
||||
|
||||
public void setDiagnosaTindakan(DiagnosaVO diagnosaTindakan) {
|
||||
this.diagnosaTindakan = diagnosaTindakan;
|
||||
}
|
||||
|
||||
@Column(name = "KdDiagnosaTindakan", nullable = false , length = 10)
|
||||
public DiagnosaVO getDiagnosaTindakan(){
|
||||
return this.diagnosaTindakan;
|
||||
}
|
||||
|
||||
@Column(name = "ObjectDiagnosaTindakanFk", insertable=false,updatable=false)
|
||||
private Integer diagnosaTindakanId;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectKategoryDiagnosaFk")
|
||||
@NotNull(message="Object Kategory DiagnosaVO Harus Diisi")
|
||||
@Caption(value="Object Kategory Diagnosa")
|
||||
@NotNull(message = "Object Kategory DiagnosaVO Harus Diisi")
|
||||
@Caption(value = "Object Kategory Diagnosa")
|
||||
private KategoryDiagnosaVO kategoryDiagnosa;
|
||||
|
||||
public void setKategoryDiagnosa(KategoryDiagnosaVO kategoryDiagnosa) {
|
||||
this.kategoryDiagnosa = kategoryDiagnosa;
|
||||
}
|
||||
|
||||
@Column(name = "KdKategoryDiagnosa", nullable = false , length = 10)
|
||||
public KategoryDiagnosaVO getKategoryDiagnosa(){
|
||||
return this.kategoryDiagnosa;
|
||||
}
|
||||
|
||||
@Column(name = "ObjectKategoryDiagnosaFk", insertable=false,updatable=false)
|
||||
private Integer kategoryDiagnosaId;
|
||||
|
||||
@Caption(value="QDiagnosaVO Tindakan")
|
||||
@Caption(value = "QDiagnosaVO Tindakan")
|
||||
private Integer qDiagnosaTindakan;
|
||||
|
||||
public void setqDiagnosaTindakan(Integer qDiagnosaTindakan) {
|
||||
this.qDiagnosaTindakan = qDiagnosaTindakan;
|
||||
}
|
||||
|
||||
@Column(name = "QDiagnosaTindakan", nullable = false )
|
||||
public Integer getqDiagnosaTindakan(){
|
||||
return this.qDiagnosaTindakan;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,79 +1,25 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class DiagnosaTindakansVO extends BaseTransactionVO {
|
||||
|
||||
public class DiagnosaTindakansVO extends BaseTransactionVO{
|
||||
|
||||
private DiagnosaTindakanVO diagnosaTindakan;
|
||||
|
||||
|
||||
private Integer diagnosaTindakanId;
|
||||
|
||||
|
||||
private RehabilitasiFormulirKlaimVO rehabilitasiFormulirKlaim;
|
||||
|
||||
|
||||
private String rehabilitasiFormulirKlaimId;
|
||||
|
||||
|
||||
private Boolean diagnosisFungsi;
|
||||
|
||||
|
||||
private Boolean tataLaksanaKFR;
|
||||
|
||||
|
||||
private Boolean diagnosisMedis;
|
||||
|
||||
public DiagnosaTindakanVO getDiagnosaTindakan() {
|
||||
return diagnosaTindakan;
|
||||
}
|
||||
|
||||
public void setDiagnosaTindakan(DiagnosaTindakanVO diagnosaTindakan) {
|
||||
this.diagnosaTindakan = diagnosaTindakan;
|
||||
}
|
||||
|
||||
public Integer getDiagnosaTindakanId() {
|
||||
return diagnosaTindakanId;
|
||||
}
|
||||
|
||||
public void setDiagnosaTindakanId(Integer diagnosaTindakanId) {
|
||||
this.diagnosaTindakanId = diagnosaTindakanId;
|
||||
}
|
||||
|
||||
public RehabilitasiFormulirKlaimVO getRehabilitasiFormulirKlaim() {
|
||||
return rehabilitasiFormulirKlaim;
|
||||
}
|
||||
|
||||
public void setRehabilitasiFormulirKlaim(RehabilitasiFormulirKlaimVO rehabilitasiFormulirKlaim) {
|
||||
this.rehabilitasiFormulirKlaim = rehabilitasiFormulirKlaim;
|
||||
}
|
||||
|
||||
public String getRehabilitasiFormulirKlaimId() {
|
||||
return rehabilitasiFormulirKlaimId;
|
||||
}
|
||||
|
||||
public void setRehabilitasiFormulirKlaimId(String rehabilitasiFormulirKlaimId) {
|
||||
this.rehabilitasiFormulirKlaimId = rehabilitasiFormulirKlaimId;
|
||||
}
|
||||
|
||||
public Boolean getDiagnosisFungsi() {
|
||||
return diagnosisFungsi;
|
||||
}
|
||||
|
||||
public void setDiagnosisFungsi(Boolean diagnosisFungsi) {
|
||||
this.diagnosisFungsi = diagnosisFungsi;
|
||||
}
|
||||
|
||||
public Boolean getTataLaksanaKFR() {
|
||||
return tataLaksanaKFR;
|
||||
}
|
||||
|
||||
public void setTataLaksanaKFR(Boolean tataLaksanaKFR) {
|
||||
this.tataLaksanaKFR = tataLaksanaKFR;
|
||||
}
|
||||
|
||||
public Boolean getDiagnosisMedis() {
|
||||
return diagnosisMedis;
|
||||
}
|
||||
|
||||
public void setDiagnosisMedis(Boolean diagnosisMedis) {
|
||||
this.diagnosisMedis = diagnosisMedis;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -1,122 +1,36 @@
|
||||
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;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
* class Diagnosa
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
//@Entity
|
||||
//@Table(name = "Diagnosa_M")
|
||||
@Getter
|
||||
@Setter
|
||||
public class DiagnosaVO extends BaseMasterVO {
|
||||
|
||||
@Caption(value = "Kode Diagnosa")
|
||||
private String kdDiagnosa;
|
||||
|
||||
public void setKdDiagnosa(String kdDiagnosa) {
|
||||
this.kdDiagnosa = kdDiagnosa;
|
||||
}
|
||||
|
||||
@Column(name = "KdDiagnosa", nullable = false, length = 10)
|
||||
public String getKdDiagnosa() {
|
||||
return this.kdDiagnosa;
|
||||
}
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectJenisKelaminFk")
|
||||
@Caption(value = "Object Jenis Kelamin")
|
||||
private JenisKelaminVO jenisKelamin;
|
||||
|
||||
public void setJenisKelamin(JenisKelaminVO jenisKelamin) {
|
||||
this.jenisKelamin = jenisKelamin;
|
||||
}
|
||||
|
||||
@Column(name = "KdJenisKelamin", nullable = true)
|
||||
public JenisKelaminVO getJenisKelamin() {
|
||||
return this.jenisKelamin;
|
||||
}
|
||||
|
||||
@Column(name = "ObjectJenisKelaminFk", insertable = false, updatable = false)
|
||||
private Integer jenisKelaminId;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectKategoryDiagnosaFk")
|
||||
@Caption(value = "Object Kategory Diagnosa")
|
||||
private KategoryDiagnosaVO kategoryDiagnosa;
|
||||
|
||||
public void setKategoryDiagnosa(KategoryDiagnosaVO kategoryDiagnosa) {
|
||||
this.kategoryDiagnosa = kategoryDiagnosa;
|
||||
}
|
||||
|
||||
@Column(name = "KdKategoryDiagnosa", nullable = true, length = 10)
|
||||
public KategoryDiagnosaVO getKategoryDiagnosa() {
|
||||
return this.kategoryDiagnosa;
|
||||
}
|
||||
|
||||
@Column(name = "ObjectKategoryDiagnosaFk", insertable = false, updatable = false)
|
||||
private Integer kategoryDiagnosaId;
|
||||
|
||||
@Caption(value = "Nama Diagnosa")
|
||||
private String namaDiagnosa;
|
||||
|
||||
public void setNamaDiagnosa(String namaDiagnosa) {
|
||||
this.namaDiagnosa = namaDiagnosa;
|
||||
}
|
||||
|
||||
@Column(name = "NamaDiagnosa", nullable = false, length = 150)
|
||||
public String getNamaDiagnosa() {
|
||||
return this.namaDiagnosa;
|
||||
}
|
||||
|
||||
@Caption(value = "QDiagnosa")
|
||||
private Integer qDiagnosa;
|
||||
|
||||
public void setqDiagnosa(Integer qDiagnosa) {
|
||||
this.qDiagnosa = qDiagnosa;
|
||||
}
|
||||
|
||||
@Column(name = "QDiagnosa", nullable = false)
|
||||
public Integer getqDiagnosa() {
|
||||
return this.qDiagnosa;
|
||||
}
|
||||
|
||||
/*//
|
||||
@OneToMany(fetch = FetchType.LAZY, cascade = CascadeType.ALL, mappedBy = "kddiagnosakep")
|
||||
private Set<DiagnosaKeperawatan> DiagnosaKeperawatanSet = new HashSet<DiagnosaKeperawatan>();
|
||||
|
||||
//
|
||||
@OneToMany(fetch = FetchType.LAZY, cascade = CascadeType.ALL, mappedBy = "kddiagnosatindakan")
|
||||
private Set<DiagnosaTindakan> DiagnosaTindakanSet = new HashSet<DiagnosaTindakan>();
|
||||
|
||||
public Set<DiagnosaTindakan> getDiagnosaTindakanSet() {
|
||||
return DiagnosaTindakanSet;
|
||||
}
|
||||
|
||||
public void setDiagnosaTindakanSet(Set<DiagnosaTindakan> diagnosaTindakanSet) {
|
||||
DiagnosaTindakanSet = diagnosaTindakanSet;
|
||||
}
|
||||
|
||||
public Set<DiagnosaKeperawatan> getDiagnosaKeperawatanSet() {
|
||||
return DiagnosaKeperawatanSet;
|
||||
}
|
||||
|
||||
public void setDiagnosaKeperawatanSet(Set<DiagnosaKeperawatan> diagnosaKeperawatanSet) {
|
||||
DiagnosaKeperawatanSet = diagnosaKeperawatanSet;
|
||||
}*/
|
||||
|
||||
}
|
||||
|
||||
@ -1,35 +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.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;
|
||||
|
||||
/**
|
||||
* class DiagnosisKeperawatan
|
||||
* class DiagnosisKeperawatan
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class DiagnosisKeperawatanVO 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 DiagnosisPraBedah
|
||||
* class DiagnosisPraBedah
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
//@Entity
|
||||
//@Table(name = "RM_DiagnosisPraBedah_M")
|
||||
@Getter
|
||||
@Setter
|
||||
public class DiagnosisPraBedahVO 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,64 +1,29 @@
|
||||
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.fasterxml.jackson.annotation.JsonBackReference;
|
||||
import com.jasamedika.medifirst2000.base.BaseMaster;
|
||||
import com.jasamedika.medifirst2000.base.BaseTransaction;
|
||||
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 Agama
|
||||
* class Agama
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
public class DiputuskanDetailVO extends BaseTransactionVO {
|
||||
|
||||
@NotNull(message="Value tidak boleh kosong")
|
||||
@Caption(value="value")
|
||||
|
||||
@NotNull(message = "Value tidak boleh kosong")
|
||||
@Caption(value = "value")
|
||||
private String value;
|
||||
|
||||
@ManyToOne
|
||||
@Caption(value="Object Kasus Penyakit Last")
|
||||
|
||||
@Caption(value = "Object Kasus Penyakit Last")
|
||||
private PasienDaftarVO pasienDaftar;
|
||||
|
||||
@ManyToOne
|
||||
@Caption(value="Diputuskan Harus Di isi")
|
||||
|
||||
@Caption(value = "Diputuskan Harus Di isi")
|
||||
private DiputuskanVO diputuskan;
|
||||
|
||||
public String getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
public void setValue(String value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
public PasienDaftarVO getPasienDaftar() {
|
||||
return pasienDaftar;
|
||||
}
|
||||
|
||||
public void setPasienDaftar(PasienDaftarVO pasienDaftar) {
|
||||
this.pasienDaftar = pasienDaftar;
|
||||
}
|
||||
|
||||
public DiputuskanVO getDiputuskan() {
|
||||
return diputuskan;
|
||||
}
|
||||
|
||||
public void setDiputuskan(DiputuskanVO diputuskan) {
|
||||
this.diputuskan = diputuskan;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,30 +1,23 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
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 Agama
|
||||
* class Agama
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
public class DiputuskanVO extends BaseMasterVO {
|
||||
|
||||
@NotNull(message="Value tidak boleh kosong")
|
||||
@Caption(value="value")
|
||||
|
||||
@NotNull(message = "Value tidak boleh kosong")
|
||||
@Caption(value = "value")
|
||||
private String value;
|
||||
|
||||
public String getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
public void setValue(String value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,58 +1,21 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.FetchType;
|
||||
import javax.persistence.JoinColumn;
|
||||
import javax.persistence.ManyToOne;
|
||||
import javax.persistence.Table;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonBackReference;
|
||||
import com.jasamedika.medifirst2000.base.BaseTransaction;
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Entity
|
||||
@Table(name = "DisposisiJabatan_T")
|
||||
@Getter
|
||||
@Setter
|
||||
public class DisposisiJabatanVO extends BaseTransactionVO {
|
||||
|
||||
@ManyToOne(fetch = FetchType.LAZY)
|
||||
@Caption(value="disposisi")
|
||||
|
||||
@Caption(value = "disposisi")
|
||||
private DisposisiVO disposisi;
|
||||
|
||||
@ManyToOne(fetch = FetchType.LAZY)
|
||||
@Caption(value="jabatan")
|
||||
|
||||
@Caption(value = "jabatan")
|
||||
private JabatanVO jabatan;
|
||||
|
||||
@ManyToOne(fetch = FetchType.LAZY)
|
||||
@Caption(value="pegawai")
|
||||
|
||||
@Caption(value = "pegawai")
|
||||
private PegawaiVO pegawai;
|
||||
|
||||
public DisposisiVO getDisposisi() {
|
||||
return disposisi;
|
||||
}
|
||||
|
||||
public void setDisposisi(DisposisiVO disposisi) {
|
||||
this.disposisi = disposisi;
|
||||
}
|
||||
|
||||
public JabatanVO getJabatan() {
|
||||
return jabatan;
|
||||
}
|
||||
|
||||
public void setJabatan(JabatanVO jabatan) {
|
||||
this.jabatan = jabatan;
|
||||
}
|
||||
|
||||
public PegawaiVO getPegawai() {
|
||||
return pegawai;
|
||||
}
|
||||
|
||||
public void setPegawai(PegawaiVO pegawai) {
|
||||
this.pegawai = pegawai;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -1,47 +1,18 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.FetchType;
|
||||
import javax.persistence.JoinColumn;
|
||||
import javax.persistence.ManyToOne;
|
||||
import javax.persistence.Table;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonBackReference;
|
||||
import com.jasamedika.medifirst2000.base.BaseTransaction;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Entity
|
||||
@Table(name = "DisposisiTanggapan_T")
|
||||
@Getter
|
||||
@Setter
|
||||
public class DisposisiTanggapanVO extends BaseTransaction {
|
||||
|
||||
//@JsonBackReference
|
||||
@ManyToOne(fetch = FetchType.LAZY)
|
||||
@Caption(value="disposisi")
|
||||
|
||||
@Caption(value = "disposisi")
|
||||
private DisposisiVO disposisi;
|
||||
|
||||
@ManyToOne(fetch = FetchType.LAZY)
|
||||
@Caption(value="tanggapan")
|
||||
|
||||
@Caption(value = "tanggapan")
|
||||
private TanggapanVO tanggapan;
|
||||
|
||||
public DisposisiVO getDisposisi() {
|
||||
return disposisi;
|
||||
}
|
||||
|
||||
public void setDisposisi(DisposisiVO disposisi) {
|
||||
this.disposisi = disposisi;
|
||||
}
|
||||
|
||||
public TanggapanVO getTanggapan() {
|
||||
return tanggapan;
|
||||
}
|
||||
|
||||
public void setTanggapan(TanggapanVO tanggapan) {
|
||||
this.tanggapan = tanggapan;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -1,176 +1,52 @@
|
||||
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 javax.validation.constraints.NotNull;
|
||||
import java.util.Date;
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
||||
import javax.persistence.CascadeType;
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.FetchType;
|
||||
import javax.persistence.JoinColumn;
|
||||
import javax.persistence.ManyToOne;
|
||||
import javax.persistence.OneToMany;
|
||||
import javax.persistence.Table;
|
||||
import javax.validation.constraints.NotNull;
|
||||
@Getter
|
||||
@Setter
|
||||
public class DisposisiVO extends BaseTransactionVO {
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonManagedReference;
|
||||
import com.jasamedika.medifirst2000.base.BaseTransaction;
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
|
||||
public class DisposisiVO extends BaseTransactionVO{
|
||||
|
||||
@Column(name = "NoSurat", nullable = true )
|
||||
@Caption(value="noSurat")
|
||||
@Caption(value = "noSurat")
|
||||
private String noSurat;
|
||||
|
||||
@Column(name = "hal", nullable = true )
|
||||
@Caption(value="hal")
|
||||
|
||||
@Caption(value = "hal")
|
||||
private String hal;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectJabatanDisampaikanFk")
|
||||
@Caption(value="Disampaikan")
|
||||
|
||||
@Caption(value = "Disampaikan")
|
||||
private JabatanVO jabatanDisampaikan;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectPegawaiDisampaikanFk")
|
||||
@Caption(value="Disampaikan")
|
||||
|
||||
@Caption(value = "Disampaikan")
|
||||
private PegawaiVO pegawaiDisampaikan;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectJabatanAsalSuratFk")
|
||||
@Caption(value="Asal Surat")
|
||||
|
||||
@Caption(value = "Asal Surat")
|
||||
private JabatanVO jabatanAsalSurat;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectPegawaiAsalSuratFk")
|
||||
@Caption(value="Pegawai Disampaikan")
|
||||
|
||||
@Caption(value = "Pegawai Disampaikan")
|
||||
private PegawaiVO pegawaiAsalSurat;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectSifatSuratFk")
|
||||
@Caption(value="Pegawai Disampaikan")
|
||||
|
||||
@Caption(value = "Pegawai Disampaikan")
|
||||
private SifatSuratVO sifatSurat;
|
||||
|
||||
@Column(name = "IsiSurat", nullable = true)
|
||||
@Caption(value="isiSurat")
|
||||
|
||||
@Caption(value = "isiSurat")
|
||||
private String isiSurat;
|
||||
|
||||
@OneToMany
|
||||
private Set<DisposisiJabatanVO> disposisiJabatan=new HashSet<DisposisiJabatanVO>();
|
||||
|
||||
@OneToMany
|
||||
private Set<DisposisiTanggapanVO> disposisiTanggapan=new HashSet<DisposisiTanggapanVO>();
|
||||
|
||||
@Column(name = "tanggal", nullable = true )
|
||||
@Caption(value="Tanggal")
|
||||
|
||||
private Set<DisposisiJabatanVO> disposisiJabatan = new HashSet<>();
|
||||
|
||||
private Set<DisposisiTanggapanVO> disposisiTanggapan = new HashSet<>();
|
||||
|
||||
@Caption(value = "Tanggal")
|
||||
private Date tanggal;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "SuratFk")
|
||||
@NotNull(message="Object Dokumen Harus Diisi")
|
||||
@Caption(value="Object Dokumen")
|
||||
|
||||
@NotNull(message = "Object Dokumen Harus Diisi")
|
||||
@Caption(value = "Object Dokumen")
|
||||
private SuratVO surat;
|
||||
|
||||
public String getNoSurat() {
|
||||
return noSurat;
|
||||
}
|
||||
|
||||
public void setNoSurat(String noSurat) {
|
||||
this.noSurat = noSurat;
|
||||
}
|
||||
|
||||
public String getHal() {
|
||||
return hal;
|
||||
}
|
||||
|
||||
public void setHal(String hal) {
|
||||
this.hal = hal;
|
||||
}
|
||||
|
||||
public JabatanVO getJabatanDisampaikan() {
|
||||
return jabatanDisampaikan;
|
||||
}
|
||||
|
||||
public void setJabatanDisampaikan(JabatanVO jabatanDisampaikan) {
|
||||
this.jabatanDisampaikan = jabatanDisampaikan;
|
||||
}
|
||||
|
||||
public PegawaiVO getPegawaiDisampaikan() {
|
||||
return pegawaiDisampaikan;
|
||||
}
|
||||
|
||||
public void setPegawaiDisampaikan(PegawaiVO pegawaiDisampaikan) {
|
||||
this.pegawaiDisampaikan = pegawaiDisampaikan;
|
||||
}
|
||||
|
||||
public JabatanVO getJabatanAsalSurat() {
|
||||
return jabatanAsalSurat;
|
||||
}
|
||||
|
||||
public void setJabatanAsalSurat(JabatanVO jabatanAsalSurat) {
|
||||
this.jabatanAsalSurat = jabatanAsalSurat;
|
||||
}
|
||||
|
||||
public PegawaiVO getPegawaiAsalSurat() {
|
||||
return pegawaiAsalSurat;
|
||||
}
|
||||
|
||||
public void setPegawaiAsalSurat(PegawaiVO pegawaiAsalSurat) {
|
||||
this.pegawaiAsalSurat = pegawaiAsalSurat;
|
||||
}
|
||||
|
||||
public SifatSuratVO getSifatSurat() {
|
||||
return sifatSurat;
|
||||
}
|
||||
|
||||
public void setSifatSurat(SifatSuratVO sifatSurat) {
|
||||
this.sifatSurat = sifatSurat;
|
||||
}
|
||||
|
||||
public String getIsiSurat() {
|
||||
return isiSurat;
|
||||
}
|
||||
|
||||
public void setIsiSurat(String isiSurat) {
|
||||
this.isiSurat = isiSurat;
|
||||
}
|
||||
|
||||
public Set<DisposisiJabatanVO> getDisposisiJabatan() {
|
||||
return disposisiJabatan;
|
||||
}
|
||||
|
||||
public void setDisposisiJabatan(Set<DisposisiJabatanVO> disposisiJabatan) {
|
||||
this.disposisiJabatan = disposisiJabatan;
|
||||
}
|
||||
|
||||
public Set<DisposisiTanggapanVO> getDisposisiTanggapan() {
|
||||
return disposisiTanggapan;
|
||||
}
|
||||
|
||||
public void setDisposisiTanggapan(Set<DisposisiTanggapanVO> disposisiTanggapan) {
|
||||
this.disposisiTanggapan = disposisiTanggapan;
|
||||
}
|
||||
|
||||
public Date getTanggal() {
|
||||
return tanggal;
|
||||
}
|
||||
|
||||
public void setTanggal(Date tanggal) {
|
||||
this.tanggal = tanggal;
|
||||
}
|
||||
|
||||
public SuratVO getSurat() {
|
||||
return surat;
|
||||
}
|
||||
|
||||
public void setSurat(SuratVO surat) {
|
||||
this.surat = surat;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -1,36 +1,17 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import javax.persistence.ManyToOne;
|
||||
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class DistribusiAsetDetailVO {
|
||||
|
||||
@Caption(value = "No Registrasi")
|
||||
@ManyToOne
|
||||
private RegistrasiAsetVO registrasiAset;
|
||||
|
||||
@Caption(value = "Produk")
|
||||
@ManyToOne
|
||||
private ProdukVO produk;
|
||||
|
||||
public RegistrasiAsetVO getRegistrasiAset() {
|
||||
return registrasiAset;
|
||||
}
|
||||
|
||||
public void setRegistrasiAset(RegistrasiAsetVO registrasiAset) {
|
||||
this.registrasiAset = registrasiAset;
|
||||
}
|
||||
|
||||
public ProdukVO getProduk() {
|
||||
return produk;
|
||||
}
|
||||
|
||||
public void setProduk(ProdukVO produk) {
|
||||
this.produk = produk;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -1,16 +1,16 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
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.JoinColumn;
|
||||
import javax.persistence.ManyToOne;
|
||||
import javax.persistence.OneToMany;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class DistribusiAsetVO extends BaseTransactionVO {
|
||||
|
||||
@Caption(value = "No Order")
|
||||
@ -19,69 +19,12 @@ public class DistribusiAsetVO extends BaseTransactionVO {
|
||||
@Caption(value = "Tgl Order")
|
||||
private Date tglKirim;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectRuanganFk")
|
||||
@Caption(value = "Object Ruangan")
|
||||
private RuanganVO ruanganAsal;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectRuanganFk")
|
||||
|
||||
@Caption(value = "Object Ruangan")
|
||||
private RuanganVO ruanganTujuan;
|
||||
|
||||
@OneToMany
|
||||
private Set<DistribusiAsetDetailVO> distribusiAsetDetail = new HashSet<DistribusiAsetDetailVO>();
|
||||
|
||||
public String getNoOrder() {
|
||||
return noOrder;
|
||||
}
|
||||
|
||||
|
||||
public void setNoOrder(String noOrder) {
|
||||
this.noOrder = noOrder;
|
||||
}
|
||||
|
||||
|
||||
public Date getTglKirim() {
|
||||
return tglKirim;
|
||||
}
|
||||
|
||||
|
||||
public void setTglKirim(Date tglKirim) {
|
||||
this.tglKirim = tglKirim;
|
||||
}
|
||||
|
||||
|
||||
public RuanganVO getRuanganAsal() {
|
||||
return ruanganAsal;
|
||||
}
|
||||
|
||||
|
||||
public void setRuanganAsal(RuanganVO ruanganAsal) {
|
||||
this.ruanganAsal = ruanganAsal;
|
||||
}
|
||||
|
||||
|
||||
public RuanganVO getRuanganTujuan() {
|
||||
return ruanganTujuan;
|
||||
}
|
||||
|
||||
|
||||
public void setRuanganTujuan(RuanganVO ruanganTujuan) {
|
||||
this.ruanganTujuan = ruanganTujuan;
|
||||
}
|
||||
|
||||
|
||||
public Set<DistribusiAsetDetailVO> getDistribusiAsetDetail() {
|
||||
return distribusiAsetDetail;
|
||||
}
|
||||
|
||||
|
||||
public void setDistribusiAsetDetail(Set<DistribusiAsetDetailVO> distribusiAsetDetail) {
|
||||
this.distribusiAsetDetail = distribusiAsetDetail;
|
||||
}
|
||||
|
||||
|
||||
|
||||
private Set<DistribusiAsetDetailVO> distribusiAsetDetail = new HashSet<>();
|
||||
|
||||
}
|
||||
|
||||
@ -1,21 +1,16 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class DistribusiBarangInvestasiVO extends BaseTransactionVO {
|
||||
|
||||
private Set<RegistrasiAsetVO> registrasiAset=new HashSet<RegistrasiAsetVO>();
|
||||
private Set<RegistrasiAsetVO> registrasiAset = new HashSet<>();
|
||||
|
||||
public Set<RegistrasiAsetVO> getRegistrasiAset() {
|
||||
return registrasiAset;
|
||||
}
|
||||
|
||||
public void setRegistrasiAset(Set<RegistrasiAsetVO> registrasiAset) {
|
||||
this.registrasiAset = registrasiAset;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -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 DokterPelaksana
|
||||
* class DokterPelaksana
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
//@Entity
|
||||
//@Table(name = "RM_DokterPelaksana_M")
|
||||
@Getter
|
||||
@Setter
|
||||
public class DokterPelaksanaVO 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,22 +1,14 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class DokterSmsVO {
|
||||
|
||||
private String kodePegawai;
|
||||
|
||||
private String namaPegawai;
|
||||
|
||||
public String getKodePegawai() {
|
||||
return kodePegawai;
|
||||
}
|
||||
public void setKodePegawai(String kodePegawai) {
|
||||
this.kodePegawai = kodePegawai;
|
||||
}
|
||||
public String getNamaPegawai() {
|
||||
return namaPegawai;
|
||||
}
|
||||
public void setNamaPegawai(String namaPegawai) {
|
||||
this.namaPegawai = namaPegawai;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -2,111 +2,34 @@ package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
public class DokumenHistoriEvaluasiVO extends BaseTransactionVO{
|
||||
@Getter
|
||||
@Setter
|
||||
public class DokumenHistoriEvaluasiVO extends BaseTransactionVO {
|
||||
|
||||
@Caption(value = "No Histori")
|
||||
private String NoHistori;
|
||||
|
||||
|
||||
@Caption(value = "Dokumen")
|
||||
private DokumenVO dokumen;
|
||||
|
||||
|
||||
private Integer dokumenId;
|
||||
|
||||
|
||||
private String hasilEvaluasi;
|
||||
|
||||
|
||||
private Double nilaiHasilEvaluasi;
|
||||
|
||||
|
||||
private String memoRekomendasi;
|
||||
|
||||
|
||||
private String keteranganLainnya;
|
||||
|
||||
|
||||
private String noVerifikasi;
|
||||
|
||||
@Caption(value = "Dokumen")
|
||||
private DokumenVO dokumenHasil;
|
||||
|
||||
|
||||
private Integer dokumenHasilId;
|
||||
|
||||
public String getNoHistori() {
|
||||
return NoHistori;
|
||||
}
|
||||
|
||||
public void setNoHistori(String noHistori) {
|
||||
NoHistori = noHistori;
|
||||
}
|
||||
|
||||
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 String getHasilEvaluasi() {
|
||||
return hasilEvaluasi;
|
||||
}
|
||||
|
||||
public void setHasilEvaluasi(String hasilEvaluasi) {
|
||||
this.hasilEvaluasi = hasilEvaluasi;
|
||||
}
|
||||
|
||||
public Double getNilaiHasilEvaluasi() {
|
||||
return nilaiHasilEvaluasi;
|
||||
}
|
||||
|
||||
public void setNilaiHasilEvaluasi(Double nilaiHasilEvaluasi) {
|
||||
this.nilaiHasilEvaluasi = nilaiHasilEvaluasi;
|
||||
}
|
||||
|
||||
public String getMemoRekomendasi() {
|
||||
return memoRekomendasi;
|
||||
}
|
||||
|
||||
public void setMemoRekomendasi(String memoRekomendasi) {
|
||||
this.memoRekomendasi = memoRekomendasi;
|
||||
}
|
||||
|
||||
public String getKeteranganLainnya() {
|
||||
return keteranganLainnya;
|
||||
}
|
||||
|
||||
public void setKeteranganLainnya(String keteranganLainnya) {
|
||||
this.keteranganLainnya = keteranganLainnya;
|
||||
}
|
||||
|
||||
public String getNoVerifikasi() {
|
||||
return noVerifikasi;
|
||||
}
|
||||
|
||||
public void setNoVerifikasi(String noVerifikasi) {
|
||||
this.noVerifikasi = noVerifikasi;
|
||||
}
|
||||
|
||||
public DokumenVO getDokumenHasil() {
|
||||
return dokumenHasil;
|
||||
}
|
||||
|
||||
public void setDokumenHasil(DokumenVO dokumenHasil) {
|
||||
this.dokumenHasil = dokumenHasil;
|
||||
}
|
||||
|
||||
public Integer getDokumenHasilId() {
|
||||
return dokumenHasilId;
|
||||
}
|
||||
|
||||
public void setDokumenHasilId(Integer dokumenHasilId) {
|
||||
this.dokumenHasilId = dokumenHasilId;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -1,494 +1,103 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import javax.persistence.*;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.entities.JenisArsip;
|
||||
import com.jasamedika.medifirst2000.entities.JenisSurat;
|
||||
import com.jasamedika.medifirst2000.entities.LoginUser;
|
||||
import com.jasamedika.medifirst2000.entities.StatusYaTidak;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* class DokumenInternal
|
||||
* class DokumenInternal
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
public class DokumenInternalVO extends BaseTransactionVO {
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectDokumenFk")
|
||||
@NotNull(message="Object Dokumen Harus Diisi")
|
||||
@Caption(value="Object Dokumen")
|
||||
|
||||
@NotNull(message = "Object Dokumen Harus Diisi")
|
||||
@Caption(value = "Object Dokumen")
|
||||
private DokumenVO kddokumen;
|
||||
|
||||
public void setObjectDokumen(DokumenVO kddokumen) {
|
||||
this.kddokumen = kddokumen;
|
||||
}
|
||||
|
||||
@Column(name = "KdDokumen", nullable = false )
|
||||
public DokumenVO getObjectDokumen(){
|
||||
return this.kddokumen;
|
||||
}
|
||||
//
|
||||
// @Column(name = "ObjectDokumenFk", insertable=false,updatable=false)
|
||||
// private Integer ObjectDokumenId;
|
||||
//
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectPegawaiTujuanFk")
|
||||
@Caption(value="Object Pegawai Tujuan")
|
||||
@Caption(value = "Object Pegawai Tujuan")
|
||||
private PegawaiVO kdpegawaitujuan;
|
||||
|
||||
public void setObjectPegawaiTujuan(PegawaiVO kdpegawaitujuan) {
|
||||
this.kdpegawaitujuan = kdpegawaitujuan;
|
||||
}
|
||||
|
||||
@Column(name = "KdPegawaiTujuan", nullable = true , length = 5)
|
||||
public PegawaiVO getObjectPegawaiTujuan(){
|
||||
return this.kdpegawaitujuan;
|
||||
}
|
||||
|
||||
// @Column(name = "ObjectPegawaiTujuanFk", insertable=false,updatable=false)
|
||||
// private Integer ObjectPegawaiTujuanId;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectRuanganTujuanFk")
|
||||
@NotNull(message="Object Ruangan Tujuan Harus Diisi")
|
||||
@Caption(value="Object Ruangan Tujuan")
|
||||
@NotNull(message = "Object Ruangan Tujuan Harus Diisi")
|
||||
@Caption(value = "Object Ruangan Tujuan")
|
||||
private RuanganVO kdruangantujuan;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectUserPengirimSuratFk")
|
||||
@Caption(value="Pegawai Pengirim Surat")
|
||||
|
||||
@Caption(value = "Pegawai Pengirim Surat")
|
||||
private PegawaiVO userPengirimSurat;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectJenisSuratFk")
|
||||
@Caption(value="Jenis Surat")
|
||||
|
||||
@Caption(value = "Jenis Surat")
|
||||
private JenisSuratVO jenisSurat;
|
||||
|
||||
public void setObjectRuanganTujuan(RuanganVO kdruangantujuan) {
|
||||
this.kdruangantujuan = kdruangantujuan;
|
||||
}
|
||||
|
||||
@Column(name = "KdRuanganTujuan", nullable = false , length = 3)
|
||||
public RuanganVO getObjectRuanganTujuan(){
|
||||
return this.kdruangantujuan;
|
||||
}
|
||||
|
||||
// @Column(name = "ObjectRuanganTujuanFk", insertable=false,updatable=false)
|
||||
// private Integer ObjectRuanganTujuanId;
|
||||
|
||||
@Caption(value="Keterangan Lainnya")
|
||||
@Caption(value = "Keterangan Lainnya")
|
||||
private String keteranganlainnya;
|
||||
|
||||
public void setKeteranganLainnya(String keteranganlainnya) {
|
||||
this.keteranganlainnya = keteranganlainnya;
|
||||
}
|
||||
|
||||
@Column(name = "KeteranganLainnya", nullable = true , length = 150)
|
||||
public String getKeteranganLainnya(){
|
||||
return this.keteranganlainnya;
|
||||
}
|
||||
|
||||
@Caption(value="No Dokumen_ Intern")
|
||||
@Caption(value = "No Dokumen_ Intern")
|
||||
private String nodokumen_intern;
|
||||
|
||||
public void setNoDokumen_Intern(String nodokumen_intern) {
|
||||
this.nodokumen_intern = nodokumen_intern;
|
||||
}
|
||||
|
||||
@Column(name = "NoDokumen_Intern", nullable = true , length = 30)
|
||||
public String getNoDokumen_Intern(){
|
||||
return this.nodokumen_intern;
|
||||
}
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "NoKirimFk")
|
||||
@Caption(value="No Kirim")
|
||||
@Caption(value = "No Kirim")
|
||||
private StrukKirimVO nokirim;
|
||||
|
||||
public void setNoKirim(StrukKirimVO nokirim) {
|
||||
this.nokirim = nokirim;
|
||||
}
|
||||
|
||||
@Column(name = "NoKirim", nullable = true , length = 10)
|
||||
public StrukKirimVO getNoKirim(){
|
||||
return this.nokirim;
|
||||
}
|
||||
|
||||
// @Column(name = "NoKirimFk", insertable=false,updatable=false)
|
||||
// private Integer NoKirimId;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "NoStruk_TFk")
|
||||
@Caption(value="No Struk_ T")
|
||||
@Caption(value = "No Struk_ T")
|
||||
private StrukPelayananVO nostruk_t;
|
||||
|
||||
public void setNoStruk_T(StrukPelayananVO nostruk_t) {
|
||||
this.nostruk_t = nostruk_t;
|
||||
}
|
||||
|
||||
@Column(name = "NoStruk_T", nullable = true , length = 10)
|
||||
public StrukPelayananVO getNoStruk_T(){
|
||||
return this.nostruk_t;
|
||||
}
|
||||
|
||||
// @Column(name = "NoStruk_TFk", insertable=false,updatable=false)
|
||||
// private Integer NoStruk_TId;
|
||||
|
||||
// === add by yudi === //
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectRuanganPengirimFk")
|
||||
@Caption(value="Ruangan Penerima")
|
||||
@Caption(value = "Ruangan Penerima")
|
||||
private RuanganVO ruanganPengirim;
|
||||
|
||||
@Column(name = "NoTerima", nullable = true)
|
||||
@Caption(value="Nomor Terima")
|
||||
|
||||
@Caption(value = "Nomor Terima")
|
||||
private String noTerima;
|
||||
|
||||
@Column(name = "TglTerima", nullable = true)
|
||||
@Caption(value="Tgl Terima")
|
||||
|
||||
@Caption(value = "Tgl Terima")
|
||||
private Date tglTerima;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectLoginUserPenerimaSuratFk")
|
||||
@Caption(value="User Penerima Surat")
|
||||
|
||||
@Caption(value = "User Penerima Surat")
|
||||
private PegawaiVO loginUserPenerimaSurat;
|
||||
|
||||
// @Column(name = "ObjectLoginUserPenerimaSuratFk", insertable=false,updatable=false, nullable = true)
|
||||
// private Integer loginUserPenerimaSuratId;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectRuanganPenerimaFk")
|
||||
@Caption(value="Ruangan Penerima")
|
||||
|
||||
@Caption(value = "Ruangan Penerima")
|
||||
private RuanganVO ruanganPenerima;
|
||||
|
||||
// @Column(name = "ObjectRuanganPenerimaFk", insertable=false,updatable=false, nullable = true)
|
||||
// private Integer ruanganPenerimaId;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectTipePengirimSuratFk")
|
||||
@Caption(value="Tipe Pengirim Surat")
|
||||
|
||||
@Caption(value = "Tipe Pengirim Surat")
|
||||
private TipePengirimSuratVO tipePengirimSurat;
|
||||
|
||||
// @Column(name = "ObjectTipePengirimSuratFk", insertable=false,updatable=false, nullable = true)
|
||||
// private Integer tipePengirimSuratId;
|
||||
|
||||
@Column(name = "tglSurat", nullable = true)
|
||||
@Caption(value="Tgl Surat")
|
||||
|
||||
@Caption(value = "Tgl Surat")
|
||||
private Date tglSurat;
|
||||
|
||||
@Column(name = "Perihal", nullable = true)
|
||||
@Caption(value="Perihal")
|
||||
|
||||
@Caption(value = "Perihal")
|
||||
private String perihal;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectPegawaiPengirimSuratFk")
|
||||
@Caption(value="Pegawai Pengirim Surat")
|
||||
|
||||
@Caption(value = "Pegawai Pengirim Surat")
|
||||
private PegawaiVO pegawaiPengirimSurat;
|
||||
|
||||
// @Column(name = "ObjectPegawaiPengirimSuratFk", insertable=false,updatable=false, nullable = true)
|
||||
// private Integer pegawaiPengirimSuratId;
|
||||
|
||||
@Column(name = "AlamatPengirim", nullable = true)
|
||||
@Caption(value="Alamat Pengirim")
|
||||
|
||||
@Caption(value = "Alamat Pengirim")
|
||||
private String alamatPengirim;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectSifatSuratFk")
|
||||
@Caption(value="Sifat Surat")
|
||||
|
||||
@Caption(value = "Sifat Surat")
|
||||
private SifatSuratVO sifatSurat;
|
||||
|
||||
// @Column(name = "ObjectSifatSuratFk", insertable=false,updatable=false, nullable = true)
|
||||
// private Integer sifatSuratId;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectStatusBerkasFk")
|
||||
@Caption(value="Status Berkas")
|
||||
|
||||
@Caption(value = "Status Berkas")
|
||||
private StatusBerkasVO statusBerkas;
|
||||
|
||||
// @Column(name = "ObjectSifatSuratFk", insertable=false,updatable=false, nullable = true)
|
||||
// private Integer statusBerkasId;
|
||||
|
||||
// @Column(name = "ObjectStatusYaTidakKeaktifanFk", insertable=false,updatable=false, nullable = true)
|
||||
// private Integer statusKeaktifanJenisArsipId;
|
||||
|
||||
@Column(name = "LampiranPerihal", nullable = true)
|
||||
@Caption(value="Lampiran Perihal")
|
||||
|
||||
@Caption(value = "Lampiran Perihal")
|
||||
private Integer lampiranPerihal;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectKlasifikasiArsipFk")
|
||||
@Caption(value="KlasifikasiArsip")
|
||||
|
||||
@Caption(value = "KlasifikasiArsip")
|
||||
private KlasifikasiArsipVO klasifikasiArsip;
|
||||
|
||||
// @Column(name = "ObjectKlasifikasiArsipFk", insertable=false,updatable=false, nullable = true)
|
||||
// private Integer klasifikasiArsipId;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectSubKlasifikasiArsipFk")
|
||||
@Caption(value="SubKlasifikasiArsip")
|
||||
|
||||
@Caption(value = "SubKlasifikasiArsip")
|
||||
private SubKlasifikasiArsipVO subKlasifikasiArsip;
|
||||
|
||||
// @Column(name = "ObjectSubKlasifikasiArsipFk", insertable=false,updatable=false, nullable = true)
|
||||
// private Integer subKlasifikasiArsipId;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectStatusVerifikasiFk")
|
||||
@Caption(value="statusKeaktifanJenisArsip")
|
||||
|
||||
@Caption(value = "statusKeaktifanJenisArsip")
|
||||
private StatusYaTidakVO statusVerifikasi;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectStatusYaTidakKeaktifanFk")
|
||||
@Caption(value="statusKeaktifanJenisArsip")
|
||||
|
||||
@Caption(value = "statusKeaktifanJenisArsip")
|
||||
private JenisArsipVO jenisArsip;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectStatusYaTidakKeaktifanFk")
|
||||
@Caption(value="statusKeaktifanJenisArsip")
|
||||
|
||||
@Caption(value = "statusKeaktifanJenisArsip")
|
||||
private StatusYaTidakVO statusKeaktifan;
|
||||
|
||||
|
||||
|
||||
public StrukKirimVO getNokirim() {
|
||||
return nokirim;
|
||||
}
|
||||
|
||||
public void setNokirim(StrukKirimVO nokirim) {
|
||||
this.nokirim = nokirim;
|
||||
}
|
||||
|
||||
public StrukPelayananVO getNostruk_t() {
|
||||
return nostruk_t;
|
||||
}
|
||||
|
||||
public void setNostruk_t(StrukPelayananVO nostruk_t) {
|
||||
this.nostruk_t = nostruk_t;
|
||||
}
|
||||
|
||||
public JenisArsipVO getJenisArsip() {
|
||||
return jenisArsip;
|
||||
}
|
||||
|
||||
public void setJenisArsip(JenisArsipVO jenisArsip) {
|
||||
this.jenisArsip = jenisArsip;
|
||||
}
|
||||
|
||||
public DokumenVO getKddokumen() {
|
||||
return kddokumen;
|
||||
}
|
||||
|
||||
public void setKddokumen(DokumenVO kddokumen) {
|
||||
this.kddokumen = kddokumen;
|
||||
}
|
||||
|
||||
public PegawaiVO getKdpegawaitujuan() {
|
||||
return kdpegawaitujuan;
|
||||
}
|
||||
|
||||
public void setKdpegawaitujuan(PegawaiVO kdpegawaitujuan) {
|
||||
this.kdpegawaitujuan = kdpegawaitujuan;
|
||||
}
|
||||
|
||||
public RuanganVO getKdruangantujuan() {
|
||||
return kdruangantujuan;
|
||||
}
|
||||
|
||||
public void setKdruangantujuan(RuanganVO kdruangantujuan) {
|
||||
this.kdruangantujuan = kdruangantujuan;
|
||||
}
|
||||
|
||||
public String getKeteranganlainnya() {
|
||||
return keteranganlainnya;
|
||||
}
|
||||
|
||||
public void setKeteranganlainnya(String keteranganlainnya) {
|
||||
this.keteranganlainnya = keteranganlainnya;
|
||||
}
|
||||
|
||||
public String getNodokumen_intern() {
|
||||
return nodokumen_intern;
|
||||
}
|
||||
|
||||
public void setNodokumen_intern(String nodokumen_intern) {
|
||||
this.nodokumen_intern = nodokumen_intern;
|
||||
}
|
||||
|
||||
// public StrukKirimVO getNokirim() {
|
||||
// return nokirim;
|
||||
// }
|
||||
//
|
||||
// public void setNokirim(StrukKirimVO nokirim) {
|
||||
// this.nokirim = nokirim;
|
||||
// }
|
||||
//
|
||||
// public StrukPelayananVO getNostruk_t() {
|
||||
// return nostruk_t;
|
||||
// }
|
||||
//
|
||||
// public void setNostruk_t(StrukPelayananVO nostruk_t) {
|
||||
// this.nostruk_t = nostruk_t;
|
||||
// }
|
||||
|
||||
public Date getTglTerima() {
|
||||
return tglTerima;
|
||||
}
|
||||
|
||||
public void setTglTerima(Date tglTerima) {
|
||||
this.tglTerima = tglTerima;
|
||||
}
|
||||
|
||||
public PegawaiVO getLoginUserPenerimaSurat() {
|
||||
return loginUserPenerimaSurat;
|
||||
}
|
||||
|
||||
public void setLoginUserPenerimaSurat(PegawaiVO penerimaSurat) {
|
||||
this.loginUserPenerimaSurat = penerimaSurat;
|
||||
}
|
||||
|
||||
public RuanganVO getRuanganPenerima() {
|
||||
return ruanganPenerima;
|
||||
}
|
||||
|
||||
public void setRuanganPenerima(RuanganVO ruanganPenerima) {
|
||||
this.ruanganPenerima = ruanganPenerima;
|
||||
}
|
||||
|
||||
public TipePengirimSuratVO getTipePengirimSurat() {
|
||||
return tipePengirimSurat;
|
||||
}
|
||||
|
||||
public void setTipePengirimSurat(TipePengirimSuratVO tipePengirimSurat) {
|
||||
this.tipePengirimSurat = tipePengirimSurat;
|
||||
}
|
||||
|
||||
public Date getTglSurat() {
|
||||
return tglSurat;
|
||||
}
|
||||
|
||||
public void setTglSurat(Date tglSurat) {
|
||||
this.tglSurat = tglSurat;
|
||||
}
|
||||
|
||||
public String getPerihal() {
|
||||
return perihal;
|
||||
}
|
||||
|
||||
public void setPerihal(String perihal) {
|
||||
this.perihal = perihal;
|
||||
}
|
||||
|
||||
public PegawaiVO getPegawaiPengirimSurat() {
|
||||
return pegawaiPengirimSurat;
|
||||
}
|
||||
|
||||
public void setPegawaiPengirimSurat(PegawaiVO pegawaiPengirimSurat) {
|
||||
this.pegawaiPengirimSurat = pegawaiPengirimSurat;
|
||||
}
|
||||
|
||||
public String getAlamatPengirim() {
|
||||
return alamatPengirim;
|
||||
}
|
||||
|
||||
public void setAlamatPengirim(String alamatPengirim) {
|
||||
this.alamatPengirim = alamatPengirim;
|
||||
}
|
||||
|
||||
public SifatSuratVO getSifatSurat() {
|
||||
return sifatSurat;
|
||||
}
|
||||
|
||||
public void setSifatSurat(SifatSuratVO sifatSurat) {
|
||||
this.sifatSurat = sifatSurat;
|
||||
}
|
||||
|
||||
public StatusBerkasVO getStatusBerkas() {
|
||||
return statusBerkas;
|
||||
}
|
||||
|
||||
public void setStatusBerkas(StatusBerkasVO statusBerkas) {
|
||||
this.statusBerkas = statusBerkas;
|
||||
}
|
||||
|
||||
public Integer getLampiranPerihal() {
|
||||
return lampiranPerihal;
|
||||
}
|
||||
|
||||
public void setLampiranPerihal(Integer lampiranPerihal) {
|
||||
this.lampiranPerihal = lampiranPerihal;
|
||||
}
|
||||
|
||||
public KlasifikasiArsipVO getKlasifikasiArsip() {
|
||||
return klasifikasiArsip;
|
||||
}
|
||||
|
||||
public void setKlasifikasiArsip(KlasifikasiArsipVO klasifikasiArsip) {
|
||||
this.klasifikasiArsip = klasifikasiArsip;
|
||||
}
|
||||
|
||||
public SubKlasifikasiArsipVO getSubKlasifikasiArsip() {
|
||||
return subKlasifikasiArsip;
|
||||
}
|
||||
|
||||
public void setSubKlasifikasiArsip(SubKlasifikasiArsipVO subKlasifikasiArsip) {
|
||||
this.subKlasifikasiArsip = subKlasifikasiArsip;
|
||||
}
|
||||
|
||||
public String getNoTerima() {
|
||||
return noTerima;
|
||||
}
|
||||
|
||||
public void setNoTerima(String noTerima) {
|
||||
this.noTerima = noTerima;
|
||||
}
|
||||
|
||||
public StatusYaTidakVO getStatusVerifikasi() {
|
||||
return statusVerifikasi;
|
||||
}
|
||||
|
||||
public void setStatusVerifikasi(StatusYaTidakVO statusVerifikasi) {
|
||||
this.statusVerifikasi = statusVerifikasi;
|
||||
}
|
||||
|
||||
public RuanganVO getRuanganPengirim() {
|
||||
return ruanganPengirim;
|
||||
}
|
||||
|
||||
public void setRuanganPengirim(RuanganVO ruanganPengirim) {
|
||||
this.ruanganPengirim = ruanganPengirim;
|
||||
}
|
||||
|
||||
public PegawaiVO getUserPengirimSurat() {
|
||||
return userPengirimSurat;
|
||||
}
|
||||
|
||||
public void setUserPengirimSurat(PegawaiVO userPengirimSurat) {
|
||||
this.userPengirimSurat = userPengirimSurat;
|
||||
}
|
||||
|
||||
public JenisSuratVO getJenisSurat() {
|
||||
return jenisSurat;
|
||||
}
|
||||
|
||||
public void setJenisSurat(JenisSuratVO jenisSurat) {
|
||||
this.jenisSurat = jenisSurat;
|
||||
}
|
||||
|
||||
public StatusYaTidakVO getStatusKeaktifan() {
|
||||
return statusKeaktifan;
|
||||
}
|
||||
|
||||
public void setStatusKeaktifan(StatusYaTidakVO statusKeaktifan) {
|
||||
this.statusKeaktifan = statusKeaktifan;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,345 +1,97 @@
|
||||
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 javax.validation.constraints.NotNull;
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
||||
import javax.persistence.*;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.BaseTransaction;
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.entities.JenisArsip;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonManagedReference;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
|
||||
/**
|
||||
* class DokumenKeluar
|
||||
* class DokumenKeluar
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
@Entity
|
||||
@Table(name = "DokumenKeluar_T")
|
||||
@Getter
|
||||
@Setter
|
||||
public class DokumenKeluarVO extends BaseTransactionVO {
|
||||
@Caption(value="Institusi Nama Tujuan")
|
||||
@Column(name = "InstitusiNamaTujuan", nullable = false , length = 75)
|
||||
|
||||
@Caption(value = "Institusi Nama Tujuan")
|
||||
private String institusinamatujuan;
|
||||
|
||||
@Caption(value="Jabatan Penerima Tujuan")
|
||||
@Column(name = "JabatanPenerimaTujuan", nullable = true , length = 50)
|
||||
@Caption(value = "Jabatan Penerima Tujuan")
|
||||
private String jabatanpenerimatujuan;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectDokumenFk")
|
||||
@NotNull(message="Object Dokumen Harus Diisi")
|
||||
@Caption(value="Object Dokumen")
|
||||
@NotNull(message = "Object Dokumen Harus Diisi")
|
||||
@Caption(value = "Object Dokumen")
|
||||
private DokumenVO kddokumen;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectPegawaiTandaTanganFk")
|
||||
@Caption(value="Object Pegawai Tanda Tangan")
|
||||
@Caption(value = "Object Pegawai Tanda Tangan")
|
||||
private LoginUserVO kdpegawaitandatangan;
|
||||
|
||||
@Caption(value="Keterangan Lainnya")
|
||||
@Column(name = "KeteranganLainnya", nullable = true , length = 15)
|
||||
@Caption(value = "Keterangan Lainnya")
|
||||
private String keteranganlainnya;
|
||||
|
||||
@Caption(value="Nama Penerima Tujuan")
|
||||
@Column(name = "NamaPenerimaTujuan", nullable = false , length = 40)
|
||||
@Caption(value = "Nama Penerima Tujuan")
|
||||
private String namapenerimatujuan;
|
||||
|
||||
@Caption(value="No Dokumen_ Intern")
|
||||
@Column(name = "NoDokumen_Intern", nullable = true , length = 30)
|
||||
@Caption(value = "No Dokumen_ Intern")
|
||||
private String nodokumen_intern;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "NoKirimFk")
|
||||
@Caption(value="No Kirim")
|
||||
@Caption(value = "No Kirim")
|
||||
private StrukKirimVO nokirim;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "NoStrukFk")
|
||||
@Caption(value="No Struk")
|
||||
@Caption(value = "No Struk")
|
||||
private StrukPelayananVO nostruk;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "NoStruk_T_ReplyFk")
|
||||
@Caption(value="No Struk_ T_ Reply")
|
||||
@Caption(value = "No Struk_ T_ Reply")
|
||||
private StrukPelayananVO nostruk_t_reply;
|
||||
|
||||
@Caption(value="Unit Bagian Tujuan")
|
||||
@Column(name = "UnitBagianTujuan", nullable = true , length = 75)
|
||||
@Caption(value = "Unit Bagian Tujuan")
|
||||
private String unitbagiantujuan;
|
||||
|
||||
@Caption(value="No Surat")
|
||||
@Column(name = "NoSurat", nullable = true)
|
||||
|
||||
@Caption(value = "No Surat")
|
||||
private String noSurat;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectSifatSuratFk")
|
||||
@Caption(value="Sifat Surat")
|
||||
|
||||
@Caption(value = "Sifat Surat")
|
||||
private SifatSuratVO sifatSurat;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectStatusBerkasFk")
|
||||
@Caption(value="Status Berkas")
|
||||
@Caption(value = "Status Berkas")
|
||||
private StatusBerkasVO statusBerkas;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectJenisSuratFk")
|
||||
@Caption(value="Jenis Surat")
|
||||
@Caption(value = "Jenis Surat")
|
||||
private JenisSuratVO jenisSurat;
|
||||
|
||||
@Caption(value="lampiran")
|
||||
@Column(name = "lampiran", nullable = true)
|
||||
@Caption(value = "lampiran")
|
||||
private Integer lampiran;
|
||||
|
||||
@Caption(value="perihal")
|
||||
@Column(name = "perihal", nullable = true)
|
||||
|
||||
@Caption(value = "perihal")
|
||||
private String perihal;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectKlasifikasiArsipFk")
|
||||
@Caption(value="Klasifikasi Arsip")
|
||||
|
||||
@Caption(value = "Klasifikasi Arsip")
|
||||
private KlasifikasiArsipVO klasifikasiArsip;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectSubKlasifikasiArsipFk")
|
||||
@Caption(value="Sub Klasifikasi Arsip")
|
||||
@Caption(value = "Sub Klasifikasi Arsip")
|
||||
private SubKlasifikasiArsipVO subKlasifikasiArsip;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectPegawaiAtasNamaFk")
|
||||
@Caption(value="pegawaiAtasNama")
|
||||
@Caption(value = "pegawaiAtasNama")
|
||||
private PegawaiVO pegawaiAtasNama;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectPegawaiPenandaTanganFk")
|
||||
@Caption(value="pegawaiPenandaTangan")
|
||||
@Caption(value = "pegawaiPenandaTangan")
|
||||
private PegawaiVO pegawaiPenandaTangan;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectMetodeKirimFk")
|
||||
@Caption(value="Metode Kirim")
|
||||
@Caption(value = "Metode Kirim")
|
||||
private MetodeKirimVO metodeKirim;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectPegawaiPengirimFk")
|
||||
@Caption(value="pegawaiPengirim")
|
||||
|
||||
@Caption(value = "pegawaiPengirim")
|
||||
private PegawaiVO pegawaiPengirim;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectJenisArsipFk")
|
||||
@Caption(value="JenisArsip")
|
||||
@Caption(value = "JenisArsip")
|
||||
private JenisArsipVO jenisArsip;
|
||||
|
||||
//
|
||||
@OneToMany(cascade=CascadeType.ALL,fetch = FetchType.LAZY, mappedBy = "dokumenKeluar")
|
||||
|
||||
@Caption(value = "dokumenKeluarSet")
|
||||
private Set<KonseptorPemeriksaSuratVO> konseptorPemeriksaSuratSet=new HashSet<KonseptorPemeriksaSuratVO>();
|
||||
|
||||
public String getNoSurat() {
|
||||
return noSurat;
|
||||
}
|
||||
private Set<KonseptorPemeriksaSuratVO> konseptorPemeriksaSuratSet = new HashSet<>();
|
||||
|
||||
public void setNoSurat(String noSurat) {
|
||||
this.noSurat = noSurat;
|
||||
}
|
||||
|
||||
public SifatSuratVO getSifatSurat() {
|
||||
return sifatSurat;
|
||||
}
|
||||
|
||||
public void setSifatSurat(SifatSuratVO sifatSurat) {
|
||||
this.sifatSurat = sifatSurat;
|
||||
}
|
||||
|
||||
public StatusBerkasVO getStatusBerkas() {
|
||||
return statusBerkas;
|
||||
}
|
||||
|
||||
public void setStatusBerkas(StatusBerkasVO statusBerkas) {
|
||||
this.statusBerkas = statusBerkas;
|
||||
}
|
||||
|
||||
public JenisSuratVO getJenisSurat() {
|
||||
return jenisSurat;
|
||||
}
|
||||
|
||||
public void setJenisSurat(JenisSuratVO jenisSurat) {
|
||||
this.jenisSurat = jenisSurat;
|
||||
}
|
||||
|
||||
public Integer getLampiran() {
|
||||
return lampiran;
|
||||
}
|
||||
|
||||
public void setLampiran(Integer lampiran) {
|
||||
this.lampiran = lampiran;
|
||||
}
|
||||
|
||||
public String getPerihal() {
|
||||
return perihal;
|
||||
}
|
||||
|
||||
public void setPerihal(String perihal) {
|
||||
this.perihal = perihal;
|
||||
}
|
||||
|
||||
public KlasifikasiArsipVO getKlasifikasiArsip() {
|
||||
return klasifikasiArsip;
|
||||
}
|
||||
|
||||
public void setKlasifikasiArsip(KlasifikasiArsipVO klasifikasiArsip) {
|
||||
this.klasifikasiArsip = klasifikasiArsip;
|
||||
}
|
||||
|
||||
public SubKlasifikasiArsipVO getSubKlasifikasiArsip() {
|
||||
return subKlasifikasiArsip;
|
||||
}
|
||||
|
||||
public void setSubKlasifikasiArsip(SubKlasifikasiArsipVO subKlasifikasiArsip) {
|
||||
this.subKlasifikasiArsip = subKlasifikasiArsip;
|
||||
}
|
||||
|
||||
public PegawaiVO getPegawaiAtasNama() {
|
||||
return pegawaiAtasNama;
|
||||
}
|
||||
|
||||
public void setPegawaiAtasNama(PegawaiVO pegawaiAtasNama) {
|
||||
this.pegawaiAtasNama = pegawaiAtasNama;
|
||||
}
|
||||
|
||||
public PegawaiVO getPegawaiPenandaTangan() {
|
||||
return pegawaiPenandaTangan;
|
||||
}
|
||||
|
||||
public void setPegawaiPenandaTangan(PegawaiVO pegawaiPenandaTangan) {
|
||||
this.pegawaiPenandaTangan = pegawaiPenandaTangan;
|
||||
}
|
||||
|
||||
public MetodeKirimVO getMetodeKirim() {
|
||||
return metodeKirim;
|
||||
}
|
||||
|
||||
public void setMetodeKirim(MetodeKirimVO metodeKirim) {
|
||||
this.metodeKirim = metodeKirim;
|
||||
}
|
||||
|
||||
public PegawaiVO getPegawaiPengirim() {
|
||||
return pegawaiPengirim;
|
||||
}
|
||||
|
||||
public void setPegawaiPengirim(PegawaiVO pegawaiPengirim) {
|
||||
this.pegawaiPengirim = pegawaiPengirim;
|
||||
}
|
||||
|
||||
public String getInstitusinamatujuan() {
|
||||
return institusinamatujuan;
|
||||
}
|
||||
|
||||
public void setInstitusinamatujuan(String institusinamatujuan) {
|
||||
this.institusinamatujuan = institusinamatujuan;
|
||||
}
|
||||
|
||||
public String getJabatanpenerimatujuan() {
|
||||
return jabatanpenerimatujuan;
|
||||
}
|
||||
|
||||
public void setJabatanpenerimatujuan(String jabatanpenerimatujuan) {
|
||||
this.jabatanpenerimatujuan = jabatanpenerimatujuan;
|
||||
}
|
||||
|
||||
public DokumenVO getKddokumen() {
|
||||
return kddokumen;
|
||||
}
|
||||
|
||||
public void setKddokumen(DokumenVO kddokumen) {
|
||||
this.kddokumen = kddokumen;
|
||||
}
|
||||
|
||||
public LoginUserVO getKdpegawaitandatangan() {
|
||||
return kdpegawaitandatangan;
|
||||
}
|
||||
|
||||
public void setKdpegawaitandatangan(LoginUserVO kdpegawaitandatangan) {
|
||||
this.kdpegawaitandatangan = kdpegawaitandatangan;
|
||||
}
|
||||
|
||||
public String getKeteranganlainnya() {
|
||||
return keteranganlainnya;
|
||||
}
|
||||
|
||||
public void setKeteranganlainnya(String keteranganlainnya) {
|
||||
this.keteranganlainnya = keteranganlainnya;
|
||||
}
|
||||
|
||||
public String getNamapenerimatujuan() {
|
||||
return namapenerimatujuan;
|
||||
}
|
||||
|
||||
public void setNamapenerimatujuan(String namapenerimatujuan) {
|
||||
this.namapenerimatujuan = namapenerimatujuan;
|
||||
}
|
||||
|
||||
public String getNodokumen_intern() {
|
||||
return nodokumen_intern;
|
||||
}
|
||||
|
||||
public void setNodokumen_intern(String nodokumen_intern) {
|
||||
this.nodokumen_intern = nodokumen_intern;
|
||||
}
|
||||
|
||||
public StrukKirimVO getNokirim() {
|
||||
return nokirim;
|
||||
}
|
||||
|
||||
public void setNokirim(StrukKirimVO nokirim) {
|
||||
this.nokirim = nokirim;
|
||||
}
|
||||
|
||||
public StrukPelayananVO getNostruk() {
|
||||
return nostruk;
|
||||
}
|
||||
|
||||
public void setNostruk(StrukPelayananVO nostruk) {
|
||||
this.nostruk = nostruk;
|
||||
}
|
||||
|
||||
public StrukPelayananVO getNostruk_t_reply() {
|
||||
return nostruk_t_reply;
|
||||
}
|
||||
|
||||
public void setNostruk_t_reply(StrukPelayananVO nostruk_t_reply) {
|
||||
this.nostruk_t_reply = nostruk_t_reply;
|
||||
}
|
||||
|
||||
public String getUnitbagiantujuan() {
|
||||
return unitbagiantujuan;
|
||||
}
|
||||
|
||||
public void setUnitbagiantujuan(String unitbagiantujuan) {
|
||||
this.unitbagiantujuan = unitbagiantujuan;
|
||||
}
|
||||
|
||||
public Set<KonseptorPemeriksaSuratVO> getKonseptorPemeriksaSuratSet() {
|
||||
return konseptorPemeriksaSuratSet;
|
||||
}
|
||||
|
||||
public void setKonseptorPemeriksaSuratSet(Set<KonseptorPemeriksaSuratVO> konseptorPemeriksaSuratSet) {
|
||||
this.konseptorPemeriksaSuratSet = konseptorPemeriksaSuratSet;
|
||||
}
|
||||
|
||||
public JenisArsipVO getJenisArsip() {
|
||||
return jenisArsip;
|
||||
}
|
||||
|
||||
public void setJenisArsip(JenisArsipVO jenisArsip) {
|
||||
this.jenisArsip = jenisArsip;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,10 +1,14 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class DokumenMasukVO extends BaseTransactionVO {
|
||||
|
||||
private String institusinamapengirim;
|
||||
@ -57,214 +61,6 @@ public class DokumenMasukVO extends BaseTransactionVO {
|
||||
|
||||
private String status;
|
||||
|
||||
private Set<MappingKirimDokumenPasienVO> mapKirimDokumen = new HashSet<MappingKirimDokumenPasienVO>();
|
||||
|
||||
public String getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(String status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getIsVerifikasi() {
|
||||
return isVerifikasi;
|
||||
}
|
||||
|
||||
public void setIsVerifikasi(String isVerifikasi) {
|
||||
this.isVerifikasi = isVerifikasi;
|
||||
}
|
||||
|
||||
public Set<MappingKirimDokumenPasienVO> getMapKirimDokumen() {
|
||||
return mapKirimDokumen;
|
||||
}
|
||||
|
||||
public void setMapKirimDokumen(Set<MappingKirimDokumenPasienVO> mapKirimDokumen) {
|
||||
this.mapKirimDokumen = mapKirimDokumen;
|
||||
}
|
||||
|
||||
public String getPerihal() {
|
||||
return perihal;
|
||||
}
|
||||
|
||||
public void setPerihal(String perihal) {
|
||||
this.perihal = perihal;
|
||||
}
|
||||
|
||||
public String getLampiranPerihal() {
|
||||
return lampiranPerihal;
|
||||
}
|
||||
|
||||
public void setLampiranPerihal(String lampiranPerihal) {
|
||||
this.lampiranPerihal = lampiranPerihal;
|
||||
}
|
||||
|
||||
public PegawaiVO getPegawaiPenerimaSurat() {
|
||||
return pegawaiPenerimaSurat;
|
||||
}
|
||||
|
||||
public void setPegawaiPenerimaSurat(PegawaiVO pegawaiPenerimaSurat) {
|
||||
this.pegawaiPenerimaSurat = pegawaiPenerimaSurat;
|
||||
}
|
||||
|
||||
public RuanganVO getRuanganPenerima() {
|
||||
return ruanganPenerima;
|
||||
}
|
||||
|
||||
public void setRuanganPenerima(RuanganVO ruanganPenerima) {
|
||||
this.ruanganPenerima = ruanganPenerima;
|
||||
}
|
||||
|
||||
public RuanganVO getRuanganPengirim() {
|
||||
return ruanganPengirim;
|
||||
}
|
||||
|
||||
public void setRuanganPengirim(RuanganVO ruanganPengirim) {
|
||||
this.ruanganPengirim = ruanganPengirim;
|
||||
}
|
||||
|
||||
public TipePengirimSuratVO getTipePengirimSurat() {
|
||||
return tipePengirimSurat;
|
||||
}
|
||||
|
||||
public void setTipePengirimSurat(TipePengirimSuratVO tipePengirimSurat) {
|
||||
this.tipePengirimSurat = tipePengirimSurat;
|
||||
}
|
||||
|
||||
public SifatSuratVO getSifatSurat() {
|
||||
return sifatSurat;
|
||||
}
|
||||
|
||||
public void setSifatSurat(SifatSuratVO sifatSurat) {
|
||||
this.sifatSurat = sifatSurat;
|
||||
}
|
||||
|
||||
public StatusBerkasVO getStatusBerkas() {
|
||||
return statusBerkas;
|
||||
}
|
||||
|
||||
public void setStatusBerkas(StatusBerkasVO statusBerkas) {
|
||||
this.statusBerkas = statusBerkas;
|
||||
}
|
||||
|
||||
public JenisSuratVO getJenisSurat() {
|
||||
return jenisSurat;
|
||||
}
|
||||
|
||||
public void setJenisSurat(JenisSuratVO jenisSurat) {
|
||||
this.jenisSurat = jenisSurat;
|
||||
}
|
||||
|
||||
public JenisArsipVO getJenisArsip() {
|
||||
return jenisArsip;
|
||||
}
|
||||
|
||||
public void setJenisArsip(JenisArsipVO jenisArsip) {
|
||||
this.jenisArsip = jenisArsip;
|
||||
}
|
||||
|
||||
public String getInstitusinamapengirim() {
|
||||
return institusinamapengirim;
|
||||
}
|
||||
|
||||
public void setInstitusinamapengirim(String institusinamapengirim) {
|
||||
this.institusinamapengirim = institusinamapengirim;
|
||||
}
|
||||
|
||||
public String getJabatantandatangan() {
|
||||
return jabatantandatangan;
|
||||
}
|
||||
|
||||
public void setJabatantandatangan(String jabatantandatangan) {
|
||||
this.jabatantandatangan = jabatantandatangan;
|
||||
}
|
||||
|
||||
public DokumenVO getKddokumen() {
|
||||
return kddokumen;
|
||||
}
|
||||
|
||||
public void setKddokumen(DokumenVO kddokumen) {
|
||||
this.kddokumen = kddokumen;
|
||||
}
|
||||
|
||||
public LoginUserVO getKdpegawaitujuanlast() {
|
||||
return kdpegawaitujuanlast;
|
||||
}
|
||||
|
||||
public void setKdpegawaitujuanlast(LoginUserVO kdpegawaitujuanlast) {
|
||||
this.kdpegawaitujuanlast = kdpegawaitujuanlast;
|
||||
}
|
||||
|
||||
public RuanganVO getKdruangantujuanlast() {
|
||||
return kdruangantujuanlast;
|
||||
}
|
||||
|
||||
public void setKdruangantujuanlast(RuanganVO kdruangantujuanlast) {
|
||||
this.kdruangantujuanlast = kdruangantujuanlast;
|
||||
}
|
||||
|
||||
public String getKeteranganlainnya() {
|
||||
return keteranganlainnya;
|
||||
}
|
||||
|
||||
public void setKeteranganlainnya(String keteranganlainnya) {
|
||||
this.keteranganlainnya = keteranganlainnya;
|
||||
}
|
||||
|
||||
public String getNamatandatangan() {
|
||||
return namatandatangan;
|
||||
}
|
||||
|
||||
public void setNamatandatangan(String namatandatangan) {
|
||||
this.namatandatangan = namatandatangan;
|
||||
}
|
||||
|
||||
public String getNodokumen_extern() {
|
||||
return nodokumen_extern;
|
||||
}
|
||||
|
||||
public void setNodokumen_extern(String nodokumen_extern) {
|
||||
this.nodokumen_extern = nodokumen_extern;
|
||||
}
|
||||
|
||||
public StrukKirimVO getNokirim_reply() {
|
||||
return nokirim_reply;
|
||||
}
|
||||
|
||||
public void setNokirim_reply(StrukKirimVO nokirim_reply) {
|
||||
this.nokirim_reply = nokirim_reply;
|
||||
}
|
||||
|
||||
public StrukKirimVO getNokirimketujuanlast() {
|
||||
return nokirimketujuanlast;
|
||||
}
|
||||
|
||||
public void setNokirimketujuanlast(StrukKirimVO nokirimketujuanlast) {
|
||||
this.nokirimketujuanlast = nokirimketujuanlast;
|
||||
}
|
||||
|
||||
public StrukPelayananVO getNostruk() {
|
||||
return nostruk;
|
||||
}
|
||||
|
||||
public void setNostruk(StrukPelayananVO nostruk) {
|
||||
this.nostruk = nostruk;
|
||||
}
|
||||
|
||||
public StrukPelayananVO getNostruk_ttujuanlast() {
|
||||
return nostruk_ttujuanlast;
|
||||
}
|
||||
|
||||
public void setNostruk_ttujuanlast(StrukPelayananVO nostruk_ttujuanlast) {
|
||||
this.nostruk_ttujuanlast = nostruk_ttujuanlast;
|
||||
}
|
||||
|
||||
public String getUnitbagianpengirim() {
|
||||
return unitbagianpengirim;
|
||||
}
|
||||
|
||||
public void setUnitbagianpengirim(String unitbagianpengirim) {
|
||||
this.unitbagianpengirim = unitbagianpengirim;
|
||||
}
|
||||
private Set<MappingKirimDokumenPasienVO> mapKirimDokumen = new HashSet<>();
|
||||
|
||||
}
|
||||
|
||||
@ -1,159 +1,63 @@
|
||||
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.JoinColumn;
|
||||
import javax.persistence.ManyToOne;
|
||||
import javax.persistence.OneToMany;
|
||||
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;
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
||||
/**
|
||||
* class DokumenRekamMedisVOVO
|
||||
*
|
||||
* @author Generator
|
||||
* @author Generator, Arya
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
public class DokumenRekamMedisVO extends BaseTransactionVO {
|
||||
|
||||
private String noRecPasienDaftar;
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "NoCMFk")
|
||||
|
||||
@NotNull(message = "No C M Harus Diisi")
|
||||
@Caption(value = "No C M")
|
||||
private PasienVO noCM;
|
||||
|
||||
public PasienVO getNoCM() {
|
||||
return noCM;
|
||||
}
|
||||
|
||||
public void setNoCM(PasienVO noCM) {
|
||||
this.noCM = noCM;
|
||||
}
|
||||
|
||||
@Column(name = "NoCMFk", insertable = false, updatable = false)
|
||||
private String noCMId;
|
||||
|
||||
@Column(name = "Status", nullable = true, length = 100)
|
||||
@Caption(value = "Status")
|
||||
private String status;
|
||||
|
||||
public void setStatus(String status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "NoKirimFk")
|
||||
@NotNull(message = "No Kirim Harus Diisi")
|
||||
@Caption(value = "No Kirim")
|
||||
private StrukKirimVO noKirim;
|
||||
|
||||
public StrukKirimVO getNoKirim() {
|
||||
return noKirim;
|
||||
}
|
||||
|
||||
public void setNoKirim(StrukKirimVO noKirim) {
|
||||
this.noKirim = noKirim;
|
||||
}
|
||||
|
||||
@Column(name = "NoKirimFk", insertable = false, updatable = false)
|
||||
private String noKirimId;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "NoTerimaFk")
|
||||
|
||||
@Caption(value = "No Terima")
|
||||
private StrukPelayananVO noTerima;
|
||||
|
||||
public StrukPelayananVO getNoTerima() {
|
||||
return noTerima;
|
||||
}
|
||||
|
||||
public void setNoTerima(StrukPelayananVO noTerima) {
|
||||
this.noTerima = noTerima;
|
||||
}
|
||||
|
||||
@Column(name = "NoTerimaFk", insertable = false, updatable = false, nullable = true)
|
||||
private String noTerimaId;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "NoDokumenFk")
|
||||
@NotNull(message = "No Dokumen Harus Diisi")
|
||||
@Caption(value = "No Dokumen")
|
||||
private DokumenVO noDokumen;
|
||||
|
||||
public DokumenVO getNoDokumen() {
|
||||
return noDokumen;
|
||||
}
|
||||
|
||||
public void setNoDokumen(DokumenVO noDokumen) {
|
||||
this.noDokumen = noDokumen;
|
||||
}
|
||||
|
||||
@Column(name = "NoDokumenFk", insertable = false, updatable = false)
|
||||
private String noDokumenId;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "RuanganTujuanFk")
|
||||
@NotNull(message = "Ruangan Tujuan Harus Diisi")
|
||||
@Caption(value = "Ruangan Tujuan")
|
||||
private RuanganVO ruanganTujuan;
|
||||
|
||||
public RuanganVO getRuanganTujuan() {
|
||||
return ruanganTujuan;
|
||||
}
|
||||
|
||||
public void setRuanganTujuan(RuanganVO ruanganTujuan) {
|
||||
this.ruanganTujuan = ruanganTujuan;
|
||||
}
|
||||
|
||||
@Column(name = "RuanganTujuanFk", insertable = false, updatable = false)
|
||||
private String ruanganTujuanId;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "RuanganAsalFk")
|
||||
@NotNull(message = "Ruangan Asal Harus Diisi")
|
||||
@Caption(value = "Ruangan Asal")
|
||||
private RuanganVO ruanganAsal;
|
||||
|
||||
public RuanganVO getRuanganAsal() {
|
||||
return ruanganAsal;
|
||||
}
|
||||
|
||||
public void setRuanganAsal(RuanganVO ruanganAsal) {
|
||||
this.ruanganAsal = ruanganAsal;
|
||||
}
|
||||
|
||||
@Column(name = "RuanganAsalFk", insertable = false, updatable = false)
|
||||
private String ruanganAsalId;
|
||||
|
||||
// add by Arya 2017-02-09
|
||||
@OneToMany(cascade = CascadeType.ALL, fetch = FetchType.LAZY, mappedBy = "dokumenRekamMedis")
|
||||
private Set<MappingKirimDokumenPasienVO> mapKirimDokumenPasien = new HashSet<MappingKirimDokumenPasienVO>();
|
||||
// end add by Arya 2017-02-09
|
||||
|
||||
public Set<MappingKirimDokumenPasienVO> getMapKirimDokumenPasien() {
|
||||
return mapKirimDokumenPasien;
|
||||
}
|
||||
|
||||
public void setMapKirimDokumenPasien(Set<MappingKirimDokumenPasienVO> mapKirimDokumenPasien) {
|
||||
this.mapKirimDokumenPasien = mapKirimDokumenPasien;
|
||||
}
|
||||
|
||||
public String getNoRecPasienDaftar() {
|
||||
return noRecPasienDaftar;
|
||||
}
|
||||
|
||||
public void setNoRecPasienDaftar(String noRecPasienDaftar) {
|
||||
this.noRecPasienDaftar = noRecPasienDaftar;
|
||||
}
|
||||
private Set<MappingKirimDokumenPasienVO> mapKirimDokumenPasien = new HashSet<>();
|
||||
|
||||
}
|
||||
@ -1,99 +1,42 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* class Dokumen
|
||||
*
|
||||
* @author Lukman Hakim
|
||||
*/
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class DokumenTemplateVO extends BaseMasterVO {
|
||||
|
||||
private String deskripsiDokumen;
|
||||
private Integer kdDokumen;
|
||||
|
||||
private Integer kdDokumen;
|
||||
|
||||
private JenisDokumenVO jenisDokumen;
|
||||
|
||||
private Integer jenisDokumenId;
|
||||
|
||||
private KategoryDokumenVO kategoryDokumen;
|
||||
|
||||
private Integer kategoryDokumenId;
|
||||
|
||||
protected Integer id;
|
||||
|
||||
private String fileLocation;
|
||||
|
||||
private String fileName;
|
||||
|
||||
private String bodyFile;
|
||||
|
||||
private Date tanggal;
|
||||
|
||||
private Integer idDokumenTemplate;
|
||||
public String getDeskripsiDokumen() {
|
||||
return deskripsiDokumen;
|
||||
}
|
||||
public void setDeskripsiDokumen(String deskripsiDokumen) {
|
||||
this.deskripsiDokumen = deskripsiDokumen;
|
||||
}
|
||||
public Integer getKdDokumen() {
|
||||
return kdDokumen;
|
||||
}
|
||||
public void setKdDokumen(Integer kdDokumen) {
|
||||
this.kdDokumen = kdDokumen;
|
||||
}
|
||||
public JenisDokumenVO getJenisDokumen() {
|
||||
return jenisDokumen;
|
||||
}
|
||||
public void setJenisDokumen(JenisDokumenVO jenisDokumen) {
|
||||
this.jenisDokumen = jenisDokumen;
|
||||
}
|
||||
public Integer getJenisDokumenId() {
|
||||
return jenisDokumenId;
|
||||
}
|
||||
public void setJenisDokumenId(Integer jenisDokumenId) {
|
||||
this.jenisDokumenId = jenisDokumenId;
|
||||
}
|
||||
public KategoryDokumenVO getKategoryDokumen() {
|
||||
return kategoryDokumen;
|
||||
}
|
||||
public void setKategoryDokumen(KategoryDokumenVO kategoryDokumen) {
|
||||
this.kategoryDokumen = kategoryDokumen;
|
||||
}
|
||||
public Integer getKategoryDokumenId() {
|
||||
return kategoryDokumenId;
|
||||
}
|
||||
public void setKategoryDokumenId(Integer kategoryDokumenId) {
|
||||
this.kategoryDokumenId = kategoryDokumenId;
|
||||
}
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
public String getFileLocation() {
|
||||
return fileLocation;
|
||||
}
|
||||
public void setFileLocation(String fileLocation) {
|
||||
this.fileLocation = fileLocation;
|
||||
}
|
||||
public String getFileName() {
|
||||
return fileName;
|
||||
}
|
||||
public void setFileName(String fileName) {
|
||||
this.fileName = fileName;
|
||||
}
|
||||
public String getBodyFile() {
|
||||
return bodyFile;
|
||||
}
|
||||
public void setBodyFile(String bodyFile) {
|
||||
this.bodyFile = bodyFile;
|
||||
}
|
||||
public Date getTanggal() {
|
||||
return tanggal;
|
||||
}
|
||||
public void setTanggal(Date tanggal) {
|
||||
this.tanggal = tanggal;
|
||||
}
|
||||
public Integer getIdDokumenTemplate() {
|
||||
return idDokumenTemplate;
|
||||
}
|
||||
public void setIdDokumenTemplate(Integer idDokumenTemplate) {
|
||||
this.idDokumenTemplate = idDokumenTemplate;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -1,275 +1,80 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
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;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* class Dokumen
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
// @Entity //@Audited
|
||||
// @Table(name = "Dokumen_M")
|
||||
@Getter
|
||||
@Setter
|
||||
public class DokumenVO extends BaseMasterVO {
|
||||
|
||||
@Caption(value = "Deskripsi Dokumen")
|
||||
private String deskripsiDokumen;
|
||||
|
||||
public void setDeskripsiDokumen(String deskripsiDokumen) {
|
||||
this.deskripsiDokumen = deskripsiDokumen;
|
||||
}
|
||||
|
||||
public String getDeskripsiDokumen() {
|
||||
return this.deskripsiDokumen;
|
||||
}
|
||||
|
||||
@Caption(value = "Is Dokumen In Out Int")
|
||||
private Byte isDokumenInOutInt;
|
||||
|
||||
public void setIsDokumenInOutInt(Byte isDokumenInOutInt) {
|
||||
this.isDokumenInOutInt = isDokumenInOutInt;
|
||||
}
|
||||
|
||||
public Byte getIsDokumenInOutInt() {
|
||||
return this.isDokumenInOutInt;
|
||||
}
|
||||
|
||||
@Caption(value = "Kode Dokumen")
|
||||
private Integer kdDokumen;
|
||||
|
||||
public void setKdDokumen(Integer kdDokumen) {
|
||||
this.kdDokumen = kdDokumen;
|
||||
}
|
||||
|
||||
public Integer getKdDokumen() {
|
||||
return this.kdDokumen;
|
||||
}
|
||||
|
||||
@Caption(value = "Object Dokumen Head")
|
||||
private DokumenVO dokumenHead;
|
||||
|
||||
public void setDokumenHead(DokumenVO dokumenHead) {
|
||||
this.dokumenHead = dokumenHead;
|
||||
}
|
||||
|
||||
public DokumenVO getDokumenHead() {
|
||||
return this.dokumenHead;
|
||||
}
|
||||
|
||||
@Caption(value = "Object Jenis Dokumen")
|
||||
private JenisDokumenVO jenisDokumen;
|
||||
|
||||
public void setJenisDokumen(JenisDokumenVO jenisDokumen) {
|
||||
this.jenisDokumen = jenisDokumen;
|
||||
}
|
||||
|
||||
public JenisDokumenVO getJenisDokumen() {
|
||||
return this.jenisDokumen;
|
||||
}
|
||||
|
||||
@Caption(value = "Object Kategory Dokumen")
|
||||
private KategoryDokumenVO kategoryDokumen;
|
||||
|
||||
public void setKategoryDokumen(KategoryDokumenVO kategoryDokumen) {
|
||||
this.kategoryDokumen = kategoryDokumen;
|
||||
}
|
||||
|
||||
public KategoryDokumenVO getKategoryDokumen() {
|
||||
return this.kategoryDokumen;
|
||||
}
|
||||
|
||||
|
||||
@Caption(value = "Object Lokasi")
|
||||
private LokasiVO lokasi;
|
||||
|
||||
public void setLokasi(LokasiVO lokasi) {
|
||||
this.lokasi = lokasi;
|
||||
}
|
||||
|
||||
public LokasiVO getLokasi() {
|
||||
return this.lokasi;
|
||||
}
|
||||
|
||||
@Caption(value = "Object Pegawai Pembuat")
|
||||
@Caption(value = "Object Pegawai Pembuat")
|
||||
private PegawaiVO pegawaiPembuat;
|
||||
|
||||
public void setPegawaiPembuat(PegawaiVO pegawaiPembuat) {
|
||||
this.pegawaiPembuat = pegawaiPembuat;
|
||||
}
|
||||
|
||||
public PegawaiVO getPegawaiPembuat() {
|
||||
return this.pegawaiPembuat;
|
||||
}
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectRuanganFk")
|
||||
// @NotNull(message="Kd Ruangan tidak boleh kosong")
|
||||
|
||||
@Caption(value = "Object Ruangan")
|
||||
private RuanganVO ruangan;
|
||||
|
||||
public void setRuangan(RuanganVO ruangan) {
|
||||
this.ruangan = ruangan;
|
||||
}
|
||||
|
||||
public RuanganVO getRuangan() {
|
||||
return this.ruangan;
|
||||
}
|
||||
|
||||
@NotNull(message = "Nama Judul Dokumen tidak boleh kosong")
|
||||
@Column(name = "NamaJudulDokumen", nullable = false, length = 150)
|
||||
@Caption(value = "Nama Judul Dokumen")
|
||||
private String namaJudulDokumen;
|
||||
|
||||
public void setNamaJudulDokumen(String namaJudulDokumen) {
|
||||
this.namaJudulDokumen = namaJudulDokumen;
|
||||
}
|
||||
|
||||
public String getNamaJudulDokumen() {
|
||||
return this.namaJudulDokumen;
|
||||
}
|
||||
|
||||
@Column(name = "NoDokumen", nullable = true, length = 30)
|
||||
@Caption(value = "No Dokumen")
|
||||
private String noDokumen;
|
||||
|
||||
public void setNoDokumen(String noDokumen) {
|
||||
this.noDokumen = noDokumen;
|
||||
}
|
||||
|
||||
public String getNoDokumen() {
|
||||
return this.noDokumen;
|
||||
}
|
||||
|
||||
@Column(name = "PathFile", nullable = true, length = 300)
|
||||
@Caption(value = "Path File")
|
||||
private String pathFile;
|
||||
|
||||
public void setPathFile(String pathFile) {
|
||||
this.pathFile = pathFile;
|
||||
}
|
||||
|
||||
public String getPathFile() {
|
||||
return this.pathFile;
|
||||
}
|
||||
|
||||
@Caption(value = "Pegawai Pembuat")
|
||||
private String namaPegawaiPembuat;
|
||||
|
||||
@Column(name = "PegawaiPembuat", nullable = true, length = 160)
|
||||
public String getNamaPegawaiPembuat() {
|
||||
return namaPegawaiPembuat;
|
||||
}
|
||||
|
||||
public void setNamaPegawaiPembuat(String namaPegawaiPembuat) {
|
||||
this.namaPegawaiPembuat = namaPegawaiPembuat;
|
||||
}
|
||||
|
||||
@NotNull(message = "QDokumen tidak boleh kosong")
|
||||
@Column(name = "QDokumen", nullable = false)
|
||||
@Caption(value = "QDokumen")
|
||||
private Integer qDokumen;
|
||||
|
||||
public void setqDokumen(Integer qDokumen) {
|
||||
this.qDokumen = qDokumen;
|
||||
}
|
||||
|
||||
public Integer getqDokumen() {
|
||||
return this.qDokumen;
|
||||
}
|
||||
|
||||
@Column(name = "QtyLampiran", nullable = true)
|
||||
@Caption(value = "Qty Lampiran")
|
||||
private short qtyLampiran;
|
||||
|
||||
public short getQtyLampiran() {
|
||||
return qtyLampiran;
|
||||
}
|
||||
|
||||
public void setQtyLampiran(short qtyLampiran) {
|
||||
this.qtyLampiran = qtyLampiran;
|
||||
}
|
||||
|
||||
@Column(name = "TglDokumen", nullable = true)
|
||||
@Caption(value = "Tanggal Dokumen")
|
||||
private Date tglDokumen;
|
||||
|
||||
public void setTglDokumen(Date tglDokumen) {
|
||||
this.tglDokumen = tglDokumen;
|
||||
}
|
||||
|
||||
public Date getTglDokumen() {
|
||||
return this.tglDokumen;
|
||||
}
|
||||
|
||||
/*
|
||||
* //
|
||||
*
|
||||
* @OneToMany(fetch=FetchType.LAZY, cascade = CascadeType.ALL,
|
||||
* mappedBy="kddokumenhead") private Set<Dokumen> DokumenSet = new
|
||||
* HashSet<Dokumen>();
|
||||
*
|
||||
* public Set<Dokumen> getDokumenSet() { return DokumenSet; }
|
||||
*
|
||||
* public void setDokumenSet(Set<Dokumen> dokumenSet) { DokumenSet =
|
||||
* dokumenSet; }
|
||||
*/
|
||||
|
||||
private SuratVO surat;
|
||||
|
||||
public SuratVO getSurat() {
|
||||
return surat;
|
||||
}
|
||||
|
||||
public void setSurat(SuratVO surat) {
|
||||
this.surat = surat;
|
||||
}
|
||||
|
||||
// add by Arya 2017-02-16
|
||||
private SatuanWaktuVO satuanWaktu;
|
||||
|
||||
private Integer jangkaWaktu;
|
||||
|
||||
private String status;
|
||||
|
||||
public String isVerifikasi;
|
||||
|
||||
public String getIsVerifikasi() {
|
||||
return isVerifikasi;
|
||||
}
|
||||
|
||||
public void setIsVerifikasi(String isVerifikasi) {
|
||||
this.isVerifikasi = isVerifikasi;
|
||||
}
|
||||
|
||||
public SatuanWaktuVO getSatuanWaktu() {
|
||||
return satuanWaktu;
|
||||
}
|
||||
|
||||
public void setSatuanWaktu(SatuanWaktuVO satuanWaktu) {
|
||||
this.satuanWaktu = satuanWaktu;
|
||||
}
|
||||
|
||||
public Integer getJangkaWaktu() {
|
||||
return jangkaWaktu;
|
||||
}
|
||||
|
||||
public void setJangkaWaktu(Integer jangkaWaktu) {
|
||||
this.jangkaWaktu = jangkaWaktu;
|
||||
}
|
||||
|
||||
public String getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(String status) {
|
||||
this.status = status;
|
||||
}
|
||||
private String isVerifikasi;
|
||||
|
||||
}
|
||||
|
||||
@ -1,7 +1,11 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class DokumenVerifikasiVO extends BaseTransactionVO {
|
||||
|
||||
private StrukOrderVO noOrder;
|
||||
@ -20,68 +24,4 @@ public class DokumenVerifikasiVO extends BaseTransactionVO {
|
||||
|
||||
private StrukVerifikasiVO noVerifikasi;
|
||||
|
||||
public StrukOrderVO getNoOrder() {
|
||||
return noOrder;
|
||||
}
|
||||
|
||||
public void setNoOrder(StrukOrderVO noOrder) {
|
||||
this.noOrder = noOrder;
|
||||
}
|
||||
|
||||
public StrukOrderVO getNoOrderBefore() {
|
||||
return noOrderBefore;
|
||||
}
|
||||
|
||||
public void setNoOrderBefore(StrukOrderVO noOrderBefore) {
|
||||
this.noOrderBefore = noOrderBefore;
|
||||
}
|
||||
|
||||
public PegawaiVO getKdPegawaiTujuan() {
|
||||
return kdPegawaiTujuan;
|
||||
}
|
||||
|
||||
public void setKdPegawaiTujuan(PegawaiVO kdPegawaiTujuan) {
|
||||
this.kdPegawaiTujuan = kdPegawaiTujuan;
|
||||
}
|
||||
|
||||
public StrukPelayananVO getNoStruk_Tint() {
|
||||
return noStruk_Tint;
|
||||
}
|
||||
|
||||
public void setNoStruk_Tint(StrukPelayananVO noStruk_Tint) {
|
||||
this.noStruk_Tint = noStruk_Tint;
|
||||
}
|
||||
|
||||
public StrukPelayananVO getNoStruk_Tint_Return() {
|
||||
return NoStruk_Tint_Return;
|
||||
}
|
||||
|
||||
public void setNoStruk_Tint_Return(StrukPelayananVO noStruk_Tint_Return) {
|
||||
NoStruk_Tint_Return = noStruk_Tint_Return;
|
||||
}
|
||||
|
||||
public StrukKirimVO getNoKirim_Return() {
|
||||
return noKirim_Return;
|
||||
}
|
||||
|
||||
public void setNoKirim_Return(StrukKirimVO noKirim_Return) {
|
||||
this.noKirim_Return = noKirim_Return;
|
||||
}
|
||||
|
||||
public DokumenVO getKdDokumen() {
|
||||
return kdDokumen;
|
||||
}
|
||||
|
||||
public void setKdDokumen(DokumenVO kdDokumen) {
|
||||
this.kdDokumen = kdDokumen;
|
||||
}
|
||||
|
||||
public StrukVerifikasiVO getNoVerifikasi() {
|
||||
return noVerifikasi;
|
||||
}
|
||||
|
||||
public void setNoVerifikasi(StrukVerifikasiVO noVerifikasi) {
|
||||
this.noVerifikasi = noVerifikasi;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -15,6 +15,7 @@ import java.util.Date;
|
||||
@Getter
|
||||
@Setter
|
||||
public class DpjpPasienVO extends BaseTransactionVO {
|
||||
|
||||
@Caption(value = "Dokter")
|
||||
private PegawaiVO dokter;
|
||||
|
||||
@ -26,4 +27,5 @@ public class DpjpPasienVO extends BaseTransactionVO {
|
||||
|
||||
@Caption(value = "Tanggal Akhir")
|
||||
private Date tanggalAkhir;
|
||||
|
||||
}
|
||||
|
||||
@ -1,143 +1,46 @@
|
||||
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;
|
||||
import java.util.Date;
|
||||
import java.util.Set;
|
||||
|
||||
import javax.persistence.CascadeType;
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.FetchType;
|
||||
import javax.persistence.JoinColumn;
|
||||
import javax.persistence.ManyToOne;
|
||||
import javax.persistence.OneToMany;
|
||||
import javax.validation.constraints.NotNull;
|
||||
@Getter
|
||||
@Setter
|
||||
public class DraftPeraturanVO extends BaseMasterVO {
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonManagedReference;
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
|
||||
public class DraftPeraturanVO extends BaseMasterVO{
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectUserFk")
|
||||
@NotNull(message="User tidak boleh kosong")
|
||||
@Caption(value="User")
|
||||
@NotNull(message = "User tidak boleh kosong")
|
||||
@Caption(value = "User")
|
||||
private PegawaiVO user;
|
||||
|
||||
@Column(name = "ObjectUserFk", insertable=false,updatable=false,nullable=false)
|
||||
|
||||
private Integer userId;
|
||||
|
||||
@Column(name="noPeraturan")
|
||||
@Caption(value="No Peraturan")
|
||||
@Caption(value = "No Peraturan")
|
||||
private String noPeraturan;
|
||||
|
||||
@Column(name="namaPeraturan", nullable =true)
|
||||
@Caption(value="Nama Peraturan")
|
||||
|
||||
@Caption(value = "Nama Peraturan")
|
||||
private String namaPeraturan;
|
||||
|
||||
@Column(name="tglPeraturan")
|
||||
@Caption(value="Tanggal Peraturan")
|
||||
|
||||
@Caption(value = "Tanggal Peraturan")
|
||||
private Date tglPeraturan;
|
||||
|
||||
@Column(name="draftPeraturan")
|
||||
@Caption(value="Draft Peraturan")
|
||||
|
||||
@Caption(value = "Draft Peraturan")
|
||||
private String draftPeraturan;
|
||||
|
||||
@Column(name="tglPengesahan")
|
||||
@Caption(value="Tanggal Pengesahan")
|
||||
|
||||
@Caption(value = "Tanggal Pengesahan")
|
||||
private Date tglPengesahan;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectPenanggungJawabFk")
|
||||
@NotNull(message="Penanggung Jawab tidak boleh kosong")
|
||||
@Caption(value="Penanggung Jawab")
|
||||
|
||||
@NotNull(message = "Penanggung Jawab tidak boleh kosong")
|
||||
@Caption(value = "Penanggung Jawab")
|
||||
private PegawaiVO penanggungJawab;
|
||||
|
||||
@Column(name = "ObjectPenanggungJawabFk", insertable=false,updatable=false,nullable=false)
|
||||
|
||||
private Integer penanggungJawabId;
|
||||
|
||||
@OneToMany(cascade=CascadeType.ALL,fetch = FetchType.LAZY, mappedBy = "draftPeraturan")
|
||||
|
||||
@Caption(value = "detailDraftSet")
|
||||
private Set<DetailDraftPeraturanVO> detailDraftSet;
|
||||
|
||||
public PegawaiVO getUser() {
|
||||
return user;
|
||||
}
|
||||
|
||||
public void setUser(PegawaiVO user) {
|
||||
this.user = user;
|
||||
}
|
||||
|
||||
public Integer getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(Integer userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public String getNoPeraturan() {
|
||||
return noPeraturan;
|
||||
}
|
||||
|
||||
public void setNoPeraturan(String noPeraturan) {
|
||||
this.noPeraturan = noPeraturan;
|
||||
}
|
||||
|
||||
public String getNamaPeraturan() {
|
||||
return namaPeraturan;
|
||||
}
|
||||
|
||||
public void setNamaPeraturan(String namaPeraturan) {
|
||||
this.namaPeraturan = namaPeraturan;
|
||||
}
|
||||
|
||||
public Date getTglPeraturan() {
|
||||
return tglPeraturan;
|
||||
}
|
||||
|
||||
public void setTglPeraturan(Date tglPeraturan) {
|
||||
this.tglPeraturan = tglPeraturan;
|
||||
}
|
||||
|
||||
public String getDraftPeraturan() {
|
||||
return draftPeraturan;
|
||||
}
|
||||
|
||||
public void setDraftPeraturan(String draftPeraturan) {
|
||||
this.draftPeraturan = draftPeraturan;
|
||||
}
|
||||
|
||||
public Date getTglPengesahan() {
|
||||
return tglPengesahan;
|
||||
}
|
||||
|
||||
public void setTglPengesahan(Date tglPengesahan) {
|
||||
this.tglPengesahan = tglPengesahan;
|
||||
}
|
||||
|
||||
public PegawaiVO getPenanggungJawab() {
|
||||
return penanggungJawab;
|
||||
}
|
||||
|
||||
public void setPenanggungJawab(PegawaiVO penanggungJawab) {
|
||||
this.penanggungJawab = penanggungJawab;
|
||||
}
|
||||
|
||||
public Integer getPenanggungJawabId() {
|
||||
return penanggungJawabId;
|
||||
}
|
||||
|
||||
public void setPenanggungJawabId(Integer penanggungJawabId) {
|
||||
this.penanggungJawabId = penanggungJawabId;
|
||||
}
|
||||
|
||||
public Set<DetailDraftPeraturanVO> getDetailDraftSet() {
|
||||
return detailDraftSet;
|
||||
}
|
||||
|
||||
public void setDetailDraftSet(Set<DetailDraftPeraturanVO> detailDraftSet) {
|
||||
this.detailDraftSet = detailDraftSet;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -1,76 +1,24 @@
|
||||
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 com.fasterxml.jackson.annotation.JsonBackReference;
|
||||
import com.jasamedika.medifirst2000.base.BaseTransaction;
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class DraftSuratRuanganVO extends BaseTransactionVO {
|
||||
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectRuanganFk")
|
||||
@Caption(value="ruangan")
|
||||
|
||||
@Caption(value = "ruangan")
|
||||
private RuanganVO ruangan;
|
||||
|
||||
@Column(name = "ObjectRuanganFk", insertable=false,updatable=false, nullable = true)
|
||||
|
||||
private Integer ruanganId;
|
||||
|
||||
@Column(name = "isVerifikasi")
|
||||
|
||||
public Boolean isVerifikasi;
|
||||
|
||||
@Column(name = "fileName", nullable = true)
|
||||
@Caption(value="fileName")
|
||||
|
||||
@Caption(value = "fileName")
|
||||
private String fileName;
|
||||
|
||||
@Column(name = "status")
|
||||
|
||||
public Boolean status;
|
||||
|
||||
public RuanganVO getRuangan() {
|
||||
return ruangan;
|
||||
}
|
||||
|
||||
public void setRuangan(RuanganVO ruangan) {
|
||||
this.ruangan = ruangan;
|
||||
}
|
||||
|
||||
public Integer getRuanganId() {
|
||||
return ruanganId;
|
||||
}
|
||||
|
||||
public void setRuanganId(Integer ruanganId) {
|
||||
this.ruanganId = ruanganId;
|
||||
}
|
||||
|
||||
public Boolean getIsVerifikasi() {
|
||||
return isVerifikasi;
|
||||
}
|
||||
|
||||
public void setIsVerifikasi(Boolean isVerifikasi) {
|
||||
this.isVerifikasi = isVerifikasi;
|
||||
}
|
||||
|
||||
public String getFileName() {
|
||||
return fileName;
|
||||
}
|
||||
|
||||
public void setFileName(String fileName) {
|
||||
this.fileName = fileName;
|
||||
}
|
||||
|
||||
public Boolean getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(Boolean status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -1,152 +1,49 @@
|
||||
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 javax.validation.constraints.NotNull;
|
||||
import java.util.Date;
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.JoinColumn;
|
||||
import javax.persistence.ManyToOne;
|
||||
import javax.persistence.OneToMany;
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class DraftSuratVO extends BaseTransactionVO {
|
||||
|
||||
@Column(name = "NoSurat", nullable = true , length = 100)
|
||||
@Caption(value="noSurat")
|
||||
|
||||
@Caption(value = "noSurat")
|
||||
private String noSurat;
|
||||
|
||||
@Column(name = "Judul", nullable = true , length = 100)
|
||||
@Caption(value="judul")
|
||||
|
||||
@Caption(value = "judul")
|
||||
private String judul;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectJenisSuratFk")
|
||||
@Caption(value="JenisSurat")
|
||||
|
||||
@Caption(value = "JenisSurat")
|
||||
private JenisSuratVO jenisSurat;
|
||||
|
||||
@Column(name = "IsiSurat", nullable = true)
|
||||
@Caption(value="isiSurat")
|
||||
@Caption(value = "isiSurat")
|
||||
private String isiSurat;
|
||||
|
||||
@OneToMany
|
||||
private Set<DraftSuratRuanganVO> draftSuratRuangan=new HashSet<DraftSuratRuanganVO>();
|
||||
|
||||
@Column(name = "Keterangan", nullable = true)
|
||||
@Caption(value="Keterangan")
|
||||
|
||||
private Set<DraftSuratRuanganVO> draftSuratRuangan = new HashSet<>();
|
||||
|
||||
@Caption(value = "Keterangan")
|
||||
private String keterangan;
|
||||
|
||||
@Column(name = "tanggal", nullable = true )
|
||||
@Caption(value="Tanggal")
|
||||
|
||||
@Caption(value = "Tanggal")
|
||||
private Date tanggal;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "SuratFk")
|
||||
@NotNull(message="Object Dokumen Harus Diisi")
|
||||
@Caption(value="Object Dokumen")
|
||||
|
||||
@NotNull(message = "Object Dokumen Harus Diisi")
|
||||
@Caption(value = "Object Dokumen")
|
||||
private SuratVO surat;
|
||||
|
||||
@Column(name = "verbalKonsep", nullable = true)
|
||||
@Caption(value="verbal Konsep")
|
||||
|
||||
@Caption(value = "verbal Konsep")
|
||||
private String verbalKonsep;
|
||||
|
||||
@Column(name = "lembarCatatan", nullable = true)
|
||||
@Caption(value="Lembar Catatan")
|
||||
|
||||
@Caption(value = "Lembar Catatan")
|
||||
private String lembarCatatan;
|
||||
|
||||
|
||||
private String fileName;
|
||||
|
||||
public String getKeterangan() {
|
||||
return keterangan;
|
||||
}
|
||||
|
||||
public void setKeterangan(String keterangan) {
|
||||
this.keterangan = keterangan;
|
||||
}
|
||||
|
||||
public String getNoSurat() {
|
||||
return noSurat;
|
||||
}
|
||||
|
||||
public void setNoSurat(String noSurat) {
|
||||
this.noSurat = noSurat;
|
||||
}
|
||||
|
||||
public String getJudul() {
|
||||
return judul;
|
||||
}
|
||||
|
||||
public void setJudul(String judul) {
|
||||
this.judul = judul;
|
||||
}
|
||||
|
||||
public JenisSuratVO getJenisSurat() {
|
||||
return jenisSurat;
|
||||
}
|
||||
|
||||
public void setJenisSurat(JenisSuratVO jenisSurat) {
|
||||
this.jenisSurat = jenisSurat;
|
||||
}
|
||||
|
||||
public String getIsiSurat() {
|
||||
return isiSurat;
|
||||
}
|
||||
|
||||
public void setIsiSurat(String isiSurat) {
|
||||
this.isiSurat = isiSurat;
|
||||
}
|
||||
|
||||
|
||||
public String getFileName() {
|
||||
return fileName;
|
||||
}
|
||||
|
||||
public void setFileName(String fileName) {
|
||||
this.fileName = fileName;
|
||||
}
|
||||
|
||||
public Date getTanggal() {
|
||||
return tanggal;
|
||||
}
|
||||
|
||||
public void setTanggal(Date tanggal) {
|
||||
this.tanggal = tanggal;
|
||||
}
|
||||
|
||||
public SuratVO getSurat() {
|
||||
return surat;
|
||||
}
|
||||
|
||||
public void setSurat(SuratVO surat) {
|
||||
this.surat = surat;
|
||||
}
|
||||
|
||||
public String getVerbalKonsep() {
|
||||
return verbalKonsep;
|
||||
}
|
||||
|
||||
public void setVerbalKonsep(String verbalKonsep) {
|
||||
this.verbalKonsep = verbalKonsep;
|
||||
}
|
||||
|
||||
public String getLembarCatatan() {
|
||||
return lembarCatatan;
|
||||
}
|
||||
|
||||
public void setLembarCatatan(String lembarCatatan) {
|
||||
this.lembarCatatan = lembarCatatan;
|
||||
}
|
||||
|
||||
public Set<DraftSuratRuanganVO> getDraftSuratRuangan() {
|
||||
return draftSuratRuangan;
|
||||
}
|
||||
|
||||
public void setDraftSuratRuangan(Set<DraftSuratRuanganVO> draftSuratRuangan) {
|
||||
this.draftSuratRuangan = draftSuratRuangan;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -1,47 +1,20 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class EdukasiVO extends MedicalRecordTransactionVO {
|
||||
|
||||
|
||||
private Date tanggalInput;
|
||||
|
||||
|
||||
private PegawaiVO petugas;
|
||||
|
||||
|
||||
private RuanganVO ruangan;
|
||||
|
||||
|
||||
private String edukasi;
|
||||
|
||||
public Date getTanggalInput() {
|
||||
return tanggalInput;
|
||||
}
|
||||
|
||||
public void setTanggalInput(Date tanggalInput) {
|
||||
this.tanggalInput = tanggalInput;
|
||||
}
|
||||
|
||||
public PegawaiVO getPetugas() {
|
||||
return petugas;
|
||||
}
|
||||
|
||||
public void setPetugas(PegawaiVO petugas) {
|
||||
this.petugas = petugas;
|
||||
}
|
||||
|
||||
public RuanganVO getRuangan() {
|
||||
return ruangan;
|
||||
}
|
||||
|
||||
public void setRuangan(RuanganVO ruangan) {
|
||||
this.ruangan = ruangan;
|
||||
}
|
||||
|
||||
public String getEdukasi() {
|
||||
return edukasi;
|
||||
}
|
||||
|
||||
public void setEdukasi(String edukasi) {
|
||||
this.edukasi = edukasi;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -1,76 +1,27 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import javax.persistence.Column;
|
||||
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 EkstensionNoTeleponVO extends BaseMasterVO{
|
||||
|
||||
@Column(name = "CounterNumber", nullable = true , length = 200)
|
||||
@Caption(value="Counter Number")
|
||||
@Getter
|
||||
@Setter
|
||||
public class EkstensionNoTeleponVO extends BaseMasterVO {
|
||||
|
||||
@Caption(value = "Counter Number")
|
||||
private Integer counterNumber;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectRuanganFk")
|
||||
@Caption(value="Ruangan")
|
||||
|
||||
@Caption(value = "Ruangan")
|
||||
private RuanganVO ruangan;
|
||||
|
||||
@Column(name = "NoEkstension", nullable = true , length = 200)
|
||||
@Caption(value="No Ekstension")
|
||||
@Caption(value = "No Ekstension")
|
||||
private String noEkstension;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectStatusSemuaRuanganFk")
|
||||
@Caption(value="statusSemuaRuangan")
|
||||
|
||||
@Caption(value = "statusSemuaRuangan")
|
||||
private StatusYaTidakVO statusSemuaRuangan;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectStatusPelangganFk")
|
||||
@Caption(value="statusPelanggan")
|
||||
|
||||
@Caption(value = "statusPelanggan")
|
||||
private StatusYaTidakVO statusPelanggan;
|
||||
|
||||
public Integer getCounterNumber() {
|
||||
return counterNumber;
|
||||
}
|
||||
|
||||
public void setCounterNumber(Integer counterNumber) {
|
||||
this.counterNumber = counterNumber;
|
||||
}
|
||||
|
||||
public RuanganVO getRuangan() {
|
||||
return ruangan;
|
||||
}
|
||||
|
||||
public void setRuangan(RuanganVO ruangan) {
|
||||
this.ruangan = ruangan;
|
||||
}
|
||||
|
||||
public String getNoEkstension() {
|
||||
return noEkstension;
|
||||
}
|
||||
|
||||
public void setNoEkstension(String noEkstension) {
|
||||
this.noEkstension = noEkstension;
|
||||
}
|
||||
|
||||
public StatusYaTidakVO getStatusSemuaRuangan() {
|
||||
return statusSemuaRuangan;
|
||||
}
|
||||
|
||||
public void setStatusSemuaRuangan(StatusYaTidakVO statusSemuaRuangan) {
|
||||
this.statusSemuaRuangan = statusSemuaRuangan;
|
||||
}
|
||||
|
||||
public StatusYaTidakVO getStatusPelanggan() {
|
||||
return statusPelanggan;
|
||||
}
|
||||
|
||||
public void setStatusPelanggan(StatusYaTidakVO statusPelanggan) {
|
||||
this.statusPelanggan = statusPelanggan;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -1,36 +1,18 @@
|
||||
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;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class EmbrioVO extends BaseMasterVO {
|
||||
|
||||
@Column(name = "Jumlah", nullable = false )
|
||||
@Caption(value="Jumlah")
|
||||
|
||||
@Caption(value = "Jumlah")
|
||||
private Integer jumlah;
|
||||
|
||||
@Column(name = "Kualitas", nullable = false)
|
||||
@Caption(value="Kualitas")
|
||||
|
||||
@Caption(value = "Kualitas")
|
||||
private String kualitas;
|
||||
|
||||
public Integer getJumlah() {
|
||||
return jumlah;
|
||||
}
|
||||
|
||||
public void setJumlah(Integer jumlah) {
|
||||
this.jumlah = jumlah;
|
||||
}
|
||||
|
||||
public String getKualitas() {
|
||||
return kualitas;
|
||||
}
|
||||
|
||||
public void setKualitas(String kualitas) {
|
||||
this.kualitas = kualitas;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -1,61 +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 Eselon
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
//@Entity
|
||||
//@Table(name = "Eselon_M")
|
||||
@Getter
|
||||
@Setter
|
||||
public class EselonVO extends BaseMasterVO {
|
||||
|
||||
@Caption(value = "Eselon")
|
||||
private String eselon;
|
||||
|
||||
public void setEselon(String eselon) {
|
||||
this.eselon = eselon;
|
||||
}
|
||||
|
||||
@Column(name = "Eselon", nullable = false, length = 20)
|
||||
public String getEselon() {
|
||||
return this.eselon;
|
||||
}
|
||||
|
||||
@Caption(value = "Kode Eselon")
|
||||
private Byte kdEselon;
|
||||
|
||||
public void setKdEselon(Byte kdEselon) {
|
||||
this.kdEselon = kdEselon;
|
||||
}
|
||||
|
||||
@Column(name = "KdEselon", nullable = false)
|
||||
public Byte getKdEselon() {
|
||||
return this.kdEselon;
|
||||
}
|
||||
|
||||
@Caption(value = "QEselon")
|
||||
private Byte qEselon;
|
||||
|
||||
public void setqEselon(Byte qEselon) {
|
||||
this.qEselon = qEselon;
|
||||
}
|
||||
|
||||
@Column(name = "QEselon", nullable = false)
|
||||
public Byte getqEselon() {
|
||||
return this.qEselon;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -1,15 +1,19 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
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 EvaluasiJabatanVOVO
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
public class EvaluasiJabatanVO extends BaseTransactionVO {
|
||||
|
||||
@Caption(value = "RuanganFk")
|
||||
@ -154,420 +158,4 @@ public class EvaluasiJabatanVO extends BaseTransactionVO {
|
||||
@Caption(value = "Object Jabatan")
|
||||
private JabatanVO jabatan;
|
||||
|
||||
public RuanganVO getRuangan() {
|
||||
return ruangan;
|
||||
}
|
||||
|
||||
public void setRuangan(RuanganVO ruangan) {
|
||||
this.ruangan = ruangan;
|
||||
}
|
||||
|
||||
public PegawaiVO getPegawai() {
|
||||
return pegawai;
|
||||
}
|
||||
|
||||
public void setPegawai(PegawaiVO pegawai) {
|
||||
this.pegawai = pegawai;
|
||||
}
|
||||
|
||||
public Integer getPegawaiId() {
|
||||
return pegawaiId;
|
||||
}
|
||||
|
||||
public void setPegawaiId(Integer pegawaiId) {
|
||||
this.pegawaiId = pegawaiId;
|
||||
}
|
||||
|
||||
public PegawaiVO getPegawaiEntri() {
|
||||
return pegawaiEntri;
|
||||
}
|
||||
|
||||
public void setPegawaiEntri(PegawaiVO pegawaiEntri) {
|
||||
this.pegawaiEntri = pegawaiEntri;
|
||||
}
|
||||
|
||||
public Integer getIdPegawaiEntri() {
|
||||
return idPegawaiEntri;
|
||||
}
|
||||
|
||||
public void setIdPegawaiEntri(Integer idPegawaiEntri) {
|
||||
this.idPegawaiEntri = idPegawaiEntri;
|
||||
}
|
||||
|
||||
public Integer getTahun() {
|
||||
return tahun;
|
||||
}
|
||||
|
||||
public void setTahun(Integer tahun) {
|
||||
this.tahun = tahun;
|
||||
}
|
||||
|
||||
public FaktorEvaluasiVO getFaktor1() {
|
||||
return faktor1;
|
||||
}
|
||||
|
||||
public void setFaktor1(FaktorEvaluasiVO faktor1) {
|
||||
this.faktor1 = faktor1;
|
||||
}
|
||||
|
||||
public Integer getFaktor1Id() {
|
||||
return faktor1Id;
|
||||
}
|
||||
|
||||
public void setFaktor1Id(Integer faktor1Id) {
|
||||
this.faktor1Id = faktor1Id;
|
||||
}
|
||||
|
||||
public FaktorEvaluasiVO getFaktor2() {
|
||||
return faktor2;
|
||||
}
|
||||
|
||||
public void setFaktor2(FaktorEvaluasiVO faktor2) {
|
||||
this.faktor2 = faktor2;
|
||||
}
|
||||
|
||||
public Integer getFaktor2Id() {
|
||||
return faktor2Id;
|
||||
}
|
||||
|
||||
public void setFaktor2Id(Integer faktor2Id) {
|
||||
this.faktor2Id = faktor2Id;
|
||||
}
|
||||
|
||||
public FaktorEvaluasiVO getFaktor3() {
|
||||
return faktor3;
|
||||
}
|
||||
|
||||
public void setFaktor3(FaktorEvaluasiVO faktor3) {
|
||||
this.faktor3 = faktor3;
|
||||
}
|
||||
|
||||
public Integer getFaktor3Id() {
|
||||
return faktor3Id;
|
||||
}
|
||||
|
||||
public void setFaktor3Id(Integer faktor3Id) {
|
||||
this.faktor3Id = faktor3Id;
|
||||
}
|
||||
|
||||
public FaktorEvaluasiVO getFaktor4() {
|
||||
return faktor4;
|
||||
}
|
||||
|
||||
public void setFaktor4(FaktorEvaluasiVO faktor4) {
|
||||
this.faktor4 = faktor4;
|
||||
}
|
||||
|
||||
public Integer getFaktor4Id() {
|
||||
return faktor4Id;
|
||||
}
|
||||
|
||||
public void setFaktor4Id(Integer faktor4Id) {
|
||||
this.faktor4Id = faktor4Id;
|
||||
}
|
||||
|
||||
public FaktorEvaluasiVO getFaktor5() {
|
||||
return faktor5;
|
||||
}
|
||||
|
||||
public void setFaktor5(FaktorEvaluasiVO faktor5) {
|
||||
this.faktor5 = faktor5;
|
||||
}
|
||||
|
||||
public Integer getFaktor5Id() {
|
||||
return faktor5Id;
|
||||
}
|
||||
|
||||
public void setFaktor5Id(Integer faktor5Id) {
|
||||
this.faktor5Id = faktor5Id;
|
||||
}
|
||||
|
||||
public FaktorEvaluasiVO getFaktor7() {
|
||||
return faktor7;
|
||||
}
|
||||
|
||||
public void setFaktor7(FaktorEvaluasiVO faktor7) {
|
||||
this.faktor7 = faktor7;
|
||||
}
|
||||
|
||||
public Integer getFaktor7Id() {
|
||||
return faktor7Id;
|
||||
}
|
||||
|
||||
public void setFaktor7Id(Integer faktor7Id) {
|
||||
this.faktor7Id = faktor7Id;
|
||||
}
|
||||
|
||||
public FaktorEvaluasiVO getFaktor8() {
|
||||
return faktor8;
|
||||
}
|
||||
|
||||
public void setFaktor8(FaktorEvaluasiVO faktor8) {
|
||||
this.faktor8 = faktor8;
|
||||
}
|
||||
|
||||
public Integer getFaktor8Id() {
|
||||
return faktor8Id;
|
||||
}
|
||||
|
||||
public void setFaktor8Id(Integer faktor8Id) {
|
||||
this.faktor8Id = faktor8Id;
|
||||
}
|
||||
|
||||
public FaktorEvaluasiVO getFaktor9() {
|
||||
return faktor9;
|
||||
}
|
||||
|
||||
public void setFaktor9(FaktorEvaluasiVO faktor9) {
|
||||
this.faktor9 = faktor9;
|
||||
}
|
||||
|
||||
public Integer getFaktor9Id() {
|
||||
return faktor9Id;
|
||||
}
|
||||
|
||||
public void setFaktor9Id(Integer faktor9Id) {
|
||||
this.faktor9Id = faktor9Id;
|
||||
}
|
||||
|
||||
public FaktorEvaluasiVO getFaktor10() {
|
||||
return faktor10;
|
||||
}
|
||||
|
||||
public void setFaktor10(FaktorEvaluasiVO faktor10) {
|
||||
this.faktor10 = faktor10;
|
||||
}
|
||||
|
||||
public Integer getFaktor10Id() {
|
||||
return faktor10Id;
|
||||
}
|
||||
|
||||
public void setFaktor10Id(Integer faktor10Id) {
|
||||
this.faktor10Id = faktor10Id;
|
||||
}
|
||||
|
||||
public FaktorEvaluasiVO getFaktorA() {
|
||||
return faktorA;
|
||||
}
|
||||
|
||||
public void setFaktorA(FaktorEvaluasiVO faktorA) {
|
||||
this.faktorA = faktorA;
|
||||
}
|
||||
|
||||
public Integer getFaktorAId() {
|
||||
return faktorAId;
|
||||
}
|
||||
|
||||
public void setFaktorAId(Integer faktorAId) {
|
||||
this.faktorAId = faktorAId;
|
||||
}
|
||||
|
||||
public FaktorEvaluasiVO getFaktorB() {
|
||||
return faktorB;
|
||||
}
|
||||
|
||||
public void setFaktorB(FaktorEvaluasiVO faktorB) {
|
||||
this.faktorB = faktorB;
|
||||
}
|
||||
|
||||
public Integer getFaktorBId() {
|
||||
return faktorBId;
|
||||
}
|
||||
|
||||
public void setFaktorBId(Integer faktorBId) {
|
||||
this.faktorBId = faktorBId;
|
||||
}
|
||||
|
||||
public FaktorEvaluasiVO getFaktorC() {
|
||||
return faktorC;
|
||||
}
|
||||
|
||||
public void setFaktorC(FaktorEvaluasiVO faktorC) {
|
||||
this.faktorC = faktorC;
|
||||
}
|
||||
|
||||
public Integer getFaktorCId() {
|
||||
return faktorCId;
|
||||
}
|
||||
|
||||
public void setFaktorCId(Integer faktorCId) {
|
||||
this.faktorCId = faktorCId;
|
||||
}
|
||||
|
||||
public FaktorEvaluasiVO getFaktorD() {
|
||||
return faktorD;
|
||||
}
|
||||
|
||||
public void setFaktorD(FaktorEvaluasiVO faktorD) {
|
||||
this.faktorD = faktorD;
|
||||
}
|
||||
|
||||
public Integer getFaktorDId() {
|
||||
return faktorDId;
|
||||
}
|
||||
|
||||
public void setFaktorDId(Integer faktorDId) {
|
||||
this.faktorDId = faktorDId;
|
||||
}
|
||||
|
||||
public FaktorEvaluasiVO getFaktorE() {
|
||||
return faktorE;
|
||||
}
|
||||
|
||||
public void setFaktorE(FaktorEvaluasiVO faktorE) {
|
||||
this.faktorE = faktorE;
|
||||
}
|
||||
|
||||
public Integer getFaktorEId() {
|
||||
return faktorEId;
|
||||
}
|
||||
|
||||
public void setFaktorEId(Integer faktorEId) {
|
||||
this.faktorEId = faktorEId;
|
||||
}
|
||||
|
||||
public FaktorEvaluasiVO getFaktorF() {
|
||||
return faktorF;
|
||||
}
|
||||
|
||||
public void setFaktorF(FaktorEvaluasiVO faktorF) {
|
||||
this.faktorF = faktorF;
|
||||
}
|
||||
|
||||
public Integer getFaktorFId() {
|
||||
return faktorFId;
|
||||
}
|
||||
|
||||
public void setFaktorFId(Integer faktorFId) {
|
||||
this.faktorFId = faktorFId;
|
||||
}
|
||||
|
||||
public FaktorEvaluasiVO getFaktorG() {
|
||||
return faktorG;
|
||||
}
|
||||
|
||||
public void setFaktorG(FaktorEvaluasiVO faktorG) {
|
||||
this.faktorG = faktorG;
|
||||
}
|
||||
|
||||
public Integer getFaktorGId() {
|
||||
return faktorGId;
|
||||
}
|
||||
|
||||
public void setFaktorGId(Integer faktorGId) {
|
||||
this.faktorGId = faktorGId;
|
||||
}
|
||||
|
||||
public FaktorEvaluasiVO getFaktorH() {
|
||||
return faktorH;
|
||||
}
|
||||
|
||||
public void setFaktorH(FaktorEvaluasiVO faktorH) {
|
||||
this.faktorH = faktorH;
|
||||
}
|
||||
|
||||
public Integer getFaktorHId() {
|
||||
return faktorHId;
|
||||
}
|
||||
|
||||
public void setFaktorHId(Integer faktorHId) {
|
||||
this.faktorHId = faktorHId;
|
||||
}
|
||||
|
||||
public FaktorEvaluasiVO getFaktorI() {
|
||||
return faktorI;
|
||||
}
|
||||
|
||||
public void setFaktorI(FaktorEvaluasiVO faktorI) {
|
||||
this.faktorI = faktorI;
|
||||
}
|
||||
|
||||
public Integer getFaktorIId() {
|
||||
return faktorIId;
|
||||
}
|
||||
|
||||
public void setFaktorIId(Integer faktorIId) {
|
||||
this.faktorIId = faktorIId;
|
||||
}
|
||||
|
||||
public FaktorEvaluasiVO getFaktorJ() {
|
||||
return faktorJ;
|
||||
}
|
||||
|
||||
public void setFaktorJ(FaktorEvaluasiVO faktorJ) {
|
||||
this.faktorJ = faktorJ;
|
||||
}
|
||||
|
||||
public Integer getFaktorJId() {
|
||||
return faktorJId;
|
||||
}
|
||||
|
||||
public void setFaktorJId(Integer faktorJId) {
|
||||
this.faktorJId = faktorJId;
|
||||
}
|
||||
|
||||
public FaktorEvaluasiVO getFaktorK() {
|
||||
return faktorK;
|
||||
}
|
||||
|
||||
public void setFaktorK(FaktorEvaluasiVO faktorK) {
|
||||
this.faktorK = faktorK;
|
||||
}
|
||||
|
||||
public Integer getFaktorKId() {
|
||||
return faktorKId;
|
||||
}
|
||||
|
||||
public void setFaktorKId(Integer faktorKId) {
|
||||
this.faktorKId = faktorKId;
|
||||
}
|
||||
|
||||
public FaktorEvaluasiVO getFaktorL() {
|
||||
return faktorL;
|
||||
}
|
||||
|
||||
public void setFaktorL(FaktorEvaluasiVO faktorL) {
|
||||
this.faktorL = faktorL;
|
||||
}
|
||||
|
||||
public Integer getFaktorLId() {
|
||||
return faktorLId;
|
||||
}
|
||||
|
||||
public void setFaktorLId(Integer faktorLId) {
|
||||
this.faktorLId = faktorLId;
|
||||
}
|
||||
|
||||
public String getBulan() {
|
||||
return bulan;
|
||||
}
|
||||
|
||||
public void setBulan(String bulan) {
|
||||
this.bulan = bulan;
|
||||
}
|
||||
|
||||
public Double getTotalNilai() {
|
||||
return totalNilai;
|
||||
}
|
||||
|
||||
public void setTotalNilai(Double totalNilai) {
|
||||
this.totalNilai = totalNilai;
|
||||
}
|
||||
|
||||
public NilaiKelompokJabatanVO getGrade() {
|
||||
return grade;
|
||||
}
|
||||
|
||||
public void setGrade(NilaiKelompokJabatanVO grade) {
|
||||
this.grade = grade;
|
||||
}
|
||||
|
||||
public JabatanVO getJabatan() {
|
||||
return jabatan;
|
||||
}
|
||||
|
||||
public void setJabatan(JabatanVO jabatan) {
|
||||
this.jabatan = jabatan;
|
||||
}
|
||||
|
||||
}
|
||||
@ -1,33 +1,17 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import javax.persistence.FetchType;
|
||||
import javax.persistence.ManyToOne;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class EvaluasiVO extends BaseKeyValueMasterVO {
|
||||
|
||||
@ManyToOne(fetch=FetchType.LAZY)
|
||||
@Caption(value="Object Diagnosi Keperawatan")
|
||||
@Caption(value = "Object Diagnosi Keperawatan")
|
||||
private DiagnosaKeperawatanVO diagnosaKeperawatan;
|
||||
|
||||
@ManyToOne(fetch=FetchType.LAZY)
|
||||
@Caption(value="Object Head Evaluasi")
|
||||
|
||||
@Caption(value = "Object Head Evaluasi")
|
||||
private EvaluasiVO headEvaluasi;
|
||||
|
||||
public DiagnosaKeperawatanVO getDiagnosaKeperawatan() {
|
||||
return diagnosaKeperawatan;
|
||||
}
|
||||
|
||||
public void setDiagnosaKeperawatan(DiagnosaKeperawatanVO diagnosaKeperawatan) {
|
||||
this.diagnosaKeperawatan = diagnosaKeperawatan;
|
||||
}
|
||||
|
||||
public EvaluasiVO getHeadEvaluasi() {
|
||||
return headEvaluasi;
|
||||
}
|
||||
|
||||
public void setHeadEvaluasi(EvaluasiVO headEvaluasi) {
|
||||
this.headEvaluasi = headEvaluasi;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -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 EventBayi
|
||||
* class EventBayi
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
//@Entity
|
||||
//@Table(name = "EventBayi_M")
|
||||
@Getter
|
||||
@Setter
|
||||
public class EventBayiVO extends BaseMasterVO {
|
||||
@Caption(value="Event Bayi")
|
||||
|
||||
@Caption(value = "Event Bayi")
|
||||
private String eventBayi;
|
||||
|
||||
public void setEventBayi(String eventBayi) {
|
||||
this.eventBayi = eventBayi;
|
||||
}
|
||||
|
||||
@Column(name = "EventBayi", nullable = false , length = 20)
|
||||
public String getEventBayi(){
|
||||
return this.eventBayi;
|
||||
}
|
||||
|
||||
@Caption(value="Kode Event Bayi")
|
||||
@Caption(value = "Kode Event Bayi")
|
||||
private Byte kdEventBayi;
|
||||
|
||||
public void setKdEventBayi(Byte kdEventBayi) {
|
||||
this.kdEventBayi = kdEventBayi;
|
||||
}
|
||||
|
||||
@Column(name = "KdEventBayi", nullable = false )
|
||||
public Byte getKdEventBayi(){
|
||||
return this.kdEventBayi;
|
||||
}
|
||||
|
||||
@Caption(value="QEvent Bayi")
|
||||
@Caption(value = "QEvent Bayi")
|
||||
private Byte qEventBayi;
|
||||
|
||||
public void setqEventBayi(Byte qEventBayi) {
|
||||
this.qEventBayi = qEventBayi;
|
||||
}
|
||||
|
||||
@Column(name = "QEventBayi", nullable = false )
|
||||
public Byte getqEventBayi(){
|
||||
return this.qEventBayi;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -1,120 +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;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class FactoRateKelompokShiftVO extends BaseTransactionVO {
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "KelompokShiftFk")
|
||||
|
||||
@NotNull(message = "KelompokShift Harus Diisi")
|
||||
@Caption(value = "KelompokShift")
|
||||
private KelompokShiftVO kelompokShift;
|
||||
|
||||
@Column(name = "KelompokShiftFk", insertable = false, updatable = false)
|
||||
|
||||
private Integer kelompokShiftId;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "KomponenIndexFk")
|
||||
|
||||
@NotNull(message = "KomponenIndex Harus Diisi")
|
||||
@Caption(value = "KomponenIndex")
|
||||
private KomponenIndexVO komponenIndex;
|
||||
|
||||
@Column(name = "KomponenIndexFk", insertable = false, updatable = false)
|
||||
|
||||
private Integer komponenIndexId;
|
||||
|
||||
|
||||
@Caption(value = "periode")
|
||||
@Column(name = "periode", nullable = false)
|
||||
private String periode;
|
||||
|
||||
@Column(name="FactorRate", nullable = false)
|
||||
@Caption(value="Factor Rate")
|
||||
|
||||
@Caption(value = "Factor Rate")
|
||||
private Double factorRate;
|
||||
|
||||
|
||||
private Integer hari;
|
||||
|
||||
@Column(name="Value", nullable = false)
|
||||
@Caption(value="Value")
|
||||
|
||||
@Caption(value = "Value")
|
||||
private Integer value;
|
||||
|
||||
@Column(name = "isTangguhkanSisaCuti")
|
||||
|
||||
@Caption(value = "Tangguhkan Sisa Cuti")
|
||||
private Boolean isTangguhkan;
|
||||
|
||||
public KelompokShiftVO getKelompokShift() {
|
||||
return kelompokShift;
|
||||
}
|
||||
|
||||
public void setKelompokShift(KelompokShiftVO kelompokShift) {
|
||||
this.kelompokShift = kelompokShift;
|
||||
}
|
||||
|
||||
public Integer getKelompokShiftId() {
|
||||
return kelompokShiftId;
|
||||
}
|
||||
|
||||
public void setKelompokShiftId(Integer kelompokShiftId) {
|
||||
this.kelompokShiftId = kelompokShiftId;
|
||||
}
|
||||
|
||||
public String getPeriode() {
|
||||
return periode;
|
||||
}
|
||||
|
||||
public void setPeriode(String periode) {
|
||||
this.periode = periode;
|
||||
}
|
||||
|
||||
public Double getFactorRate() {
|
||||
return factorRate;
|
||||
}
|
||||
|
||||
public void setFactorRate(Double factorRate) {
|
||||
this.factorRate = factorRate;
|
||||
}
|
||||
|
||||
public KomponenIndexVO getKomponenIndex() {
|
||||
return komponenIndex;
|
||||
}
|
||||
|
||||
public void setKomponenIndex(KomponenIndexVO komponenIndex) {
|
||||
this.komponenIndex = komponenIndex;
|
||||
}
|
||||
|
||||
public Integer getKomponenIndexId() {
|
||||
return komponenIndexId;
|
||||
}
|
||||
|
||||
public void setKomponenIndexId(Integer komponenIndexId) {
|
||||
this.komponenIndexId = komponenIndexId;
|
||||
}
|
||||
|
||||
public Integer getHari() {
|
||||
return hari;
|
||||
}
|
||||
|
||||
public void setHari(Integer hari) {
|
||||
this.hari = hari;
|
||||
}
|
||||
|
||||
public Integer getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
public void setValue(Integer value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
public Boolean getIsTangguhkan() {
|
||||
return isTangguhkan;
|
||||
}
|
||||
|
||||
public void setIsTangguhkan(Boolean isTangguhkan) {
|
||||
this.isTangguhkan = isTangguhkan;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user