|  |  |  | 
|---|
|  |  |  | return resultMap; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Override | 
|---|
|  |  |  | public List<MonitorPoint> getMonitorPointsByOrganizationId(Integer organizationId) { | 
|---|
|  |  |  | QueryWrapper<MonitorPoint> monitorPointQueryWrapper = new QueryWrapper<>(); | 
|---|
|  |  |  | MonitorPoint monitorPoint = new MonitorPoint(); | 
|---|
|  |  |  | monitorPoint.setOrganizationId(organizationId); | 
|---|
|  |  |  | monitorPoint.setIsDelete(Constants.NOT_DELETE); | 
|---|
|  |  |  | monitorPointQueryWrapper.setEntity(monitorPoint); | 
|---|
|  |  |  | List<MonitorPoint> monitorPoints = monitorPointMapper.selectList(monitorPointQueryWrapper); | 
|---|
|  |  |  | return monitorPoints; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * @Description: 获取地区名 | 
|---|
|  |  |  | * @Param: [areaArr, menu]menuMap:key为menuid,value为menu | 
|---|