魏超 5 年前
父节点
当前提交
13b7730c19

+ 1
- 1
src/main/java/com/huiju/estateagents/bo/request/PresecretRecordRequestBO.java 查看文件

@@ -18,7 +18,7 @@ public class PresecretRecordRequestBO {
18 18
     /**
19 19
      * 房源ID
20 20
      */
21
-    private String houseId;
21
+    private Integer houseId;
22 22
 
23 23
     /**
24 24
      * 期名

+ 3
- 2
src/main/resources/mapper/TaPreselectionRecordMapper.xml 查看文件

@@ -121,7 +121,7 @@
121 121
                 AND a.room_name like CONCAT('%',#{bo.roomName}, '%')
122 122
             </if>
123 123
             <if test="bo.houseId != null and bo.houseId !=''">
124
-                AND t.house_id = #{houseId}
124
+                AND t.house_id = #{bo.houseId}
125 125
             </if>
126 126
             <if test="bo.phone != null and bo.phone != ''">
127 127
                 AND b.phone = #{bo.phone}
@@ -143,7 +143,8 @@
143 143
         ) t
144 144
         GROUP BY
145 145
             t.house_id,
146
-            t.person_id
146
+            t.person_id,
147
+            t.status
147 148
 
148 149
     </select>
149 150