PlanYearsService.java 6.1 KB

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