/// <summary>
        /// 取对应关系列表数据  根据组织id取部门
        /// </summary>
        /// <returns>返回Json串</returns>
        public string GetBM()
        {
            string         OrgId          = System.Web.HttpContext.Current.Request.Params["OrgId"];//查询条件
            DataStoreParam dataStoreParam = this.GetDataStoreParam();
            var            result         = CorrespondenceSettingsService.LoadWithPageBM(dataStoreParam, OrgId);

            return(DataConverterHelper.EntityListToJson <OrganizeModel>(result.Results, (Int32)result.TotalItems));
        }