/// <summary> /// 获取行业信息列表 /// </summary> /// <returns>返回行业信息列表</returns> public List <ManagementCenter.Model.Profession> GetListProfessionArray() { try { Profession Profession = new Profession(); return(Profession.GetListArray(string.Empty)); } catch (Exception ex) { string errCode = "GL-8245"; string errMsg = "获取行业信息列表失败"; VTException vte = new VTException(errCode, errMsg, ex); LogHelper.WriteError(vte.ToString(), vte.InnerException); return(null); } }