| | |
| | | import java.text.SimpleDateFormat; |
| | | import java.time.LocalDate; |
| | | import java.util.Calendar; |
| | | import java.util.Collections; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | |
| | | * @return 体检预约 |
| | | */ |
| | | @Override |
| | | public TjReservation selectTjReservationById(Integer id) { |
| | | public TjReservation selectTjReservationById(String id) { |
| | | return tjReservationMapper.selectTjReservationById(id); |
| | | } |
| | | |
| | |
| | | public int deleteTjReservationById(Integer id) { |
| | | return tjReservationMapper.deleteTjReservationById(id); |
| | | } |
| | | |
| | | @Override |
| | | public List<TjReservation> getFirimSfList(String compId) { |
| | | return tjReservationMapper.getFirimSfList(compId); |
| | | } |
| | | |
| | | @Override |
| | | public List<TjReservation> getTeamTjPeopleList(String teamNo, String pacId) { |
| | | return tjReservationMapper.getTeamTjPeopleList(teamNo, pacId); |
| | | } |
| | | } |