44323
2023-09-16 a99684a9a4ecbdd71d1c93ef824f7741ff52c5d9
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
package com.dsh.account.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dsh.account.dto.StudentSearch;
import com.dsh.account.dto.TStudentDto;
import com.dsh.account.entity.TStudent;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
 
/**
 * <p>
 * 学员信息 Mapper 接口
 * </p>
 *
 * @author administrator
 * @since 2023-06-14
 */
@Mapper
public interface TStudentMapper extends BaseMapper<TStudent> {
 
    List<TStudentDto> selectAll(@Param("item") StudentSearch search);
 
    TStudentDto selectWebOne(@Param("id") Integer id);
}