package com.smartor.mapper; 
 | 
  
 | 
import java.util.List; 
 | 
import com.smartor.domain.SchemePlan; 
 | 
  
 | 
/** 
 | 
 * 管理计划Mapper接口 
 | 
 *  
 | 
 * @author smartor 
 | 
 * @date 2023-03-04 
 | 
 */ 
 | 
public interface SchemePlanMapper  
 | 
{ 
 | 
    /** 
 | 
     * 查询管理计划 
 | 
     *  
 | 
     * @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 id 管理计划主键 
 | 
     * @return 结果 
 | 
     */ 
 | 
    public int deleteSchemePlanById(Long id); 
 | 
  
 | 
    /** 
 | 
     * 批量删除管理计划 
 | 
     *  
 | 
     * @param ids 需要删除的数据主键集合 
 | 
     * @return 结果 
 | 
     */ 
 | 
    public int deleteSchemePlanByIds(Long[] ids); 
 | 
} 
 |