|
@@ -9,12 +9,12 @@ import com.diagbot.dto.QcCasesEntryAllDTO;
|
|
import com.diagbot.dto.QcHospitalInfoAllDTO;
|
|
import com.diagbot.dto.QcHospitalInfoAllDTO;
|
|
import com.diagbot.entity.CasesEntryHospital;
|
|
import com.diagbot.entity.CasesEntryHospital;
|
|
import com.diagbot.entity.QcCasesEntry;
|
|
import com.diagbot.entity.QcCasesEntry;
|
|
-import com.diagbot.entity.QcInputcasesMapping;
|
|
|
|
import com.diagbot.enums.IsDeleteEnum;
|
|
import com.diagbot.enums.IsDeleteEnum;
|
|
import com.diagbot.service.impl.QcCasesEntryServiceImpl;
|
|
import com.diagbot.service.impl.QcCasesEntryServiceImpl;
|
|
import com.diagbot.util.BeanUtil;
|
|
import com.diagbot.util.BeanUtil;
|
|
import com.diagbot.vo.GetUpdateInfoVO;
|
|
import com.diagbot.vo.GetUpdateInfoVO;
|
|
import com.diagbot.vo.QcCasesEntryAllVO;
|
|
import com.diagbot.vo.QcCasesEntryAllVO;
|
|
|
|
+import com.diagbot.vo.QcCasesEntryIndexVO;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.stereotype.Component;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
@@ -36,6 +36,7 @@ public class QcCacesEntryFacade extends QcCasesEntryServiceImpl {
|
|
private CasesEntryHospitalFacade casesEntryHospitalFacade;
|
|
private CasesEntryHospitalFacade casesEntryHospitalFacade;
|
|
@Autowired
|
|
@Autowired
|
|
private BasHospitalInfoFacade qcHospitalInfoFacade;
|
|
private BasHospitalInfoFacade qcHospitalInfoFacade;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 分页获取病例条目
|
|
* 分页获取病例条目
|
|
*
|
|
*
|
|
@@ -46,6 +47,16 @@ public class QcCacesEntryFacade extends QcCasesEntryServiceImpl {
|
|
return this.getAllQcCasesEntry(qcCasesEntryAllVO);
|
|
return this.getAllQcCasesEntry(qcCasesEntryAllVO);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 分页获取病例条目
|
|
|
|
+ *
|
|
|
|
+ * @param qcCasesEntryIndexVO
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
|
|
+ public IPage<QcCasesEntryAllDTO> getAllQcCasesEntryIndexFac(QcCasesEntryIndexVO qcCasesEntryIndexVO){
|
|
|
|
+ return this.getAllQcCasesEntryIndex(qcCasesEntryIndexVO);
|
|
|
|
+ }
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 修改时获取病例条目信息
|
|
* 修改时获取病例条目信息
|
|
*
|
|
*
|