wangfeng hace 5 años
padre
commit
d30f281144

+ 1 - 0
icss-service/src/main/java/com/diagbot/vo/HospitalCodeVo.java

@@ -17,4 +17,5 @@ public class HospitalCodeVo {
     @NotBlank(message = "请输入医院编码")
     private String hospitalCode;
     private String deptInfoName;
+    private String thirdpartyName;
 }

+ 1 - 1
icss-service/src/main/java/com/diagbot/web/DoctorInfoController.java

@@ -31,7 +31,7 @@ import java.util.List;
 @RequestMapping("/doctorInfo")
 @Api(value = "医生信息API", tags = { "医生信息API" })
 @SuppressWarnings("unchecked")
-@ApiIgnore
+//@ApiIgnore
 //@Deprecated
 public class DoctorInfoController {
 

+ 1 - 0
tran-service/src/main/java/com/diagbot/facade/HospitalDeptFacade.java

@@ -107,6 +107,7 @@ public class HospitalDeptFacade extends HospitalDeptServiceImpl {
         hospitalDeptQueryWrapper.eq("is_deleted", IsDeleteEnum.N.getKey())
                 .eq("hospital_code", hospitalCodeVo.getHospitalCode())
                 .eq("status", StatusEnum.Enable.getKey())
+                .like("name",hospitalCodeVo.getThirdpartyName())
                 .like("concept_dept_name", hospitalCodeVo.getDeptInfoName());
         List<HospitalDept> hospitalDeptList = this.list(hospitalDeptQueryWrapper);
         List<HospitalDeptInfoAllDTO> data = BeanUtil.listCopyTo(hospitalDeptList, HospitalDeptInfoAllDTO.class);

+ 1 - 0
tran-service/src/main/java/com/diagbot/vo/HospitalCodeVo.java

@@ -16,4 +16,5 @@ public class HospitalCodeVo {
     @NotNull(message = "请输入医院编码")
     private String hospitalCode;
     private String deptInfoName;
+    private String thirdpartyName;
 }