|
|
|
|
177
|
taRecommendCustomer.setRealtyManageType(params.getString("realtyManageType"));
|
177
|
taRecommendCustomer.setRealtyManageType(params.getString("realtyManageType"));
|
178
|
taRecommendCustomer.setDemandType(params.getString("demandType"));
|
178
|
taRecommendCustomer.setDemandType(params.getString("demandType"));
|
179
|
taRecommendCustomer.setPriceRange(params.getString("priceRange"));
|
179
|
taRecommendCustomer.setPriceRange(params.getString("priceRange"));
|
|
|
180
|
+ taRecommendCustomer.setEntryType(CommConstant.ENTRY_INPUT);
|
180
|
|
181
|
|
181
|
|
182
|
|
182
|
taRecommendCustomer.setReportDate(LocalDateTime.now());
|
183
|
taRecommendCustomer.setReportDate(LocalDateTime.now());
|
|
|
|
|
277
|
public IPage<TaRecommendCustomer>getCustomersIRecommended(int pageNumber, int pageSize,String customerId,String building){
|
278
|
public IPage<TaRecommendCustomer>getCustomersIRecommended(int pageNumber, int pageSize,String customerId,String building){
|
278
|
String personId = taRecommendCustomerMapper.getCustomerPersonId(customerId);
|
279
|
String personId = taRecommendCustomerMapper.getCustomerPersonId(customerId);
|
279
|
QueryWrapper<TaRecommendCustomer>queryWrapper = new QueryWrapper<>();
|
280
|
QueryWrapper<TaRecommendCustomer>queryWrapper = new QueryWrapper<>();
|
|
|
281
|
+
|
|
|
282
|
+
|
280
|
queryWrapper.eq("person_id",personId);
|
283
|
queryWrapper.eq("person_id",personId);
|
281
|
|
284
|
|
282
|
queryWrapper.gt("status", CommConstant.MESSAGE_UNREAD);
|
285
|
queryWrapper.gt("status", CommConstant.MESSAGE_UNREAD);
|