Min 1 سال پیش
والد
کامیت
e438eb829a

+ 1 - 1
fhKeeper/formulahousekeeper/management-workshop/src/main/java/com/management/platform/controller/PlanController.java

@@ -159,7 +159,7 @@ public class PlanController {
     @RequestMapping("/deletePlan")
     public HttpRespMsg deletePlan(Integer id){
         HttpRespMsg msg=new HttpRespMsg();
-        Report one = reportService.getOne(new LambdaQueryWrapper<Report>().eq(id!=null,Report::getPlanId, id));
+        Report one = reportService.getOne(new LambdaQueryWrapper<Report>().eq(id!=null,Report::getPlanId, id).last("LIMIT 1"));
         if(one==null){
             planService.removeById(id);
             return msg;