From f5c307669aa910dcb85acca404fafdadafaf9d46 Mon Sep 17 00:00:00 2001 From: er <913652501@qq.com> Date: Thu, 02 Apr 2020 15:40:07 +0800 Subject: [PATCH] 添加 数据需求 的功能 --- kidgrow-business/kidgrow-opration-center/kidgrow-opration-center-biz/src/main/resources/mapper/DataNeedMapper.xml | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/kidgrow-business/kidgrow-opration-center/kidgrow-opration-center-biz/src/main/resources/mapper/DataNeedMapper.xml b/kidgrow-business/kidgrow-opration-center/kidgrow-opration-center-biz/src/main/resources/mapper/DataNeedMapper.xml index 9144f5e..5884ea3 100644 --- a/kidgrow-business/kidgrow-opration-center/kidgrow-opration-center-biz/src/main/resources/mapper/DataNeedMapper.xml +++ b/kidgrow-business/kidgrow-opration-center/kidgrow-opration-center-biz/src/main/resources/mapper/DataNeedMapper.xml @@ -34,10 +34,10 @@ and doctor_tel = #{p.doctorTel} </if> <if test="p.needBegintime != null and p.needBegintime !=''"> - and need_begintime = #{p.needBegintime} + and need_begintime >= #{p.needBegintime} </if> <if test="p.needEndtime != null and p.needEndtime !=''"> - and need_endtime = #{p.needEndtime} + and need_endtime <= #{p.needEndtime} </if> <if test="p.needTags != null and p.needTags !=''"> and need_tags = #{p.needTags} -- Gitblit v1.8.0