internal static string GetValue(int iKey)
        {
            t_GlobalPara mGlobal = bGlobal.GetModel(iKey);

            if (mGlobal == null)
            {
                throw new ArgumentException("无效参数!");
            }

            return(mGlobal.sValue);
        }
 internal static void Update(t_GlobalPara mGlobal)
 {
     bGlobal.Update(mGlobal);
 }