From 6372587cebaccb64fdccfca597c5ae209fdf5f61 Mon Sep 17 00:00:00 2001 From: changpengfei Date: Wed, 8 Sep 2021 20:22:04 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E7=97=85=E4=BE=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../lyms/talkonlineweb/controller/PatientController.java | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/talkonlineweb/src/main/java/com/lyms/talkonlineweb/controller/PatientController.java b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/controller/PatientController.java index e84e49c..330a3ac 100644 --- a/talkonlineweb/src/main/java/com/lyms/talkonlineweb/controller/PatientController.java +++ b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/controller/PatientController.java @@ -151,6 +151,19 @@ public class PatientController { } /** + * 删除患者病例ID + * @param pcid + * @return + */ + @GetMapping("delPcase") + public BaseResponse delPcase(int pcid){ + BaseResponse baseResponse=new BaseResponse(); + boolean f=lymsPcaseService.removeById(pcid); + baseResponse.setErrorcode(f==true?0:1); + return baseResponse; + } + + /** * 患者登录 * @param patient * @return -- 1.8.3.1