|
|
|
|
228
|
|
228
|
|
229
|
// 注册数
|
229
|
// 注册数
|
230
|
Integer selectRegisteredCount = taPersonMapper.selectRegisteredCount(CommConstant.PERSON_REALTY_CONSULTANT);
|
230
|
Integer selectRegisteredCount = taPersonMapper.selectRegisteredCount(CommConstant.PERSON_REALTY_CONSULTANT);
|
231
|
- Map<String, Object> user = new HashMap<>();
|
|
|
232
|
- user.put("user_count", selectUserCount);
|
|
|
233
|
- user.put("registered_count", selectRegisteredCount);
|
|
|
234
|
- result.put("data_count", selectRegisteredCount);
|
|
|
|
|
231
|
+ Map<String, Object> userMap = new HashMap<>();
|
|
|
232
|
+ userMap.put("pvNum", selectUserCount);
|
|
|
233
|
+ userMap.put("registeredCount", selectRegisteredCount);
|
|
|
234
|
+ result.put("data_count", userMap);
|
235
|
break;
|
235
|
break;
|
236
|
}
|
236
|
}
|
237
|
|
237
|
|