yaowanxin
昨天 4c001e8b7efc1383d1cdfc8219538eeaec49c51b
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
package com.ruoyi.staff_management.mapper;
 
import com.ruoyi.staff_management.domain.RyglAddEmployee;
 
import java.util.List;
 
/**
* @author 86151
* @description 针对表【rygl_add_employee】的数据库操作Mapper
* @createDate 2025-06-23 16:05:34
* @Entity staff_management.domain.RyglAddEmployee
*/
public interface RyglAddEmployeeMapper {
    //获取所有员工信息
    List<RyglAddEmployee> getAllEmployees();
    int deleteByPrimaryKey(Long id);//删除员工信息
 
//    int insert(RyglAddEmployee record);//添加员工信息
 
    int insertSelective(RyglAddEmployee record);//添加员工信息
 
    RyglAddEmployee selectByPrimaryKey(Long id);//根据id查询员工信息
 
    int updateByPrimaryKeySelective(RyglAddEmployee record);//修改员工信息
 
    List<RyglAddEmployee> searchByName(String name);
 
//    int updateByPrimaryKey(RyglAddEmployee record);//修改员工信息
 
}