heheng
2024-11-20 2d27b24029adafdbfc5703b38a519d65beda6a68
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package com.gkhy.system.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.gkhy.system.domain.ProjectExpertDetail;
 
import java.util.List;
 
/**
 * 项目专家得分明细Mapper接口
 *
 * @author expert
 * @date 2024-11-14
 */
public interface ProjectExpertDetailMapper extends BaseMapper<ProjectExpertDetail>
{
    /**
     * 查询项目专家得分明细
     *
     * @param id 项目专家得分明细主键
     * @return 项目专家得分明细
     */
    public ProjectExpertDetail selectProjectExpertDetailById(Long id);
 
    /**
     * 查询项目专家得分明细列表
     *
     * @param projectExpertDetail 项目专家得分明细
     * @return 项目专家得分明细集合
     */
    public List<ProjectExpertDetail> selectProjectExpertDetailList(ProjectExpertDetail projectExpertDetail);
 
    /**
     * 新增项目专家得分明细
     *
     * @param projectExpertDetail 项目专家得分明细
     * @return 结果
     */
    public int insertProjectExpertDetail(ProjectExpertDetail projectExpertDetail);
 
    int batchInsertProjectExpertDetail(List<ProjectExpertDetail> list);
 
    /**
     * 修改项目专家得分明细
     *
     * @param projectExpertDetail 项目专家得分明细
     * @return 结果
     */
    public int updateProjectExpertDetail(ProjectExpertDetail projectExpertDetail);
 
    int batchUpdateProjectExpertDetail(List<ProjectExpertDetail> list);
 
    /**
     * 删除项目专家得分明细
     *
     * @param id 项目专家得分明细主键
     * @return 结果
     */
    public int deleteProjectExpertDetailById(Long id);
 
    /**
     * 批量删除项目专家得分明细
     *
     * @param ids 需要删除的数据主键集合
     * @return 结果
     */
    public int deleteProjectExpertDetailByIds(Long[] ids);
}