|
|
@@ -1,15 +1,14 @@
|
|
|
package com.webserver.utils;
|
|
|
|
|
|
-import com.webserver.core.zdUnitCode.ResponseData;
|
|
|
-import com.webserver.core.zdUnitCode.ZdUnitCode;
|
|
|
-import com.webserver.core.zdUnitCode.ZdUnitCodeService;
|
|
|
+import com.webserver.core.GetDiagnoseList.GetDiagnoseListService;
|
|
|
+import com.webserver.core.GetDiagnoseList.GetDiagnoseListServiceResponseData;
|
|
|
+import com.webserver.core.GetDeptList.GetDeptListResponseData;
|
|
|
+import com.webserver.core.GetDeptList.GetDeptListService;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
-import javax.jws.WebParam;
|
|
|
import javax.jws.WebResult;
|
|
|
import javax.jws.WebService;
|
|
|
-import java.util.List;
|
|
|
|
|
|
|
|
|
// 主服务接口
|
|
|
@@ -18,9 +17,16 @@ import java.util.List;
|
|
|
public class LISServiceList {
|
|
|
|
|
|
@Autowired
|
|
|
- ZdUnitCodeService zdUnitCodeService;
|
|
|
+ GetDeptListService getDeptListService;
|
|
|
+ @Autowired
|
|
|
+ GetDiagnoseListService getDiagnoseListService;
|
|
|
+ @WebResult(name = "response")
|
|
|
+ public GetDeptListResponseData GetDeptList(){
|
|
|
+ return getDeptListService.GetDeptList();
|
|
|
+ }
|
|
|
+
|
|
|
@WebResult(name = "response")
|
|
|
- public ResponseData getDeptList(){
|
|
|
- return zdUnitCodeService.getDeptList();
|
|
|
+ public GetDiagnoseListServiceResponseData GetDiagnoseList(){
|
|
|
+ return getDiagnoseListService.GetDiagnoseList();
|
|
|
}
|
|
|
}
|