/// <summary>
        /// 四舍五入
        /// </summary>
        /// <param name="str"></param>
        /// <returns></returns>
        public int sishewuru(string str)
        {
            if (str.Length > 9)
            {
                str = str.Substring(0, 8);
            }

            return Convert.ToInt32(Math.Round(Convert.ToDouble(str), 1, MidpointRounding.AwayFromZero));
        }