| | |
| | | package com.dsh.account.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.dsh.account.dto.CreateHistoryDto; |
| | | import com.dsh.account.dto.GetHistoryDto; |
| | | import com.dsh.account.dto.StudentSearch; |
| | | import com.dsh.account.dto.TStudentDto; |
| | | import com.dsh.account.entity.TStudent; |
| | |
| | | List<TStudentDto> selectAll(@Param("item") StudentSearch search); |
| | | |
| | | TStudentDto selectWebOne(@Param("id") Integer id); |
| | | |
| | | void createHistory(@Param("createHistoryDto") CreateHistoryDto createHistoryDto); |
| | | |
| | | List<GetHistoryDto> getHistory(); |
| | | } |