魏超 5 anos atrás
pai
commit
13b7730c19

+ 1
- 1
src/main/java/com/huiju/estateagents/bo/request/PresecretRecordRequestBO.java Ver arquivo

18
     /**
18
     /**
19
      * 房源ID
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 Ver arquivo

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