|  | @@ -80,11 +80,11 @@ public class D10002Service extends D10002BaseModel implements ExecProcessFlow {
 | 
	
		
			
				|  |  |  		pipe.setEnid(enId);
 | 
	
		
			
				|  |  |  		pipe.setRoughCoe(Float.valueOf(roughCoe));
 | 
	
		
			
				|  |  |  		pipe.setSectionType(sectionType);
 | 
	
		
			
				|  |  | -		pipe.setSectionPara1(Float.valueOf(sectionPara1));
 | 
	
		
			
				|  |  | -		pipe.setSectionPara2(Float.valueOf(sectionPara2));
 | 
	
		
			
				|  |  | -		pipe.setSectionPara3(Float.valueOf(sectionPara3));
 | 
	
		
			
				|  |  | -		pipe.setSectionPara4(Float.valueOf(sectionPara4));
 | 
	
		
			
				|  |  | -		pipe.setSectionPara5(Float.valueOf(sectionPara5));
 | 
	
		
			
				|  |  | +		pipe.setSectionPara1(Float.valueOf(sectionPara1!=null?sectionPara1:"0"));
 | 
	
		
			
				|  |  | +		pipe.setSectionPara2(Float.valueOf(sectionPara2!=null?sectionPara2:"0"));
 | 
	
		
			
				|  |  | +		pipe.setSectionPara3(Float.valueOf(sectionPara3!=null?sectionPara3:"0"));
 | 
	
		
			
				|  |  | +		pipe.setSectionPara4(Float.valueOf(sectionPara4!=null?sectionPara4:"0"));
 | 
	
		
			
				|  |  | +		pipe.setSectionPara5(Float.valueOf(sectionPara5!=null?sectionPara5:"0"));
 | 
	
		
			
				|  |  |  		dPipeDao.insertSelective(pipe);
 | 
	
		
			
				|  |  |  	}
 | 
	
		
			
				|  |  |  
 |