package com.ruoyi.system.service.project; import com.ruoyi.system.domain.project.BmDeptPlanArea; import com.ruoyi.system.domain.vo.BmDeptPlanVo; import java.util.List; /** * 两区及乡镇单位部门招商计划Service接口 * * @author ruoyi * @date 2021-07-05 */ public interface IBmDeptPlanAreaService { /** * 查询两区及乡镇单位部门招商计划 * * @param id 两区及乡镇单位部门招商计划ID * @return 两区及乡镇单位部门招商计划 */ public BmDeptPlanArea selectBmDeptPlanAreaById(Long id); /** * 查询两区及乡镇单位部门招商计划列表 * * @param bmDeptPlanArea 两区及乡镇单位部门招商计划 * @return 两区及乡镇单位部门招商计划集合 */ public List selectBmDeptPlanAreaList(BmDeptPlanArea bmDeptPlanArea); /** * 新增两区及乡镇单位部门招商计划 * * @param bmDeptPlanArea 两区及乡镇单位部门招商计划 * @return 结果 */ public int insertBmDeptPlanArea(BmDeptPlanArea bmDeptPlanArea); /** * 修改两区及乡镇单位部门招商计划 * * @param bmDeptPlanArea 两区及乡镇单位部门招商计划 * @return 结果 */ public int updateBmDeptPlanArea(BmDeptPlanArea bmDeptPlanArea); /** * 批量删除两区及乡镇单位部门招商计划 * * @param ids 需要删除的两区及乡镇单位部门招商计划ID * @return 结果 */ public int deleteBmDeptPlanAreaByIds(Long[] ids); /** * 删除两区及乡镇单位部门招商计划信息 * * @param id 两区及乡镇单位部门招商计划ID * @return 结果 */ public int deleteBmDeptPlanAreaById(Long id); /** * 两区及乡镇榜单 * @return */ public List selectAreaList(String year); }