|
@@ -121,7 +121,7 @@ public class TaPreselectionRecordServiceImpl extends ServiceImpl<TaPreselectionR
|
121
|
121
|
String tip;
|
122
|
122
|
String checkType = "预选";
|
123
|
123
|
|
124
|
|
- String houseId = taPreselectionRecord.getHouseId();
|
|
124
|
+ Integer houseId = taPreselectionRecord.getHouseId();
|
125
|
125
|
String personId = taPreselectionRecord.getPersonId();
|
126
|
126
|
|
127
|
127
|
// 校验用户是否已经预选房源
|
|
@@ -186,7 +186,7 @@ public class TaPreselectionRecordServiceImpl extends ServiceImpl<TaPreselectionR
|
186
|
186
|
|
187
|
187
|
@Override
|
188
|
188
|
@Transactional
|
189
|
|
- public ResponseBean taPreselectionRecordCancel(String personId, String houseId) {
|
|
189
|
+ public ResponseBean taPreselectionRecordCancel(String personId, Integer houseId) {
|
190
|
190
|
logger.info("taPreselectionRecordCancel 接收参数:personId:{},houseId:{}", personId, houseId);
|
191
|
191
|
|
192
|
192
|
ResponseBean responseBean = new ResponseBean<>();
|
|
@@ -255,7 +255,7 @@ public class TaPreselectionRecordServiceImpl extends ServiceImpl<TaPreselectionR
|
255
|
255
|
* @param failReason 失败原因
|
256
|
256
|
* @param isSuccess 是否成功 true是(只有成功才发送短信)
|
257
|
257
|
*/
|
258
|
|
- public void sendSubscribeMsg(String houseId, String personId, String checkType, String result, String failReason, Boolean isSuccess) {
|
|
258
|
+ public void sendSubscribeMsg(Integer houseId, String personId, String checkType, String result, String failReason, Boolean isSuccess) {
|
259
|
259
|
logger.info("sendSubscribeMsg 接收参数:houseId:{},checkType:{},result:{},failReason:{}",
|
260
|
260
|
houseId, checkType, result, failReason);
|
261
|
261
|
|