|
@@ -14,6 +14,7 @@ import thyyxxk.webserver.utils.ListUtil;
|
|
|
import thyyxxk.webserver.utils.ResultVoUtil;
|
|
|
import thyyxxk.webserver.utils.StringUtil;
|
|
|
|
|
|
+import java.io.PushbackInputStream;
|
|
|
import java.util.List;
|
|
|
|
|
|
@Service
|
|
@@ -35,6 +36,13 @@ public class PatientInfoQueryService {
|
|
|
return ResultVoUtil.success(dao.selectDiagnsis(StringUtil.isContainChinese(code)));
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * @return 获取手术
|
|
|
+ */
|
|
|
+ public ResultVo<List<GetDropdownBox>> getSurgery(String code) {
|
|
|
+ return ResultVoUtil.success(dao.selectSurgery(StringUtil.isContainChinese(code)));
|
|
|
+ }
|
|
|
+
|
|
|
public ResultVo<List<GetDropdownBox>> employeeList(String code) {
|
|
|
return ResultVoUtil.success(dao.employeeList(StringUtil.isContainChinese(code)));
|
|
|
}
|