87cc3e8f8b96bffd92001aa134ac4735de1d1962.svn-base 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. package com.sinosoft.em.event.dao;
  2. import java.util.List;
  3. import java.util.Map;
  4. import javax.ws.rs.POST;
  5. import javax.ws.rs.Path;
  6. import javax.ws.rs.ProduceMime;
  7. import com.persistence.service.JDBCHelper;
  8. import com.persistence.service.exception.PersistenceException;
  9. import com.persistence.service.exception.TransformTypeException;
  10. /**
  11. * 突发事件管理dao接口
  12. * @author zhuanghuiliang
  13. * @date 2015-10-28
  14. */
  15. public interface EventDaoAble{
  16. /**
  17. * 根据上次预警/响应单号查询上次预警/响应信息
  18. *
  19. * @param prevId 上次预警编号
  20. * @return
  21. */
  22. String getEventInfoByPrevId(String prevId,String fd_id,String comp_id) throws PersistenceException ;
  23. /**
  24. * 根据预警/响应单号查询报告信息
  25. *
  26. * @param fd_id 预警/响应编号
  27. * @return
  28. */
  29. String getReportInfoById(String fd_id) throws PersistenceException;
  30. /**
  31. * 根据预警/响应单号查询报表信息
  32. *
  33. * @param fd_id 预警/响应编号
  34. * @return
  35. */
  36. String getBaobiaoInfoById(String fd_id) throws PersistenceException;
  37. /**
  38. * 查询上下级单位当前预警/响应信息
  39. *
  40. * @param deptId 当前登录用户所属单位id
  41. * @return
  42. */
  43. String getParentAndChildrenInfo(String deptId)throws PersistenceException;
  44. String getParentAndChildrenInfo(String deptId,String planTypeId)throws PersistenceException;
  45. /**
  46. * 查询上下级单位id
  47. *
  48. * @param deptId 当前登录用户所属单位id
  49. * @return
  50. */
  51. List<String[]> getDeptIds(String deptId) throws PersistenceException;
  52. /**
  53. * 根据发布部门查询通知单信息
  54. *
  55. * @param con 发布部门id
  56. * @return
  57. */
  58. List<String[]> getNoticeByDeptIds(String con) throws PersistenceException;
  59. /**
  60. * 根据事件id查询已绑定的通知单id
  61. *
  62. * @param fd_id 事件id
  63. * @return
  64. */
  65. List<String[]> getNoticeByEventId(String fd_id) throws PersistenceException;
  66. /**
  67. * 保存事件绑定信息
  68. *
  69. * @param fd_id 事件id
  70. * @param noticeIds 预警或响应通知单id,以逗号分隔
  71. * @return
  72. */
  73. String saveBindInfo(String fd_id,String noticeIds,JDBCHelper jdbc) throws TransformTypeException, PersistenceException;
  74. /**
  75. * 根据事件id查询已绑定的通知单信息
  76. *
  77. * @param fd_id 事件id
  78. * @return
  79. */
  80. String getNoticeInfoByEventId(String fd_id) throws PersistenceException;
  81. /**
  82. * 根据事件id查询已绑定的通知单信息
  83. *
  84. * @param mainids 事件id
  85. * @param jdbc
  86. * @return
  87. */
  88. String deeteEvent(String mainids,JDBCHelper jdbc) throws PersistenceException;
  89. /**
  90. * 查询值班信息
  91. * @param deptId 单位id
  92. * @return
  93. */
  94. String getDutyInfo(String deptId) throws PersistenceException;
  95. /**
  96. * 查询政府通知单信息
  97. * @param deptId 单位id
  98. * @return
  99. */
  100. String getGovInfo(String deptId) throws PersistenceException;
  101. //String getGovInfo(String deptId,String planTypeId369) throws PersistenceException;
  102. String getGovInfo(String deptId,String planTypeId369,String EventId) throws PersistenceException;
  103. /**
  104. * 查询报表信息
  105. * @param warningId 通知单id,deptId 单位id
  106. * @return
  107. */
  108. String getBaobiaoInfo(String warningId,String deptId) throws PersistenceException;
  109. /**
  110. * 查询报告信息
  111. * @param warningId 通知单id,deptId 单位id
  112. * @return
  113. */
  114. String getBaogaoInfo(String warningId,String deptId,String is_alert) throws PersistenceException;
  115. /**
  116. * 查询本单位当前处于发布状态的预警和响应通知单
  117. * @param deptId 单位id
  118. * @return
  119. */
  120. String getInfoByUnit(String deptId)throws PersistenceException;
  121. /**
  122. * 查询值班信息按照日期
  123. *
  124. * @param deptId 单位id
  125. * @param d 日期
  126. * @return
  127. */
  128. String getDutyInfoByDate(String deptId,String d)throws PersistenceException;
  129. /**
  130. * 查询预案启动条件
  131. *
  132. * @param planId 预案id
  133. * @param gradeType 1突发事件 2预警 3响应 4应对措施
  134. * @return
  135. */
  136. String getStartCondition(String planId,String gradeType)throws PersistenceException;
  137. /**
  138. * 预警/响应信息接收中,解除上次预警/响应通知单
  139. *
  140. * @param objectid 通知单主键
  141. * @param classid
  142. * @return
  143. */
  144. void changeStatus(String objectid,String classid)throws PersistenceException;
  145. }