package com.dsh.guns.modular.system.service; import com.dsh.course.dto.StudentSearch; import com.dsh.course.dto.TStudentDto; import com.dsh.guns.modular.system.model.TStudent; import java.util.List; /** *

* 学员信息 服务类 *

* * @author stylefeng * @since 2023-09-12 */ public interface ITStudentService { List listAll(StudentSearch search); TStudentDto listOne(Integer id); void update(TStudent tStudent); }