From f8fb64ec5d89171a3aa0c9ba1691b7307b68acfb Mon Sep 17 00:00:00 2001 From: czx <28353131@qq.com> Date: Wed, 20 Jan 2021 10:42:19 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E6=8E=A5=E5=8F=A3=EF=BC=9A?= =?UTF-8?q?=E8=BF=94=E5=9B=9E=E7=97=85=E6=82=A3=E5=8A=A0=E8=8F=9C=E5=8A=A0?= =?UTF-8?q?=E9=A5=AD=E7=9A=84=E4=BB=B7=E6=A0=BC=E4=BF=A1=E6=81=AF=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../system/fantang/controller/ClientPatientController.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/fantang/controller/ClientPatientController.java b/ruoyi-system/src/main/java/com/ruoyi/system/fantang/controller/ClientPatientController.java index 21828e81e..d7ef323a8 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/fantang/controller/ClientPatientController.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/fantang/controller/ClientPatientController.java @@ -155,8 +155,8 @@ public class ClientPatientController extends BaseController { @GetMapping("/getFoodPrice") public AjaxResult getFoodPrice() { QueryWrapper wrapper = new QueryWrapper<>(); - wrapper.eq("type", 1); - wrapper.gt("dinner_type", 0); + wrapper.in("type", 1,4) + .gt("dinner_type", 0); return AjaxResult.success(iftFoodDaoService.list(wrapper)); }