|
@@ -2,7 +2,6 @@ package com.diagbot.facade;
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
-import com.diagbot.biz.push.entity.Lis;
|
|
|
import com.diagbot.dto.AnalyzeDTO;
|
|
|
import com.diagbot.dto.GetDefectDeptDTO;
|
|
|
import com.diagbot.dto.GetDefectModeDTO;
|
|
@@ -23,6 +22,7 @@ import com.diagbot.util.ListUtil;
|
|
|
import com.diagbot.util.SysUserUtils;
|
|
|
import com.diagbot.vo.CCVO;
|
|
|
import com.diagbot.vo.ChangeQcResultVO;
|
|
|
+import com.diagbot.vo.GetDefectDeptModeVO;
|
|
|
import com.diagbot.vo.GetMedDefectFeedbackPageVO;
|
|
|
import com.diagbot.vo.QcresultVO;
|
|
|
import com.diagbot.vo.UPdDefectBackByIDVO;
|
|
@@ -225,9 +225,10 @@ public class MedDefectFeedbackFacade extends MedDefectFeedbackServiceImpl {
|
|
|
* @param
|
|
|
* @return:
|
|
|
*/
|
|
|
- public List<GetDefectModeDTO> getDefectMode() {
|
|
|
+ public List<GetDefectModeDTO> getDefectMode(GetDefectDeptModeVO getDefectDeptModeVO) {
|
|
|
Long hospitalID = Long.valueOf(SysUserUtils.getCurrentHospitalID());
|
|
|
- List<GetDefectModeDTO> defectDept = this.baseMapper.getDefectMode(hospitalID);
|
|
|
+ getDefectDeptModeVO.setHospitalId(hospitalID);
|
|
|
+ List<GetDefectModeDTO> defectDept = this.baseMapper.getDefectMode(getDefectDeptModeVO);
|
|
|
return defectDept;
|
|
|
}
|
|
|
|
|
@@ -237,9 +238,10 @@ public class MedDefectFeedbackFacade extends MedDefectFeedbackServiceImpl {
|
|
|
* @param
|
|
|
* @return:
|
|
|
*/
|
|
|
- public List<GetDefectDeptDTO> getDefectDept() {
|
|
|
+ public List<GetDefectDeptDTO> getDefectDept(GetDefectDeptModeVO getDefectDeptModeVO) {
|
|
|
Long hospitalID = Long.valueOf(SysUserUtils.getCurrentHospitalID());
|
|
|
- List<GetDefectDeptDTO> defectDept = this.baseMapper.getDefectDept(hospitalID);
|
|
|
+ getDefectDeptModeVO.setHospitalId(hospitalID);
|
|
|
+ List<GetDefectDeptDTO> defectDept = this.baseMapper.getDefectDept(getDefectDeptModeVO);
|
|
|
return defectDept;
|
|
|
}
|
|
|
|