|  |  | @ -18,7 +18,6 @@ | 
			
		
	
		
			
				
					|  |  |  | package com.epmet.service.impl; | 
			
		
	
		
			
				
					|  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  | import com.alibaba.fastjson.JSON; | 
			
		
	
		
			
				
					|  |  |  | import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; | 
			
		
	
		
			
				
					|  |  |  | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; | 
			
		
	
		
			
				
					|  |  |  | import com.baomidou.mybatisplus.core.metadata.IPage; | 
			
		
	
		
			
				
					|  |  |  | import com.epmet.commons.mybatis.service.impl.BaseServiceImpl; | 
			
		
	
	
		
			
				
					|  |  | @ -59,6 +58,7 @@ import com.epmet.resi.mine.dto.from.MyPartProjectsFormDTO; | 
			
		
	
		
			
				
					|  |  |  | import com.epmet.send.SendMqMsgUtil; | 
			
		
	
		
			
				
					|  |  |  | import com.epmet.service.*; | 
			
		
	
		
			
				
					|  |  |  | import com.github.pagehelper.PageHelper; | 
			
		
	
		
			
				
					|  |  |  | import com.github.pagehelper.PageInfo; | 
			
		
	
		
			
				
					|  |  |  | import com.google.common.base.Joiner; | 
			
		
	
		
			
				
					|  |  |  | import com.google.gson.Gson; | 
			
		
	
		
			
				
					|  |  |  | import com.google.gson.GsonBuilder; | 
			
		
	
	
		
			
				
					|  |  | @ -3079,11 +3079,7 @@ public class ProjectServiceImpl extends BaseServiceImpl<ProjectDao, ProjectEntit | 
			
		
	
		
			
				
					|  |  |  | 			pageNo = pageNo + NumConstant.ONE; | 
			
		
	
		
			
				
					|  |  |  | 			PageHelper.startPage(pageNo, PageSize); | 
			
		
	
		
			
				
					|  |  |  | 			//获取项目列表
 | 
			
		
	
		
			
				
					|  |  |  | 			LambdaQueryWrapper<ProjectEntity> wrapper = new LambdaQueryWrapper<>(); | 
			
		
	
		
			
				
					|  |  |  | 			wrapper.eq(StringUtils.isNotBlank(dto.getCustomerId()), ProjectEntity::getCustomerId, dto.getCustomerId()); | 
			
		
	
		
			
				
					|  |  |  | 			wrapper.eq(StringUtils.isNotBlank(dto.getId()), ProjectEntity::getId, dto.getId()); | 
			
		
	
		
			
				
					|  |  |  | 			wrapper.eq(StringUtils.isNotBlank(dto.getStatus()), ProjectEntity::getStatus, dto.getStatus()); | 
			
		
	
		
			
				
					|  |  |  | 			list = baseDao.selectList(wrapper); | 
			
		
	
		
			
				
					|  |  |  | 			list = baseDao.getProjectListForWorkMinutes(dto.getCustomerId(), dto.getId(), dto.getStatus());; | 
			
		
	
		
			
				
					|  |  |  | 			if (CollectionUtils.isNotEmpty(list)) { | 
			
		
	
		
			
				
					|  |  |  | 				//提取项目ID,创建时间,更新时间
 | 
			
		
	
		
			
				
					|  |  |  | 				List<TimestampIntervalFormDTO> intervalList = list.stream().map(item -> { | 
			
		
	
	
		
			
				
					|  |  | 
 |