| | |
| | | } |
| | | |
| | | @Override |
| | | public CoalPayStudent selectbyId(Long studentId) { |
| | | return coalPayStudentMapper.selectById(studentId); |
| | | public List<CoalPayStudent> selectbyId(Long studentId) { |
| | | List<Long> longs = new ArrayList<>(); |
| | | longs.add(studentId); |
| | | return coalPayStudentMapper.selectBatchIds(longs); |
| | | } |
| | | |
| | | @Override |
| | | public void updateByCoalPayId(CoalPayStudent coalPayStudent) { |
| | | coalPayStudentMapper.updateByCoalPayId(coalPayStudent); |
| | | } |
| | | |
| | | @Override |
| | | public void updateByCoalPayIdAndStatus(CoalPayStudent payStudent) { |
| | | coalPayStudentMapper.updateByCoalPayIdAndStatus(payStudent); |
| | | } |
| | | } |