From 77fcec363abb0c05cee602261d545ac0880f9867 Mon Sep 17 00:00:00 2001 From: zhangheng Date: Tue, 28 Oct 2025 14:45:55 +0800 Subject: [PATCH] =?UTF-8?q?##=20=E5=90=8E=E5=8F=B0=E7=9C=8B=E6=9D=BF?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E4=BC=9A=E5=91=98=E6=95=B0=E6=8D=AE=E6=A0=B9?= =?UTF-8?q?=E6=8D=AE=E5=88=9B=E5=BB=BA=E6=97=B6=E9=97=B4=E6=9F=A5=E8=AF=A2?= =?UTF-8?q?,=E5=8F=96=E6=B6=88=E6=94=AF=E4=BB=98=E7=8A=B6=E6=80=81?= =?UTF-8?q?=E6=9D=A1=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/resources/mapper/system/board/BoardMapper.xml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/bd-business/bd-business-system/src/main/resources/mapper/system/board/BoardMapper.xml b/bd-business/bd-business-system/src/main/resources/mapper/system/board/BoardMapper.xml index ebd31fea..69142d8e 100644 --- a/bd-business/bd-business-system/src/main/resources/mapper/system/board/BoardMapper.xml +++ b/bd-business/bd-business-system/src/main/resources/mapper/system/board/BoardMapper.xml @@ -52,9 +52,8 @@ from (select cm.PK_SETTLE_GRADE, count(1) member_total from cu_member cm where cm.del_flag = 0 - and cm.pay_status = 1 and cm.category = 0 - and to_char(cm.pay_time, 'yyyy-mm-dd') = + and to_char(cm.CREATION_TIME, 'yyyy-mm-dd') = to_char(sysdate, 'yyyy-mm-dd') and cm.customer_type != 1 group by cm.PK_SETTLE_GRADE @@ -70,9 +69,8 @@ from (select cm.PK_SETTLE_GRADE, count(1) member_total from cu_member cm where cm.del_flag = 0 - and cm.pay_status = 1 and cm.category = 0 - and to_char(cm.pay_time, 'yyyy-mm-dd') = + and to_char(cm.CREATION_TIME, 'yyyy-mm-dd') = to_char(sysdate - 1, 'yyyy-mm-dd') and cm.customer_type != 1 group by cm.PK_SETTLE_GRADE @@ -88,9 +86,8 @@ from (select cm.PK_SETTLE_GRADE, count(1) member_total from cu_member cm where cm.del_flag = 0 - and cm.pay_status = 1 and cm.category = 0 - and to_char(cm.pay_time, 'yyyy-mm') = to_char(sysdate, 'yyyy-mm') + and to_char(cm.CREATION_TIME, 'yyyy-mm') = to_char(sysdate, 'yyyy-mm') and cm.customer_type != 1 group by cm.PK_SETTLE_GRADE order by cm.PK_SETTLE_GRADE) a