lisy
2023-06-14 dce6ffdc52bbba0c28d761fcd1c5659840f0bba9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.dsh.account.service;
 
import com.dsh.account.entity.TStudent;
import com.baomidou.mybatisplus.service.IService;
 
/**
 * <p>
 * 学员信息 服务类
 * </p>
 *
 * @author administrator
 * @since 2023-06-14
 */
public interface TStudentService extends IService<TStudent> {
 
}