|
@@ -187,11 +187,17 @@ public class TaPreselectionRecordController extends BaseController {
|
187
|
187
|
/**
|
188
|
188
|
* 获取当前用户预选记录
|
189
|
189
|
*
|
190
|
|
- * @param pageNumber 页码
|
191
|
|
- * @param pageSize 分页大小
|
192
|
|
- * @param personId 用户ID
|
|
190
|
+ * @param buildingId
|
|
191
|
+ * @param salesBatchId
|
|
192
|
+ * @param apartmentId
|
|
193
|
+ * @param houseLockingStatus
|
|
194
|
+ * @param customerLocked
|
|
195
|
+ * @param pageNumber
|
|
196
|
+ * @param pageSize
|
|
197
|
+ * @param personId
|
|
198
|
+ * @param source 来源,raiseChoose 为认筹添加房源来源
|
|
199
|
+ * @param request
|
193
|
200
|
* @return
|
194
|
|
- * @author gushaoyong
|
195
|
201
|
*/
|
196
|
202
|
@RequestMapping(value = "/wx/listPreselectionRecord", method = RequestMethod.GET)
|
197
|
203
|
public ResponseBean listPreselectionRecord(@RequestParam(value = "buildingId", required = false) String buildingId,
|
|
@@ -202,11 +208,13 @@ public class TaPreselectionRecordController extends BaseController {
|
202
|
208
|
@RequestParam(value = "pageNumber", defaultValue = "1") Integer pageNumber,
|
203
|
209
|
@RequestParam(value = "pageSize", defaultValue = "10") Integer pageSize,
|
204
|
210
|
@RequestParam("personId") String personId,
|
|
211
|
+ @RequestParam("source") String source,
|
205
|
212
|
HttpServletRequest request) {
|
206
|
213
|
ResponseBean responseBean = new ResponseBean();
|
207
|
214
|
Integer orgId = getOrgId(request);
|
208
|
215
|
try {
|
209
|
|
- responseBean.addSuccess(iTaPreselectionRecordService.listPreselectionRecord(pageNumber, pageSize, orgId, personId, buildingId, salesBatchId, apartmentId, houseLockingStatus, customerLocked));
|
|
216
|
+ responseBean.addSuccess(iTaPreselectionRecordService.listPreselectionRecord(pageNumber, pageSize, orgId, personId, buildingId,
|
|
217
|
+ salesBatchId, apartmentId, houseLockingStatus, customerLocked, source));
|
210
|
218
|
} catch (Exception e) {
|
211
|
219
|
logger.error("listPreselectionRecord -=- {}", e);
|
212
|
220
|
responseBean.addError(e.getMessage());
|