BmDeptPlanMapper.java 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. package com.ruoyi.system.mapper.project;
  2. import com.ruoyi.system.domain.project.BmDeptPlan;
  3. import com.ruoyi.system.domain.vo.BmDeptPlanVo;
  4. import java.util.List;
  5. /**
  6. * 部门招商计划Mapper接口
  7. *
  8. * @author ruoyi
  9. * @date 2021-03-09
  10. */
  11. public interface BmDeptPlanMapper
  12. {
  13. /**
  14. * 查询 部门招商计划
  15. *
  16. * @param id 部门招商计划ID
  17. * @return 部门招商计划
  18. */
  19. public BmDeptPlan selectBmDeptPlanById(Long id);
  20. /**
  21. * 查询 部门招商计划列表
  22. *
  23. * @param bmDeptPlan 部门招商计划
  24. * @return 部门招商计划集合
  25. */
  26. public List<BmDeptPlan> selectBmDeptPlanList(BmDeptPlan bmDeptPlan);
  27. /**
  28. * 新增 部门招商计划
  29. *
  30. * @param bmDeptPlan 部门招商计划
  31. * @return 结果
  32. */
  33. public int insertBmDeptPlan(BmDeptPlan bmDeptPlan);
  34. /**
  35. * 修改 部门招商计划
  36. *
  37. * @param bmDeptPlan 部门招商计划
  38. * @return 结果
  39. */
  40. public int updateBmDeptPlan(BmDeptPlan bmDeptPlan);
  41. /**
  42. * 删除 部门招商计划
  43. *
  44. * @param id 部门招商计划ID
  45. * @return 结果
  46. */
  47. public int deleteBmDeptPlanById(Long id);
  48. /**
  49. * 批量删除 部门招商计划
  50. *
  51. * @param ids 需要删除的数据ID
  52. * @return 结果
  53. */
  54. public int deleteBmDeptPlanByIds(Long[] ids);
  55. /**
  56. * 首页-单位榜单
  57. * @return
  58. */
  59. public List<BmDeptPlanVo> selectUnitList();
  60. /**
  61. * 首页-单位榜单资金
  62. * @return
  63. */
  64. public List<BmDeptPlanVo> selectUnitAmountList();
  65. /**
  66. * 统计分析-合同金额
  67. * @return
  68. */
  69. public List<BmDeptPlanVo> selectTotAmtList();
  70. }