using BLL; using System; using System.Linq; using System.Web.Http; namespace WebAPI.Controllers { /// /// 基础数据信息 /// public class BaseInfoController : ApiController { #region 根据groupType获取检查类型 /// /// 根据groupType获取检查类型 /// /// /// public Model.ResponeData getHazardRegisterTypes(string type) { var responeData = new Model.ResponeData(); try { responeData.data = BLL.APIBaseInfoService.getHazardRegisterTypes(type); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #region 获取项目列表 /// /// 获取项目列表 /// /// public Model.ResponeData getProjectList() { var responeData = new Model.ResponeData(); try { responeData.data = BLL.APIBaseInfoService.getProjectList(); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #region 根据项目号获取项目信息 /// /// 根据项目号获取项目信息 /// /// /// public Model.ResponeData getProjectByCode(string projectCode) { var responeData = new Model.ResponeData(); try { responeData.data = BLL.APIBaseInfoService.getProjectByCode(projectCode); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #region 根据项目名称获取项目信息 /// /// 根据项目名称获取项目信息 /// /// /// public Model.ResponeData getProjectByName(string projectName) { var responeData = new Model.ResponeData(); try { responeData.data = BLL.APIBaseInfoService.getProjectByName(projectName); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #region 根据projectId获取单位工程 /// /// 根据projectId获取单位工程 /// /// /// public Model.ResponeData getProjectWorkArea(string projectId) { var responeData = new Model.ResponeData(); try { responeData.data = BLL.APIBaseInfoService.getProjectWorkArea(projectId); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } /// /// 根据项目,单位Id获取单位工程 /// /// /// /// public Model.ResponeData GetProjecUnitWorkByUnitId(string projectId, string unitId) { var responeData = new Model.ResponeData(); try { responeData.data = BLL.APIBaseInfoService.GetProjecUnitWorkByUnitId(projectId, unitId); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #region 获取焊接基础信息 /// /// 获取材质列表 /// /// public Model.ResponeData GetMaterial() { var responeData = new Model.ResponeData(); try { responeData.data = BLL.APIBaseInfoService.GetMaterial(); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } /// /// 获取探伤类型 /// /// public Model.ResponeData getDetectionType() { var responeData = new Model.ResponeData(); try { responeData.data = BLL.APIBaseInfoService.getDetectionType(); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } /// /// 获取探伤比例 /// /// public Model.ResponeData getDetectionRate() { var responeData = new Model.ResponeData(); try { responeData.data = BLL.APIBaseInfoService.getDetectionRate(); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #region 获取专项检查处理措施 /// /// 获取专项检查处理措施 /// /// public Model.ResponeData getHandleStep() { var responeData = new Model.ResponeData(); try { responeData.data = APIBaseInfoService.getSysConst(ConstValue.Group_HandleStep); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #region 获项目图片 /// /// 获项目图片 /// /// /// /// public Model.ResponeData getProjectPictureByProjectId(string projectId, int pageIndex) { var responeData = new Model.ResponeData(); try { var getDataList = APIBaseInfoService.getProjectPictureByProjectId(projectId, null, null); int pageCount = getDataList.Count(); if (pageCount > 0 && pageIndex > 0) { getDataList = getDataList.OrderByDescending(u => u.BaseInfoCode).Skip(Funs.PageSize * (pageIndex - 1)).Take(Funs.PageSize).ToList(); } responeData.data = new { pageCount, getDataList }; } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } /// /// 根据类型获项目图片 /// /// /// /// public Model.ResponeData getProjectPictureByProjectIdType(string projectId, string type) { var responeData = new Model.ResponeData(); try { responeData.data = APIBaseInfoService.getProjectPictureByProjectId(projectId, type, null); ; } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } /// /// 根据类型获项目图片 /// /// /// /// /// /// public Model.ResponeData getProjectPictureByProjectIdType(string projectId, string type, string strParam, int pageIndex) { var responeData = new Model.ResponeData(); try { var getDataList = APIBaseInfoService.getProjectPictureByProjectId(projectId, type, strParam); int pageCount = getDataList.Count(); if (pageCount > 0 && pageIndex > 0) { getDataList = getDataList.OrderByDescending(u => u.BaseInfoCode).Skip(Funs.PageSize * (pageIndex - 1)).Take(Funs.PageSize).ToList(); } responeData.data = new { pageCount, getDataList }; } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } /// /// 获项目图片 /// /// public Model.ResponeData getProjectPicture() { var responeData = new Model.ResponeData(); try { Model.SGGLDB db = new Model.SGGLDB(Funs.ConnString); var getLists = (from x in db.InformationProject_Picture join y in db.AttachFile on x.PictureId equals y.ToKeyId where x.States == Const.State_2 && y.AttachUrl != null orderby x.UploadDate descending select new Model.BaseInfoItem { BaseInfoId = x.PictureId, BaseInfoName = x.Title, ImageUrl = y.AttachUrl.Replace('\\', '/') }).Take(5).ToList(); responeData.data = getLists; } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #region 保存项目图片信息 /// /// 保存项目图片信息 /// /// 图片信息 /// [HttpPost] public Model.ResponeData SaveProjectPicture([FromBody] Model.PictureItem picture) { var responeData = new Model.ResponeData(); try { APIBaseInfoService.SaveProjectPicture(picture); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #endregion #region 获取项目地图信息 /// /// 获取项目地图信息 /// /// /// 1总平面布置图,2区域平面图,3三维模型图 /// public Model.ResponeData getProjectMapByProjectId(string projectId, string type) { var responeData = new Model.ResponeData(); try { responeData.data = APIBaseInfoService.getProjectMapByProjectId(projectId, type); ; } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #region 保存项目地图信息 /// /// 保存项目地图信息 /// /// 地图信息 /// [HttpPost] public Model.ResponeData SaveProjectMap([FromBody] Model.PictureItem projectMap) { var responeData = new Model.ResponeData(); try { APIBaseInfoService.SaveProjectMap(projectMap); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #endregion #region 获取通知通告 /// /// 获取头条通知 /// /// public Model.ResponeData getTopNotices() { var responeData = new Model.ResponeData(); try { Model.SGGLDB db = new Model.SGGLDB(Funs.ConnString); string returnValue = string.Empty; var notice = (from x in db.InformationProject_Notice where x.IsRelease == true orderby x.ReleaseDate descending select x).FirstOrDefault(); if (notice != null) { returnValue = notice.NoticeTitle; } responeData.data = new { returnValue }; } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } /// /// 根据项目ID通知通告 /// /// /// /// public Model.ResponeData getNotices(string projectId, int pageIndex) { var responeData = new Model.ResponeData(); try { var noticeList = APIBaseInfoService.getNoticesList(projectId, null); int pageCount = noticeList.Count(); if (pageCount > 0 && pageIndex > 0) { noticeList = noticeList.OrderByDescending(u => u.ReleaseDate).Skip(Funs.PageSize * (pageIndex - 1)).Take(Funs.PageSize).ToList(); } responeData.data = new { pageCount, noticeList }; } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } /// /// 根据项目ID通知通告 /// /// 项目ID /// 查询条件 /// /// public Model.ResponeData getNoticesQuery(string projectId, string strParam, int pageIndex) { var responeData = new Model.ResponeData(); try { var noticeList = APIBaseInfoService.getNoticesList(projectId, strParam); int pageCount = noticeList.Count(); if (pageCount > 0 && pageIndex > 0) { noticeList = noticeList.OrderByDescending(u => u.ReleaseDate).Skip(Funs.PageSize * (pageIndex - 1)).Take(Funs.PageSize).ToList(); } responeData.data = new { pageCount, noticeList }; } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } /// /// 根据项目ID通知通告 /// /// 项目ID /// 用户ID /// 查询条件 /// /// public Model.ResponeData getNoticesQuery(string projectId, string userId, string strParam, int pageIndex) { var responeData = new Model.ResponeData(); try { var noticeList = APIBaseInfoService.getNoticesList(projectId, userId, strParam); int pageCount = noticeList.Count(); if (pageCount > 0 && pageIndex > 0) { noticeList = noticeList.Skip(Funs.PageSize * (pageIndex - 1)).Take(Funs.PageSize).ToList(); } responeData.data = new { pageCount, noticeList }; } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } /// /// 根据noticeId获取通知通告详细 /// /// /// public Model.ResponeData getNoticesByNoticeId(string noticeId) { var responeData = new Model.ResponeData(); try { responeData.data = APIBaseInfoService.getNoticesByNoticeId(noticeId); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #region 获取岗位信息 /// /// 获取岗位信息 /// /// public Model.ResponeData getWorkPost() { var responeData = new Model.ResponeData(); try { responeData.data = APIBaseInfoService.getWorkPost(null); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; ErrLogInfo.WriteLog(ex, "WX接口-获取岗位信息", "BaseInfoController.getWorkPost"); } return responeData; } /// /// 获取岗位信息 /// /// public Model.ResponeData getWorkPostQuery(string strParam) { var responeData = new Model.ResponeData(); try { responeData.data = APIBaseInfoService.getWorkPost(strParam); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; ErrLogInfo.WriteLog(ex, "WX接口-获取岗位信息", "BaseInfoController.getWorkPostQuery"); } return responeData; } /// /// 获取岗位信息 /// /// public Model.ResponeData getWorkPostQuery(string projectId, string strParam) { var responeData = new Model.ResponeData(); try { responeData.data = APIBaseInfoService.getProjectWorkPost(projectId, strParam); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #region 获取法律法规类型 /// /// 获取法律法规类型 /// /// public Model.ResponeData getLawsRegulationsType() { var responeData = new Model.ResponeData(); try { responeData.data = APIBaseInfoService.getLawsRegulationsType(); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #region 获取标准规范类型 /// /// 获取标准规范类型 /// /// public Model.ResponeData getHSSEStandardListType() { var responeData = new Model.ResponeData(); try { responeData.data = APIBaseInfoService.getHSSEStandardListType(); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #region 获取规章制度类型 /// /// 获取规章制度类型 /// /// public Model.ResponeData getRulesRegulationsType() { var responeData = new Model.ResponeData(); try { responeData.data = APIBaseInfoService.getRulesRegulationsType(); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #region 获取管理规定类型 /// /// 获取管理规定类型 /// /// public Model.ResponeData getManageRuleType() { var responeData = new Model.ResponeData(); try { responeData.data = APIBaseInfoService.getManageRuleType(); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #region 获取培训类别 /// /// 获取培训类别 /// /// public Model.ResponeData getTrainType() { var responeData = new Model.ResponeData(); try { responeData.data = APIBaseInfoService.getTrainType(); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #region 获取培训级别 /// /// 获取培训级别 /// /// public Model.ResponeData getTrainLevel() { var responeData = new Model.ResponeData(); try { responeData.data = APIBaseInfoService.getTrainLevel(); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #region 获取考试规则信息 /// /// 获取考试规则信息 /// /// public Model.ResponeData getSysTestRule() { var responeData = new Model.ResponeData(); try { var getTestRule = new Model.SGGLDB(Funs.ConnString).Sys_TestRule.FirstOrDefault(); responeData.data = new { getTestRule }; } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #region 获取机具类型 /// /// 获取机具类型 /// /// 是否特殊 /// public Model.ResponeData getSpecialEquipment(bool isSpecial) { var responeData = new Model.ResponeData(); try { responeData.data = APIBaseInfoService.getSpecialEquipment(isSpecial); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #region 获取施工方案审核类型 /// /// 获取施工方案审核类型 /// /// public Model.ResponeData getInvestigateType() { var responeData = new Model.ResponeData(); try { responeData.data = APIBaseInfoService.getSysConst(ConstValue.Group_InvestigateType); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #region 获取施工方案类别 /// /// 获取施工方案类别 /// /// public Model.ResponeData getSolutinType() { var responeData = new Model.ResponeData(); try { responeData.data = APIBaseInfoService.getSysConst(ConstValue.Group_CNProfessional); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #region 获取工作阶段 /// /// 获取施工方案类别 /// /// public Model.ResponeData getWorkStage() { var responeData = new Model.ResponeData(); try { responeData.data = APIBaseInfoService.getWorkStage(); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #region 获取奖励类型 /// /// 获取奖励类型 /// /// public Model.ResponeData getRewardType() { var responeData = new Model.ResponeData(); try { responeData.data = APIBaseInfoService.getSysConst(ConstValue.Group_RewardType); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #region 获取项目班组 /// /// 获取项目班组 /// /// /// /// public Model.ResponeData getTeamGroup(string projectId, string unitId) { var responeData = new Model.ResponeData(); try { responeData.data = APIBaseInfoService.getTeamGroup(projectId, unitId); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } /// /// 获取项目班组人数 /// /// /// public Model.ResponeData getTeamGroupPersonNum(string teamGroupId) { var responeData = new Model.ResponeData(); try { responeData.data = TeamGroupService.getTeamGroupPersonNum(teamGroupId); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } /// /// 获取项目班组人数 /// /// /// public Model.ResponeData getTeamGroupLeader(string teamGroupId) { var responeData = new Model.ResponeData(); try { responeData.data = APIBaseInfoService.getTeamGroupLeader(teamGroupId); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #region 获取项目区域 /// /// 获取项目区域 /// /// /// /// public Model.ResponeData getWorkArea(string projectId, string unitId) { var responeData = new Model.ResponeData(); try { responeData.data = APIBaseInfoService.getWorkArea(projectId, unitId); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #region 获取作业票类型 /// /// 获取作业票类型 /// /// public Model.ResponeData getLicenseType() { var responeData = new Model.ResponeData(); try { responeData.data = APIBaseInfoService.getSysConst(ConstValue.Group_LicenseType); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #region 获取作业票类型(定稿) /// /// 获取作业票类型 /// /// public Model.ResponeData getLicenseType2() { var responeData = new Model.ResponeData(); try { responeData.data = APIBaseInfoService.getBase_LicenseType(); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #region 获取作业票-安全措施 /// /// 获取作业票-安全措施 /// /// 作业票类型 /// public Model.ResponeData getSafetyMeasures(string licenseType) { var responeData = new Model.ResponeData(); try { responeData.data = APIBaseInfoService.getSafetyMeasures(licenseType); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #region 获取项目图片分类 /// /// 获取项目图片分类 /// /// public Model.ResponeData getPictureType() { var responeData = new Model.ResponeData(); try { responeData.data = APIBaseInfoService.getPictureType(null); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } /// /// 获取项目图片分类 /// /// public Model.ResponeData getPictureType(string menuType) { var responeData = new Model.ResponeData(); try { responeData.data = APIBaseInfoService.getPictureType(menuType); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #region 获取标牌类型 /// /// 获取标牌类型 /// /// public Model.ResponeData getSignType() { var responeData = new Model.ResponeData(); try { responeData.data = APIBaseInfoService.getSysConst(ConstValue.Group_SignType); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #region 获取事故类型 -事故登记 /// /// 获取事故类型-事故登记 /// /// public Model.ResponeData getAccidentReportRegistration() { var responeData = new Model.ResponeData(); try { responeData.data = APIBaseInfoService.getSysConst(ConstValue.Group_AccidentReportRegistration); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #region 获取岗位类型 /// /// 获取岗位类型 /// /// public Model.ResponeData getPostType() { var responeData = new Model.ResponeData(); try { responeData.data = APIBaseInfoService.getSysConst(ConstValue.Group_PostType); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #region 获取特岗证书 /// /// 获取特岗证书 /// /// public Model.ResponeData getCertificate() { var responeData = new Model.ResponeData(); try { responeData.data = APIBaseInfoService.getCertificate(); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #region 获取部门信息 /// /// 获取部门信息 /// /// public Model.ResponeData getDepart() { var responeData = new Model.ResponeData(); try { responeData.data = APIBaseInfoService.getDepart(); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #region 获取应急预案类型 /// /// 获取应急预案类型 /// /// public Model.ResponeData getEmergencyType() { var responeData = new Model.ResponeData(); try { responeData.data = APIBaseInfoService.getEmergencyType(); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #region 获取国家基础信息 /// /// 获取应急预案类型 /// /// public Model.ResponeData getCountry() { var responeData = new Model.ResponeData(); try { responeData.data = APIBaseInfoService.getCountry(); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #region 获取省份基础信息 /// /// 获取应急预案类型 /// /// public Model.ResponeData getProvinceByCountry(string countryId) { var responeData = new Model.ResponeData(); try { responeData.data = APIBaseInfoService.getProvinceByCountry(countryId); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion #region 获取实名制数据字典信息 /// /// 获取实名制数据字典信息 /// /// public Model.ResponeData getBasicDataByDictTypeCode(string dictTypeCode) { var responeData = new Model.ResponeData(); try { responeData.data = APIBaseInfoService.getBasicDataByDictTypeCode(dictTypeCode); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } #endregion } }