liusheng
2024-05-13 fd9c3d5901354076b9abe59dcccd26bf7a1083bd
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
package com.ruoyi.system.mapper;
 
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import java.util.List;
import com.ruoyi.system.domain.SysStudent;
 
/**
 * 学生信息Mapper接口
 * 
 * @author ruoyi
 * @date 2021-10-28
 */
public interface SysStudentMapper extends BaseMapper<SysStudent>
{
    /**
     * 查询学生信息列表
     *
     * @param sysStudent 学生信息
     * @return 学生信息集合
     */
    public List<SysStudent> selectSysStudentList(SysStudent sysStudent);
 
 
    public List<SysStudent> getStudentByName(String studentName);
}