| | |
| | | import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.dsh.account.dto.StudentSearch; |
| | | import com.dsh.account.dto.TStudentDto; |
| | | import com.dsh.account.entity.Coach; |
| | | import com.dsh.account.entity.TAppUser; |
| | | import com.dsh.account.entity.TStudent; |
| | |
| | | return ResultUtil.success(); |
| | | } |
| | | |
| | | @Override |
| | | public List<TStudentDto> listAll(StudentSearch search) { |
| | | return this.baseMapper.selectAll(search); |
| | | } |
| | | |
| | | @Override |
| | | public TStudentDto listOne(Integer id) { |
| | | return this.baseMapper.selectWebOne(id); |
| | | } |
| | | |
| | | |
| | | } |