|
@@ -244,7 +244,7 @@ public class StatisticalServiceImpl implements IStatisticalService {
|
244
|
244
|
|
245
|
245
|
|
246
|
246
|
@Override
|
247
|
|
- public ResponseBean selectUserResource(LocalDate startDate, LocalDate endDate, String registeredType) {
|
|
247
|
+ public ResponseBean selectUserResource(LocalDate startDate, LocalDate endDate) {
|
248
|
248
|
ResponseBean responseBean = new ResponseBean();
|
249
|
249
|
// 用户来源 柱状
|
250
|
250
|
List<Map<String, Object>> mapList = taPersonMapper.selectUserSourceColumnar(CommConstant.PERSON_REALTY_CONSULTANT, startDate, endDate);
|
|
@@ -260,7 +260,7 @@ public class StatisticalServiceImpl implements IStatisticalService {
|
260
|
260
|
map.put("person_null", person_null);
|
261
|
261
|
|
262
|
262
|
// 用户来源 数据列表
|
263
|
|
- List<Map<String, Object>> selectUserSourceData = taPersonMapper.selectUserSourceData(CommConstant.PERSON_ESTATE_AGENT, startDate, endDate, registeredType);
|
|
263
|
+ List<Map<String, Object>> selectUserSourceData = taPersonMapper.selectUserSourceData(CommConstant.PERSON_ESTATE_AGENT, startDate, endDate);
|
264
|
264
|
|
265
|
265
|
Map<String, Object> result = new HashMap<>();
|
266
|
266
|
result.put("columnar", mapList);
|