|  |  | @ -29,7 +29,6 @@ import com.epmet.commons.tools.exception.EpmetException; | 
			
		
	
		
			
				
					|  |  |  | import com.epmet.commons.tools.security.dto.TokenDto; | 
			
		
	
		
			
				
					|  |  |  | import com.epmet.commons.tools.utils.Result; | 
			
		
	
		
			
				
					|  |  |  | import com.epmet.commons.tools.validator.ValidatorUtils; | 
			
		
	
		
			
				
					|  |  |  | import com.epmet.constant.ImportErrorMsgConstants; | 
			
		
	
		
			
				
					|  |  |  | import com.epmet.constants.ImportTaskConstants; | 
			
		
	
		
			
				
					|  |  |  | import com.epmet.dao.IcBuildingUnitDao; | 
			
		
	
		
			
				
					|  |  |  | import com.epmet.dto.BuildingTreeLevelDTO; | 
			
		
	
	
		
			
				
					|  |  | @ -42,8 +41,6 @@ import com.epmet.entity.IcBuildingUnitEntity; | 
			
		
	
		
			
				
					|  |  |  | import com.epmet.excel.IcBuildingExcel; | 
			
		
	
		
			
				
					|  |  |  | import com.epmet.feign.EpmetCommonServiceOpenFeignClient; | 
			
		
	
		
			
				
					|  |  |  | import com.epmet.service.BuildingService; | 
			
		
	
		
			
				
					|  |  |  | import com.epmet.service.IcBuildingService; | 
			
		
	
		
			
				
					|  |  |  | import com.epmet.service.NeighborHoodService; | 
			
		
	
		
			
				
					|  |  |  | import com.epmet.util.ExcelPoiUtils; | 
			
		
	
		
			
				
					|  |  |  | import lombok.extern.slf4j.Slf4j; | 
			
		
	
		
			
				
					|  |  |  | import org.springframework.beans.factory.annotation.Autowired; | 
			
		
	
	
		
			
				
					|  |  | @ -118,7 +115,7 @@ public class BuildingController { | 
			
		
	
		
			
				
					|  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |     @PostMapping("treelist") | 
			
		
	
		
			
				
					|  |  |  |     public Result treeList(@LoginUser TokenDto tokenDTO){ | 
			
		
	
		
			
				
					|  |  |  |         List<BuildingTreeLevelDTO> buildingTreeLevelDTOS =buildingService.treeList(tokenDTO.getUserId()); | 
			
		
	
		
			
				
					|  |  |  |         List<BuildingTreeLevelDTO> buildingTreeLevelDTOS =buildingService.treeList(tokenDTO.getCustomerId(), tokenDTO.getUserId()); | 
			
		
	
		
			
				
					|  |  |  |         return new Result().ok(buildingTreeLevelDTOS); | 
			
		
	
		
			
				
					|  |  |  |     } | 
			
		
	
		
			
				
					|  |  |  |     /** | 
			
		
	
	
		
			
				
					|  |  | 
 |