PlanYearsService.java 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. package com.ozs.plan.service;
  2. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  3. import com.baomidou.mybatisplus.extension.service.IService;
  4. import com.ozs.common.core.domain.AjaxResult;
  5. import com.ozs.common.core.domain.model.LoginUser;
  6. import com.ozs.plan.doman.PlanYears;
  7. import com.ozs.plan.doman.vo.requestVo.PlanYearsStandardVo;
  8. import com.ozs.plan.doman.vo.responseVo.PlanQuarterResponseVo;
  9. import com.ozs.plan.doman.vo.responseVo.PlanYearsResponseVo;
  10. import java.util.List;
  11. import java.util.Map;
  12. /**
  13. * 系统访问日志情况信息 服务层
  14. *
  15. * @author bu
  16. */
  17. public interface PlanYearsService extends IService<PlanYears> {
  18. /**
  19. * 查询年度计划记录集合
  20. *
  21. * @param vo 年度计划请求对象
  22. * @return 年度计划记录集合
  23. */
  24. public Page selectPlanYearsList(PlanYearsStandardVo vo);
  25. /**
  26. * 查询年度计划记录集合--导出
  27. *
  28. * @param vo 年度计划请求对象
  29. * @return 年度计划记录集合
  30. */
  31. public List<PlanYearsResponseVo> selectPlanYearsListEXP(PlanYearsStandardVo vo);
  32. /**
  33. * 查询年度计划记录集合(审核单位)
  34. *
  35. * @param vo 年度计划请求对象
  36. * @return 年度计划记录集合
  37. */
  38. public Page selectPlanYearsExamineList(PlanYearsStandardVo vo);
  39. /**
  40. * 查询年度计划记录集合(审核单位--导出)
  41. *
  42. * @param vo 年度计划请求对象
  43. * @return 年度计划记录集合
  44. */
  45. public List<PlanYearsResponseVo> selectPlanYearsExamineListEXP(PlanYearsStandardVo vo);
  46. /**
  47. * 创建年度计划
  48. *
  49. * @param yearsStandardVo 年度计划请求对象
  50. */
  51. public AjaxResult insertPlanYears(PlanYearsStandardVo yearsStandardVo);
  52. /**
  53. * 批量删除年度计划
  54. *
  55. * @param planIds 需要删除的年度计划ID
  56. * @return 结果
  57. */
  58. public AjaxResult deletePlanYearsByIds(Long[] planIds);
  59. /**
  60. * 批量删除年度计划
  61. *
  62. * @param planYearId 需要删除的年度计划ID
  63. * @return 结果
  64. */
  65. public AjaxResult deletePlanYearsById(Long planYearId);
  66. /**
  67. * 根据id获取年度计划信息
  68. *
  69. * @param yearsStandardVo 年度计划请求对象
  70. * @return 结果
  71. */
  72. public AjaxResult view(PlanYearsStandardVo yearsStandardVo);
  73. /**
  74. * 修改年度计划
  75. *
  76. * @param yearsStandardVo 修改年度计划请求对象
  77. * @return 结果
  78. */
  79. public AjaxResult update(PlanYearsStandardVo yearsStandardVo);
  80. /**
  81. * 导入年度计划数据
  82. *
  83. * @return 结果
  84. */
  85. public String importPlanYears(List<PlanYearsStandardVo> planYears, boolean isUpdateSupport, LoginUser loginUser);
  86. /**
  87. * 提交年度计划
  88. *
  89. * @param yearsStandardVo 提交年度计划请求对象
  90. * @return 结果
  91. */
  92. public AjaxResult commit(PlanYearsStandardVo yearsStandardVo);
  93. /**
  94. * 审核年度计划
  95. *
  96. * @param yearsStandardVo 需要审核的年度计划
  97. * @return 结果
  98. */
  99. public AjaxResult reviewTo(PlanYearsStandardVo yearsStandardVo);
  100. /**
  101. * 审核年度计划退回
  102. *
  103. * @param yearsStandardVo 需要审核的年度计划
  104. * @return 结果
  105. */
  106. public AjaxResult reviewReturn(PlanYearsStandardVo yearsStandardVo);
  107. /**
  108. * 申请修改年度计划
  109. *
  110. * @param yearsStandardVo 需要修改的年度计划
  111. * @return 结果
  112. */
  113. public AjaxResult appUpdate(PlanYearsStandardVo yearsStandardVo);
  114. /**
  115. * 发函催告
  116. *
  117. * @param yearsStandardVo 年度计划
  118. * @return 结果
  119. */
  120. AjaxResult sendLetter(PlanYearsStandardVo yearsStandardVo);
  121. /**
  122. * 上传计划关联文件后保存文件信息
  123. *
  124. * @param yearsStandardVo 年度计划
  125. * @return 结果
  126. */
  127. AjaxResult upLoadPlanFile(PlanYearsStandardVo yearsStandardVo);
  128. /**
  129. * 下载计划关联文件
  130. *
  131. * @param yearsStandardVo 年度计划
  132. * @return 结果
  133. */
  134. AjaxResult downLoadPlanFile(PlanYearsStandardVo yearsStandardVo);
  135. /**
  136. * 需求单位首页计划管理总数
  137. *
  138. * @return
  139. */
  140. AjaxResult demandUnitPlanManagementTotal();
  141. /**
  142. * 采购管理部门首页计划管理总数
  143. *
  144. * @return
  145. */
  146. AjaxResult purchasingManagementPurchasingManagementTotal();
  147. /**
  148. * 需求单位首页需求管理总数
  149. *
  150. * @return
  151. */
  152. AjaxResult demandUnitDemandManagementTotal();
  153. /**
  154. * 采购管理部门首页需求管理总数
  155. *
  156. * @return
  157. */
  158. AjaxResult purchasingManagementDemandManagementTotal();
  159. /**
  160. * 需求单位首页合同管理总数
  161. *
  162. * @return
  163. */
  164. AjaxResult demandUnitContractManagementTotal();
  165. /**
  166. * 需求单位首页建设管理总数
  167. *
  168. * @return
  169. */
  170. AjaxResult demandUnitConstructionManagementTotal();
  171. /**
  172. * 采购管理部门首页任务下达管理总数
  173. *
  174. * @return
  175. */
  176. AjaxResult purchasingManagementTaskReleaseTotal();
  177. /**
  178. * 采购办首页采购执行管理总数
  179. *
  180. * @return
  181. */
  182. AjaxResult procurementOfficeProcurementExecutionTotal();
  183. /**
  184. * 采购办首已中标项目理总数
  185. *
  186. * @return
  187. */
  188. AjaxResult procurementOfficeWinningTheBidTotal();
  189. /**
  190. * 采购办首未中标项目理总数
  191. *
  192. * @return
  193. */
  194. AjaxResult procurementOfficeFailureToWinTheBidTotal();
  195. /**
  196. * 查询需求单位待办事项(计划待提交)
  197. *
  198. * @return
  199. */
  200. List<PlanQuarterResponseVo> planWaitCommit();
  201. /**
  202. * 采购管理部门首页待办事项(计划待审核)
  203. *
  204. * @return
  205. */
  206. List<PlanQuarterResponseVo> planWaitExamine();
  207. /**
  208. * 需求单位首页待办事项(全部)
  209. *
  210. * @return
  211. */
  212. AjaxResult demandUnitWillManipulateTotal();
  213. /**
  214. * 采购办首页待办事项(发函催告)
  215. *
  216. * @return
  217. */
  218. List<PlanQuarterResponseVo> willSendLetter();
  219. /**
  220. * 采购管理部门首页待办事项(全部)
  221. *
  222. * @return
  223. */
  224. AjaxResult purchasingManagementWillManipulateTotal();
  225. /**
  226. * 通过年度ID,查询季度、临时计划详情,通过季度、临时计划ID查询项目
  227. * @param planYearId
  228. * @return
  229. */
  230. AjaxResult projectDetails(PlanYearsStandardVo yearsStandardVo);
  231. }