From 5758fa23bb92f9bc38b4640de171bedbf9d31c66 Mon Sep 17 00:00:00 2001 From: songyunpeng Date: Wed, 29 Jul 2020 14:50:39 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A7=AF=E5=88=86=E5=88=A4=E6=96=AD=E8=A7=84?= =?UTF-8?q?=E5=88=99=20=20=E5=A4=A9=E6=9C=88=E5=B9=B4=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/mapper/PointsLogsDao.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/esua-epdc/epdc-module/epdc-points/epdc-points-server/src/main/resources/mapper/PointsLogsDao.xml b/esua-epdc/epdc-module/epdc-points/epdc-points-server/src/main/resources/mapper/PointsLogsDao.xml index 4412fde5..68fd2666 100755 --- a/esua-epdc/epdc-module/epdc-points/epdc-points-server/src/main/resources/mapper/PointsLogsDao.xml +++ b/esua-epdc/epdc-module/epdc-points/epdc-points-server/src/main/resources/mapper/PointsLogsDao.xml @@ -60,13 +60,13 @@ and OPERATION_TIME between date_add(now() , interval -1 hour ) and now() - and OPERATION_TIME between date_add(now() , interval -1 day ) and now() + and date_format(OPERATION_TIME,'%d') = date_format(now(),'%d') - and OPERATION_TIME between date_add(now() , interval -1 month ) and now() + and date_format(OPERATION_TIME,'%m') = date_format(now(),'%m') - and OPERATION_TIME between date_add(now() , interval -1 year ) and now() + and date_format(OPERATION_TIME,'%Y') = date_format(now(),'%Y') group by OPERATION_TYPE)a group by a.BEHAVIOR_CODE;