修改了病例交流的统计数据和登陆状态1

This commit is contained in:
wucongxing8150 2025-08-04 16:09:40 +08:00
parent 20ff8778b8
commit 54c250a7a6

View File

@ -84,6 +84,10 @@ public class PublicController {
if (Objects.equals(e.getMessage(), "请耐心等待审核")){ if (Objects.equals(e.getMessage(), "请耐心等待审核")){
return Response.error(10005,null,e.getMessage()); return Response.error(10005,null,e.getMessage());
} }
if (Objects.equals(e.getMessage(), "待补充资料")){
return Response.error(10007,null,e.getMessage());
}
return Response.error(e.getMessage()); return Response.error(e.getMessage());
} }
} }
@ -99,6 +103,10 @@ public class PublicController {
if (Objects.equals(e.getMessage(), "请耐心等待审核")){ if (Objects.equals(e.getMessage(), "请耐心等待审核")){
return Response.error(10005,null,e.getMessage()); return Response.error(10005,null,e.getMessage());
} }
if (Objects.equals(e.getMessage(), "待补充资料")){
return Response.error(10007,null,e.getMessage());
}
return Response.error(e.getMessage()); return Response.error(e.getMessage());
} }
} }
@ -219,6 +227,10 @@ public class PublicController {
if (Objects.equals(e.getMessage(), "请耐心等待审核")){ if (Objects.equals(e.getMessage(), "请耐心等待审核")){
return Response.error(10005,null,e.getMessage()); return Response.error(10005,null,e.getMessage());
} }
if (Objects.equals(e.getMessage(), "待补充资料")){
return Response.error(10007,null,e.getMessage());
}
return Response.error(e.getMessage()); return Response.error(e.getMessage());
} }
} }