clean project architecture
This commit is contained in:
parent
d0574b5167
commit
77bbcda014
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao;
|
||||
|
||||
import javax.persistence.EntityManager;
|
||||
import javax.persistence.PersistenceContext;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao;
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
@ -11,8 +11,8 @@ import org.springframework.stereotype.Repository;
|
||||
*
|
||||
* @author Roberto
|
||||
*/
|
||||
@Repository("GenericCustomDao")
|
||||
public interface GenericCustomDao {
|
||||
@Repository("GenericDaoCustom")
|
||||
public interface GenericDaoCustom {
|
||||
|
||||
public List<Object> findPapNoCmAndTglInput(@Param("table") String table,@Param("noCm") String noCm,@Param("tglInput") Date tglInput);
|
||||
|
||||
@ -1,12 +0,0 @@
|
||||
/*package com.jasamedika.medifirst2000.dao.custom;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.CoreDao;
|
||||
import com.jasamedika.medifirst2000.entities.PurchasedTest;
|
||||
|
||||
*//**
|
||||
*
|
||||
* @author Roberto
|
||||
*//*
|
||||
public interface PurchasedTestDaoCustom extends CoreDao<PurchasedTest> {
|
||||
}
|
||||
*/
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -7,6 +7,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.AdmisiRencanaPindahRuanganDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.AdmisiRencanaPindahRuangan;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
@ -1,7 +1,8 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.AgamaDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.Agama;
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.text.SimpleDateFormat;
|
||||
import java.util.ArrayList;
|
||||
@ -14,6 +14,7 @@ import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.RuanganDao;
|
||||
import com.jasamedika.medifirst2000.dao.SettingDataFixedDao;
|
||||
import com.jasamedika.medifirst2000.dao.custom.AntrianPasienDiPeriksaDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.AntrianPasienDiPeriksa;
|
||||
import com.jasamedika.medifirst2000.entities.KendaliDokumenRekamMedis;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
@ -7,6 +7,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.AntrianPasienRegistrasiDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.AntrianPasienRegistrasi;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -8,6 +8,7 @@ import javax.persistence.Query;
|
||||
import org.springframework.stereotype.Repository;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.B3RuanganInputDataDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.B3DaftarBahanBerbahaya;
|
||||
import com.jasamedika.medifirst2000.entities.B3RuanganInputData;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -9,6 +9,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.CssdDecontaminasiDaoCustom;
|
||||
import com.jasamedika.medifirst2000.entities.Ruangan;
|
||||
|
||||
/**
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -9,6 +9,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.CssdDistribusiDaoCustom;
|
||||
import com.jasamedika.medifirst2000.entities.Ruangan;
|
||||
|
||||
/**
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -9,6 +9,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.CssdMonitoringEoDaoCustom;
|
||||
import com.jasamedika.medifirst2000.entities.Ruangan;
|
||||
|
||||
/**
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -9,6 +9,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.CssdMonitoringSteamDaoCustom;
|
||||
import com.jasamedika.medifirst2000.entities.Ruangan;
|
||||
|
||||
/**
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -9,6 +9,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.CssdPengemasanDaoCustom;
|
||||
import com.jasamedika.medifirst2000.entities.Ruangan;
|
||||
|
||||
/**
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -9,6 +9,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.CssdPengeringanDaoCustom;
|
||||
import com.jasamedika.medifirst2000.entities.Ruangan;
|
||||
|
||||
/**
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -9,6 +9,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.CssdPenyimpananDaoCustom;
|
||||
import com.jasamedika.medifirst2000.entities.Ruangan;
|
||||
|
||||
/**
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -9,6 +9,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.CssdReturDaoCustom;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
import com.jasamedika.medifirst2000.util.DateUtil;
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -9,6 +9,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.CssdSterilDaoCustom;
|
||||
import com.jasamedika.medifirst2000.entities.Ruangan;
|
||||
|
||||
/**
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
@ -10,6 +10,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.CssdSterilisasiDaoCustom;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
import com.jasamedika.medifirst2000.util.DateUtil;
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -9,6 +9,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.CssdUjiSwapDaoCustom;
|
||||
import com.jasamedika.medifirst2000.entities.Ruangan;
|
||||
|
||||
/**
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -7,6 +7,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.DaftarPenerimaanDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.StrukBuktiPenerimaanCaraBayar;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -7,6 +7,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.DaftarPengajuanAnggaranDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.DetailSpekAnggaran;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -7,6 +7,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.DaftarRKAKLTahunanDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.DetailSpekAnggaran;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -7,6 +7,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.DestroyProdukDetailDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.DestroyProdukDetail;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
@ -1,10 +1,11 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.DetailJenisLimbahDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.DetailJenisLimbah;
|
||||
|
||||
@ -1,10 +1,11 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.DetailPerlakuanDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.DetailPerlakuan;
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -7,6 +7,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.DetailRupDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.dto.DetailRupDto;
|
||||
import com.jasamedika.medifirst2000.entities.DetailRup;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -7,6 +7,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.DetailSpekAnggaranDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.DetailSpekAnggaran;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@ -6,6 +6,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.DokumenInternalDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.dto.DokumenInternalDto;
|
||||
import com.jasamedika.medifirst2000.entities.DokumenInternal;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -7,6 +7,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.GajiPegawaiDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.PegawaiHistoriRekapGaji;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
@ -9,7 +9,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.GenericCustomDao;
|
||||
import com.jasamedika.medifirst2000.dao.custom.GenericDaoCustom;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
|
||||
/**
|
||||
@ -19,7 +19,7 @@ import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
* @param <T>
|
||||
*/
|
||||
@Repository
|
||||
public class GenericDaoCustomImpl implements GenericCustomDao {
|
||||
public class GenericDaoCustomImpl implements GenericDaoCustom {
|
||||
@PersistenceContext
|
||||
protected EntityManager em;
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@ -9,6 +9,8 @@ import javax.persistence.Query;
|
||||
import org.springframework.stereotype.Repository;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.GenericServDao;
|
||||
|
||||
@Repository("GenericDao")
|
||||
public class GenericServDaoImpl<T> implements GenericServDao<Object> {
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -7,6 +7,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.HasilPemeriksaanSwaDetailDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.HasilPemeriksaanSwaDetail;
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -7,6 +7,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.HasilPemeriksaanSwaPantauLimbahCairDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.HasilPemeriksaanSwaPantauLimbahCair;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
@ -1,9 +1,11 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
import javax.persistence.Query;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.HasilTriaseDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.HasilTriase;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import static org.torpedoquery.jpa.Torpedo.from;
|
||||
import static org.torpedoquery.jpa.Torpedo.orderBy;
|
||||
@ -14,6 +14,7 @@ import org.slf4j.LoggerFactory;
|
||||
import org.springframework.stereotype.Repository;
|
||||
import org.torpedoquery.jpa.Query;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.HistoryLoginModulAplikasiDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.HistoryLoginModulAplikasi;
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.text.ParseException;
|
||||
import java.text.SimpleDateFormat;
|
||||
@ -16,15 +16,16 @@ import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.IkiDanRemunerasiDao;
|
||||
import com.jasamedika.medifirst2000.dao.SettingDataFixedDao;
|
||||
import com.jasamedika.medifirst2000.dao.custom.IndeksKinerjaDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.IndekKinerja;
|
||||
import com.jasamedika.medifirst2000.service.MonitoringAbsenService;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
|
||||
@Repository
|
||||
public class IndekKinerjaCustomDaoImpl extends CoreDaoImpl<IndekKinerja> implements IndeksKinerjaDaoCustom {
|
||||
public class IndeksKinerjaDaoCustomImpl extends CoreDaoImpl<IndekKinerja> implements IndeksKinerjaDaoCustom {
|
||||
|
||||
public IndekKinerjaCustomDaoImpl() {
|
||||
public IndeksKinerjaDaoCustomImpl() {
|
||||
super(IndekKinerja.class);
|
||||
}
|
||||
|
||||
@ -1,10 +1,11 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.IpsrsMaintenanceDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.IpsrsKalibrasi;
|
||||
import com.jasamedika.medifirst2000.entities.IpsrsKontakService;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -7,6 +7,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.IpsrsPemakaianMesinDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.IpsrsPemakaianMesin;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -7,6 +7,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.IpsrsPemakaianRuanganDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.IpsrsPemakaianMesin;
|
||||
import com.jasamedika.medifirst2000.entities.IpsrsPemakaianRuangan;
|
||||
@ -1,9 +1,11 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.IpsrsPeminjamanAlatDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.IpsrsPeminjamanAlat;
|
||||
import com.jasamedika.medifirst2000.vo.IpsrsPeminjamanAlatVO;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -9,6 +9,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.ItJadwalPerawatanDaoCustom;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
import com.jasamedika.medifirst2000.util.DateUtil;
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -9,6 +9,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.ItPerbaikanDaoCustom;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
import com.jasamedika.medifirst2000.util.DateUtil;
|
||||
|
||||
@ -1,7 +1,8 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.JadwalDpjpRawatInapDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.JadwalDpjpRawatInap;
|
||||
|
||||
@ -1,10 +1,11 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
|
||||
import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.JenisDietDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.JenisDiet;
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.K3CheckListFacillitySefetyDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.K3CheckListFacillitySefety;
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -8,6 +8,7 @@ import javax.persistence.Query;
|
||||
import org.springframework.stereotype.Repository;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.K3LaporanKecelakaanKerjaDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.K3LaporanKecelakaanKerja;
|
||||
import com.jasamedika.medifirst2000.entities.LkkIdentifikasiKejadian;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -7,6 +7,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.KartuPengendaliDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.KartuPengendali;
|
||||
import com.jasamedika.medifirst2000.entities.KelompokUser;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@ -6,6 +6,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.KartuStokDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.KartuStok;
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -7,6 +7,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.KirimDokumenPasienDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.MappingKirimDokumenPasien;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
@ -1,9 +1,10 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.KualifikasiJurusanDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.KualifikasiJurusan;
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -7,6 +7,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.LaporanUjiHasilDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.LaporanUjiHasil;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Date;
|
||||
@ -9,6 +9,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.LaundryDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.KirimProduk;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -7,6 +7,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.LimbahB3KeluarDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.LimbahB3Keluar;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -7,6 +7,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.LimbahB3MasukDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.LimbahB3Masuk;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -7,6 +7,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.MapPaketToProdukDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.MapPaketToProduk;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -7,6 +7,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.MappingCycleDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.MappingCycle;
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -7,6 +7,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.MappingJenisLinenToProdukDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.MappingJenisLinenToProduk;
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
@ -9,6 +9,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.NeracaLimbahDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.NeracaLimbah;
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
@ -7,6 +7,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.ObservasiTerintegrasiPasienDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.ObservasiTerintegrasiPasien;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
@ -8,6 +8,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.OrderProdukDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.OrderPelayanan;
|
||||
import com.jasamedika.medifirst2000.entities.Produk;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
@ -8,6 +8,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.PapTandaVitalDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.PapTandaVital;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.HashMap;
|
||||
@ -9,6 +9,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.PasienDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.Pasien;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
@ -12,6 +12,7 @@ import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.constants.Master;
|
||||
import com.jasamedika.medifirst2000.dao.PegawaiDao;
|
||||
import com.jasamedika.medifirst2000.dao.custom.PegawaiDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.Pegawai;
|
||||
import com.jasamedika.medifirst2000.entities.PegawaiJadwalKerja;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
@ -8,6 +8,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.PegawaiHistoriRekapGajiDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.PegawaiHistoriRekapGaji;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -9,6 +9,8 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.PelatihanBiayaDiklatDaoCustom;
|
||||
|
||||
/**
|
||||
* Repository Custom class
|
||||
*
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -9,6 +9,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.PelatihanPaketDaoCustom;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
import com.jasamedika.medifirst2000.util.DateUtil;
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
@ -9,6 +9,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.PelayananPasienDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.PelayananPasien;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -7,6 +7,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.PemeriksaanLimbahDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.PemeriksaanLimbah;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -7,6 +7,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.PenyusunanEPlanningDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.DetailSpekAnggaran;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -7,6 +7,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.PenyusunanTRPNBPDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.StrukPelayananDetail;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
@ -1,10 +1,11 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.PlanningDiklatHumasMarketDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.Dokumen;
|
||||
import com.jasamedika.medifirst2000.entities.PlanningDiklatHumasMarket;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
@ -7,14 +7,15 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.PlanningPegawaiMuSaReDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.PlanningPegawaiMuSaRe;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
|
||||
@Repository
|
||||
public class PlanningPegawaiMuSaReDaoImpl extends CoreDaoImpl<PlanningPegawaiMuSaRe> implements PlanningPegawaiMuSaReDaoCustom{
|
||||
public class PlanningPegawaiMuSaReDaoCustomImpl extends CoreDaoImpl<PlanningPegawaiMuSaRe> implements PlanningPegawaiMuSaReDaoCustom{
|
||||
|
||||
public PlanningPegawaiMuSaReDaoImpl() {
|
||||
public PlanningPegawaiMuSaReDaoCustomImpl() {
|
||||
super(PlanningPegawaiMuSaRe.class);
|
||||
}
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
@ -14,6 +14,7 @@ import org.springframework.data.domain.Sort;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.constants.Master;
|
||||
import com.jasamedika.medifirst2000.dao.custom.PlanningPegawaiStatusDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.PlanningPegawaiStatus;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
@ -1,3 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
/*package com.jasamedika.medifirst2000.dao.custom;
|
||||
|
||||
import java.util.List;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -7,6 +7,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.RegistrasiAsetDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.RegistrasiAset;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Date;
|
||||
@ -8,6 +8,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.RegistrasiPelayananPasienDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.RegistrasiPelayananPasien;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
@ -8,6 +8,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.RekananDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.Rekanan;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -7,6 +7,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.RekananSkKontrakDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.RekananSkKontrak;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
@ -8,6 +8,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.RekrutmenDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.Pegawai;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -7,6 +7,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.RencanaKinerjaTahunanDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.RencanaKinerjaTahunan;
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
@ -12,6 +12,7 @@ import javax.persistence.Query;
|
||||
import org.apache.commons.lang.StringUtils;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.ReportPelayananDaoCustom;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
|
||||
@Repository
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
@ -13,6 +13,7 @@ import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.IkiDanRemunerasiDao;
|
||||
import com.jasamedika.medifirst2000.dao.SettingDataFixedDao;
|
||||
import com.jasamedika.medifirst2000.dao.custom.RevIndeksKinerjaDaoCustom;
|
||||
import com.jasamedika.medifirst2000.service.impl.BaseVoServiceImpl;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -7,6 +7,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.SiklusGiziDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.SiklusGizi;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@ -6,6 +6,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.StokProdukDetailDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.Ruangan;
|
||||
import com.jasamedika.medifirst2000.entities.StokProdukDetail;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -7,6 +7,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.StokProdukGlobalDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.Ruangan;
|
||||
import com.jasamedika.medifirst2000.entities.StokProdukGlobal;
|
||||
@ -1,10 +1,11 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.StrukKirimDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.StrukKirim;
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
@ -8,6 +8,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.StrukOrderDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.KelompokUser;
|
||||
import com.jasamedika.medifirst2000.entities.Ruangan;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -7,6 +7,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.StrukPelayananDetailDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.KelompokUser;
|
||||
import com.jasamedika.medifirst2000.entities.Ruangan;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
@ -8,6 +8,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.StrukResepDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.StrukResep;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
@ -1,7 +1,8 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.StrukVerifikasiDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.StrukVerifikasi;
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -7,6 +7,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.SuratMasukDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.Dokumen;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.text.ParseException;
|
||||
import java.text.SimpleDateFormat;
|
||||
@ -11,6 +11,7 @@ import javax.persistence.Query;
|
||||
import org.apache.commons.lang.time.DateUtils;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.SuratPernyataanDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.PenanggungJawabPasien;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -7,6 +7,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.TagihanRekananDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.StrukPelayanan;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.jasamedika.medifirst2000.dao.custom;
|
||||
package com.jasamedika.medifirst2000.dao.custom.impl;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -7,6 +7,7 @@ import javax.persistence.Query;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.jasamedika.medifirst2000.dao.custom.UnitCostDaoCustom;
|
||||
import com.jasamedika.medifirst2000.dao.custom.base.impl.CoreDaoImpl;
|
||||
import com.jasamedika.medifirst2000.entities.UnitCost;
|
||||
import com.jasamedika.medifirst2000.util.CommonUtil;
|
||||
Loading…
x
Reference in New Issue
Block a user