PlanOfYearsService.java 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. package com.ozs.plan.service;
  2. import com.ozs.common.core.domain.AjaxResult;
  3. import com.ozs.plan.doman.PlanOfYears;
  4. import com.ozs.plan.doman.vo.requestVo.PlanOfYearsStandardVo;
  5. import com.ozs.plan.doman.vo.responseVo.PlanOfYearsResponseVo;
  6. import java.util.List;
  7. /**
  8. * 系统访问日志情况信息 服务层
  9. *
  10. * @author bu
  11. */
  12. public interface PlanOfYearsService {
  13. /**
  14. * 查询年度计划记录集合
  15. *
  16. * @param vo 年度计划请求对象
  17. * @return 年度计划记录集合
  18. */
  19. public List<PlanOfYears> selectPlanOfYearsList(PlanOfYearsStandardVo vo);
  20. /**
  21. * 创建年度计划
  22. *
  23. * @param yearsStandardVo 年度计划请求对象
  24. */
  25. public AjaxResult insertPlanOfYears(PlanOfYearsStandardVo yearsStandardVo);
  26. /**
  27. * 批量删除年度计划
  28. *
  29. * @param planIds 需要删除的年度计划ID
  30. * @return 结果
  31. */
  32. public AjaxResult deletePlanOfYearsByIds(Long[] planIds);
  33. /**
  34. * 批量删除年度计划
  35. *
  36. * @param planYearId 需要删除的年度计划ID
  37. * @return 结果
  38. */
  39. public AjaxResult deletePlanOfYearsById(Long planYearId);
  40. /**
  41. * 根据id获取年度计划信息
  42. *
  43. * @param yearsStandardVo 年度计划请求对象
  44. * @return 结果
  45. */
  46. public AjaxResult view(PlanOfYearsStandardVo yearsStandardVo);
  47. /**
  48. * 修改年度计划
  49. *
  50. * @param yearsStandardVo 修改年度计划请求对象
  51. * @return 结果
  52. */
  53. public AjaxResult update(PlanOfYearsStandardVo yearsStandardVo);
  54. /**
  55. * 导入年度计划数据
  56. *
  57. * @return 结果
  58. */
  59. public String importPlanOfYears(List<PlanOfYears> planOfYears, boolean isUpdateSupport, String operName);
  60. /**
  61. * 提交年度计划
  62. *
  63. * @param yearsStandardVo 提交年度计划请求对象
  64. * @return 结果
  65. */
  66. public AjaxResult commit(PlanOfYearsStandardVo yearsStandardVo);
  67. /**
  68. * 审核年度计划
  69. *
  70. * @param yearsStandardVo 需要审核的年度计划
  71. * @return 结果
  72. */
  73. public AjaxResult reviewTo(PlanOfYearsStandardVo yearsStandardVo);
  74. /**
  75. * 审核年度计划退回
  76. *
  77. * @param yearsStandardVo 需要审核的年度计划
  78. * @return 结果
  79. */
  80. public AjaxResult reviewReturn(PlanOfYearsStandardVo yearsStandardVo);
  81. }