From a732684ccf6a76c3d7e4048b3718e0dd401f6e5f Mon Sep 17 00:00:00 2001
From: zhongrj <646384940@qq.com>
Date: Mon, 22 Apr 2024 16:13:52 +0800
Subject: [PATCH] 登录新增登录类型,根据类型过滤对应类型的角色信息返回

---
 src/main/java/org/springblade/modules/property/mapper/PropertyCompanyCommentMapper.xml |   14 ++++++++++++++
 1 files changed, 14 insertions(+), 0 deletions(-)

diff --git a/src/main/java/org/springblade/modules/property/mapper/PropertyCompanyCommentMapper.xml b/src/main/java/org/springblade/modules/property/mapper/PropertyCompanyCommentMapper.xml
index f8ef51e..a1346c4 100644
--- a/src/main/java/org/springblade/modules/property/mapper/PropertyCompanyCommentMapper.xml
+++ b/src/main/java/org/springblade/modules/property/mapper/PropertyCompanyCommentMapper.xml
@@ -24,6 +24,13 @@
         <if test="propertyCompanyComment.propertyCompanyId!=null">
             and jpcc.property_company_id = #{propertyCompanyComment.propertyCompanyId}
         </if>
+        <if test="propertyCompanyComment.checkStatus!=null">
+            and jpcc.check_status = #{propertyCompanyComment.checkStatus}
+        </if>
+
+        <if test="propertyCompanyComment.createUser!=null">
+            and jpcc.create_user = #{propertyCompanyComment.createUser}
+        </if>
     </select>
 
     <!--自定义分页查询(递归)-->
@@ -39,6 +46,13 @@
         <if test="propertyCompanyComment.propertyCompanyId!=null">
             and jpcc.property_company_id = #{propertyCompanyComment.propertyCompanyId}
         </if>
+        <if test="propertyCompanyComment.checkStatus!=null">
+            and jpcc.check_status = #{propertyCompanyComment.checkStatus}
+        </if>
+
+        <if test="propertyCompanyComment.createUser!=null">
+            and jpcc.create_user = #{propertyCompanyComment.createUser}
+        </if>
     </select>
 
     <!--递归查询-->

--
Gitblit v1.9.3