public static double Round(object data)
        {
            if (data == null || data == System.DBNull.Value)
            {
                return 0;
            }
            else
            {
                return Convert.ToDouble(Math.Round(Convert.ToDecimal(data), 2, MidpointRounding.AwayFromZero));
            }
        }
                    
                

                
            
        
浙公网安备 33010602011771号