|  | @@ -501,6 +501,15 @@ func FeedStatisticsConversions(req interface{}) *model.FeedStatisticsConversions
 | 
	
		
			
				|  |  |  			if d, t := v["饲料转化率"]; t {
 | 
	
		
			
				|  |  |  				feedStatisticsList.FeedConversionRatio = d.(float64)
 | 
	
		
			
				|  |  |  			}
 | 
	
		
			
				|  |  | +			if d, t := v["配方模板"]; t {
 | 
	
		
			
				|  |  | +				feedStatisticsList.FeedFormulaName = d.(string)
 | 
	
		
			
				|  |  | +			}
 | 
	
		
			
				|  |  | +			if d, t := v["实际混料量"]; t {
 | 
	
		
			
				|  |  | +				feedStatisticsList.ActualMixedVolume = d.(string)
 | 
	
		
			
				|  |  | +			}
 | 
	
		
			
				|  |  | +			if d, t := v["撒料量"]; t {
 | 
	
		
			
				|  |  | +				feedStatisticsList.SprinkleVolume = d.(string)
 | 
	
		
			
				|  |  | +			}
 | 
	
		
			
				|  |  |  		}
 | 
	
		
			
				|  |  |  	}
 | 
	
		
			
				|  |  |  	return feedStatisticsList
 |