lisy
2023-08-04 e88d8861137a816a0ce8b79c390f319c46c6242d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.dsh.account.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dsh.account.entity.TStudent;
import org.apache.ibatis.annotations.Mapper;
 
 
/**
 * <p>
 * 学员信息 Mapper 接口
 * </p>
 *
 * @author administrator
 * @since 2023-06-14
 */
@Mapper
public interface TStudentMapper extends BaseMapper<TStudent> {
 
}