From d04a9c5cbb5acf92282aaef5de15be834273c7f9 Mon Sep 17 00:00:00 2001 From: ryoeiken <754264374@qq.com> Date: Mon, 4 Jan 2021 15:05:49 +0800 Subject: [PATCH] =?UTF-8?q?=E7=97=85=E4=BA=BA=E9=85=8D=E9=A4=90=E9=BB=98?= =?UTF-8?q?=E8=AE=A4=E4=B8=8D=E5=BC=80=E5=90=AF=E8=90=A5=E5=85=BB=E9=A4=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../system/fantang/controller/FtCateringDaoController.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/fantang/controller/FtCateringDaoController.java b/ruoyi-system/src/main/java/com/ruoyi/system/fantang/controller/FtCateringDaoController.java index 135044c17..27263763d 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/fantang/controller/FtCateringDaoController.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/fantang/controller/FtCateringDaoController.java @@ -96,7 +96,6 @@ public class FtCateringDaoController extends BaseController { foodDemandDao.setPatientId(patientId); foodDemandDao.setType(type); foodDemandDao.setNutritionFoodId(ftCateringDao.getNumber()); - foodDemandDao.setNutritionFoodFlag(1); foodDemandDao.setCreateAt(new Date()); iFtFoodDemandDaoService.save(foodDemandDao); } else { @@ -105,7 +104,6 @@ public class FtCateringDaoController extends BaseController { wrapper.eq("type", type); FtFoodDemandDao foodDemandDao = iFtFoodDemandDaoService.getOne(wrapper); foodDemandDao.setNutritionFoodId(ftCateringDao.getNumber()); - foodDemandDao.setNutritionFoodFlag(1); foodDemandDao.setUpdateAt(new Date()); iFtFoodDemandDaoService.updateById(foodDemandDao); } @@ -131,7 +129,6 @@ public class FtCateringDaoController extends BaseController { wrapper.eq("type", type); FtFoodDemandDao foodDemandDao = iFtFoodDemandDaoService.getOne(wrapper); foodDemandDao.setNutritionFoodId(number); - foodDemandDao.setNutritionFoodFlag(1); foodDemandDao.setUpdateAt(new Date()); iFtFoodDemandDaoService.updateById(foodDemandDao);