|
@@ -33,6 +33,7 @@ import com.diagbot.vo.QcEntryTypeIndexVO;
|
|
|
import com.diagbot.vo.QcEntryTypePageVO;
|
|
|
import com.diagbot.vo.QcEntryTypeSaveVO;
|
|
|
import com.diagbot.vo.QcEntryTypeVO;
|
|
|
+import com.diagbot.vo.QcTypeHospitalVO;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.beans.factory.annotation.Qualifier;
|
|
|
import org.springframework.stereotype.Component;
|
|
@@ -63,6 +64,8 @@ public class QcCacesEntryFacade extends QcCasesEntryServiceImpl {
|
|
|
@Autowired
|
|
|
@Qualifier("qcTypeCasesEntryServiceImpl")
|
|
|
QcTypeCasesEntryService qcTypeCasesEntryService;
|
|
|
+ @Autowired
|
|
|
+ QcTypeFacade qcTypeFacade;
|
|
|
|
|
|
/**
|
|
|
* 分页获取病例条目
|
|
@@ -237,5 +240,15 @@ public class QcCacesEntryFacade extends QcCasesEntryServiceImpl {
|
|
|
}
|
|
|
return true;
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 根据医院获取质控类型列表
|
|
|
+ *
|
|
|
+ * @param qcTypeHospitalVO
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public List<QcTypeSimpDTO> getTypeByHospitalFac(QcTypeHospitalVO qcTypeHospitalVO) {
|
|
|
+ return this.getTypeByHospital(qcTypeHospitalVO);
|
|
|
+ }
|
|
|
/********************************质控条目和质控类型关系映射结束******************************************/
|
|
|
}
|