liujie
2023-09-16 b53eadb09738531d085d911fa3b63e5130a4c6b4
cloud-server-account/src/main/java/com/dsh/account/mapper/TStudentMapper.java
@@ -1,8 +1,13 @@
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;
/**
@@ -16,4 +21,7 @@
@Mapper
public interface TStudentMapper extends BaseMapper<TStudent> {
    List<TStudentDto> selectAll(@Param("item") StudentSearch search);
    TStudentDto selectWebOne(@Param("id") Integer id);
}