// private string CreateLower(HttpContext context) { try { SysLogBll.Create("组织单位", "获取组织单位树形数据", adminUser.AdminName); string OrgCode = context.Request.QueryString["OrgCode"]; return(dal.CreateLower(OrgCode)); } catch (Exception ex) { SystemErrorPlug.ErrorRecord("时间:[" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + "]类名:[" + this.GetType().Name + "],行号:[" + Component.GetLineNum().ToString() + "行],错误信息:[" + ex.Message + "]"); return(string.Empty); } }