| | |
| | | import io.swagger.v3.oas.annotations.Parameter; |
| | | import io.swagger.v3.oas.annotations.Operation; |
| | | |
| | | import java.time.LocalDate; |
| | | import java.util.*; |
| | | import java.io.IOException; |
| | | |
| | |
| | | @PreAuthorize("@ss.hasPermission('ecg:appointment:confirm')") |
| | | public CommonResult<Integer> appointmentConfirmVip(@RequestBody AppointmentConfirmReqVO confirmReqVO) { |
| | | confirmReqVO.setIsVip(1); |
| | | confirmReqVO.setBookDate( LocalDate.now() ); |
| | | Integer newSeqNo = appointmentService.appoitmentConfirm( confirmReqVO ); |
| | | return success(newSeqNo); |
| | | } |