public int ExecuteCommand(string cmd)
        {
            IKuaFuWorld kuaFuService = this.GetKuaFuService(false);

            if (null != kuaFuService)
            {
                try
                {
                    return(kuaFuService.ExecuteCommand(cmd));
                }
                catch (Exception ex)
                {
                    this.ResetKuaFuService();
                }
            }
            return(-11003);
        }