package com.gkhy.system.mapper;
|
|
import java.util.List;
|
import com.gkhy.system.domain.ProjectExpert;
|
|
/**
|
* 项目专家关联Mapper接口
|
*
|
* @author expert
|
* @date 2024-11-14
|
*/
|
public interface ProjectExpertMapper
|
{
|
/**
|
* 查询项目专家关联
|
*
|
* @param id 项目专家关联主键
|
* @return 项目专家关联
|
*/
|
public ProjectExpert selectProjectExpertById(Long id);
|
|
/**
|
* 查询项目专家关联列表
|
*
|
* @param projectExpert 项目专家关联
|
* @return 项目专家关联集合
|
*/
|
public List<ProjectExpert> selectProjectExpertList(ProjectExpert projectExpert);
|
|
/**
|
* 新增项目专家关联
|
*
|
* @param projectExpert 项目专家关联
|
* @return 结果
|
*/
|
public int insertProjectExpert(ProjectExpert projectExpert);
|
|
/**
|
* 修改项目专家关联
|
*
|
* @param projectExpert 项目专家关联
|
* @return 结果
|
*/
|
public int updateProjectExpert(ProjectExpert projectExpert);
|
|
/**
|
* 删除项目专家关联
|
*
|
* @param id 项目专家关联主键
|
* @return 结果
|
*/
|
public int deleteProjectExpertById(Long id);
|
|
/**
|
* 批量删除项目专家关联
|
*
|
* @param ids 需要删除的数据主键集合
|
* @return 结果
|
*/
|
public int deleteProjectExpertByIds(Long[] ids);
|
}
|