package com.smartor.service;
|
|
import java.util.List;
|
import com.smartor.domain.SchemePlan;
|
|
/**
|
* 管理计划Service接口
|
*
|
* @author smartor
|
* @date 2023-03-04
|
*/
|
public interface ISchemePlanService
|
{
|
/**
|
* 查询管理计划
|
*
|
* @param id 管理计划主键
|
* @return 管理计划
|
*/
|
public SchemePlan selectSchemePlanById(Long id);
|
|
/**
|
* 查询管理计划列表
|
*
|
* @param schemePlan 管理计划
|
* @return 管理计划集合
|
*/
|
public List<SchemePlan> selectSchemePlanList(SchemePlan schemePlan);
|
|
/**
|
* 新增管理计划
|
*
|
* @param schemePlan 管理计划
|
* @return 结果
|
*/
|
public int insertSchemePlan(SchemePlan schemePlan);
|
|
/**
|
* 修改管理计划
|
*
|
* @param schemePlan 管理计划
|
* @return 结果
|
*/
|
public int updateSchemePlan(SchemePlan schemePlan);
|
|
/**
|
* 批量删除管理计划
|
*
|
* @param ids 需要删除的管理计划主键集合
|
* @return 结果
|
*/
|
public int deleteSchemePlanByIds(Long[] ids);
|
|
/**
|
* 删除管理计划信息
|
*
|
* @param id 管理计划主键
|
* @return 结果
|
*/
|
public int deleteSchemePlanById(Long id);
|
}
|