IBmDeptPlanAreaService.java 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. package com.ruoyi.system.service.project;
  2. import com.ruoyi.system.domain.project.BmDeptPlanArea;
  3. import com.ruoyi.system.domain.vo.BmDeptPlanVo;
  4. import java.util.List;
  5. /**
  6. * 两区及乡镇单位部门招商计划Service接口
  7. *
  8. * @author ruoyi
  9. * @date 2021-07-05
  10. */
  11. public interface IBmDeptPlanAreaService
  12. {
  13. /**
  14. * 查询两区及乡镇单位部门招商计划
  15. *
  16. * @param id 两区及乡镇单位部门招商计划ID
  17. * @return 两区及乡镇单位部门招商计划
  18. */
  19. public BmDeptPlanArea selectBmDeptPlanAreaById(Long id);
  20. /**
  21. * 查询两区及乡镇单位部门招商计划列表
  22. *
  23. * @param bmDeptPlanArea 两区及乡镇单位部门招商计划
  24. * @return 两区及乡镇单位部门招商计划集合
  25. */
  26. public List<BmDeptPlanArea> selectBmDeptPlanAreaList(BmDeptPlanArea bmDeptPlanArea);
  27. /**
  28. * 新增两区及乡镇单位部门招商计划
  29. *
  30. * @param bmDeptPlanArea 两区及乡镇单位部门招商计划
  31. * @return 结果
  32. */
  33. public int insertBmDeptPlanArea(BmDeptPlanArea bmDeptPlanArea);
  34. /**
  35. * 修改两区及乡镇单位部门招商计划
  36. *
  37. * @param bmDeptPlanArea 两区及乡镇单位部门招商计划
  38. * @return 结果
  39. */
  40. public int updateBmDeptPlanArea(BmDeptPlanArea bmDeptPlanArea);
  41. /**
  42. * 批量删除两区及乡镇单位部门招商计划
  43. *
  44. * @param ids 需要删除的两区及乡镇单位部门招商计划ID
  45. * @return 结果
  46. */
  47. public int deleteBmDeptPlanAreaByIds(Long[] ids);
  48. /**
  49. * 删除两区及乡镇单位部门招商计划信息
  50. *
  51. * @param id 两区及乡镇单位部门招商计划ID
  52. * @return 结果
  53. */
  54. public int deleteBmDeptPlanAreaById(Long id);
  55. /**
  56. * 两区及乡镇榜单
  57. * @return
  58. */
  59. public List<BmDeptPlanArea> selectAreaList(String year);
  60. }