|  | @ -32,6 +32,7 @@ import com.epmet.opendata.service.BaseDisputeProcessService; | 
			
		
	
		
		
			
				
					|  |  | import com.epmet.opendata.service.ExDeptService; |  |  | import com.epmet.opendata.service.ExDeptService; | 
			
		
	
		
		
			
				
					|  |  | import com.epmet.opendata.service.ExUserService; |  |  | import com.epmet.opendata.service.ExUserService; | 
			
		
	
		
		
			
				
					|  |  | import org.apache.commons.collections4.CollectionUtils; |  |  | import org.apache.commons.collections4.CollectionUtils; | 
			
		
	
		
		
			
				
					|  |  |  |  |  | import org.apache.commons.lang3.StringUtils; | 
			
		
	
		
		
			
				
					|  |  | import org.springframework.stereotype.Service; |  |  | import org.springframework.stereotype.Service; | 
			
		
	
		
		
			
				
					|  |  | 
 |  |  | 
 | 
			
		
	
		
		
			
				
					|  |  | import javax.annotation.Resource; |  |  | import javax.annotation.Resource; | 
			
		
	
	
		
		
			
				
					|  | @ -100,7 +101,12 @@ public class BaseDisputeProcessServiceImpl extends BaseServiceImpl<BaseDisputePr | 
			
		
	
		
		
			
				
					|  |  |                 entity.setEventName(item.getEventName()); |  |  |                 entity.setEventName(item.getEventName()); | 
			
		
	
		
		
			
				
					|  |  |                 entity.setHappenDate(item.getHappenDate()); |  |  |                 entity.setHappenDate(item.getHappenDate()); | 
			
		
	
		
		
			
				
					|  |  |                 entity.setHappenPlace(item.getHappenPlace()); |  |  |                 entity.setHappenPlace(item.getHappenPlace()); | 
			
		
	
		
		
			
				
					
					|  |  |                 entity.setEventDescription(item.getEventDescription()); |  |  |                 String eventDescription = item.getEventDescription(); | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					|  |  |  |  |  |                 //如果不为空 长度控制1000以内
 | 
			
		
	
		
		
			
				
					|  |  |  |  |  |                 if (StringUtils.isNotBlank(eventDescription) && eventDescription.length() > NumConstant.ONE_THOUSAND){ | 
			
		
	
		
		
			
				
					|  |  |  |  |  |                     eventDescription = eventDescription.substring(NumConstant.ZERO,NumConstant.ONE_THOUSAND); | 
			
		
	
		
		
			
				
					|  |  |  |  |  |                 } | 
			
		
	
		
		
			
				
					|  |  |  |  |  |                 entity.setEventDescription(eventDescription); | 
			
		
	
		
		
			
				
					|  |  |                 entity.setLng(null == item.getLng()?null:item.getLng().toPlainString()); |  |  |                 entity.setLng(null == item.getLng()?null:item.getLng().toPlainString()); | 
			
		
	
		
		
			
				
					|  |  |                 entity.setLat(null == item.getLat()?null:item.getLat().toPlainString()); |  |  |                 entity.setLat(null == item.getLat()?null:item.getLat().toPlainString()); | 
			
		
	
		
		
			
				
					|  |  |                 entity.setCreateBy(null == userMap.get(item.getReporterId())?null:String.valueOf(userMap.get(item.getReporterId()))); |  |  |                 entity.setCreateBy(null == userMap.get(item.getReporterId())?null:String.valueOf(userMap.get(item.getReporterId()))); | 
			
		
	
	
		
		
			
				
					|  | 
 |