| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | | package com.doumee.core.haikang.model.param.respose; |  |   |  | import com.doumee.core.haikang.model.param.request.VisitAppointmentPermissonRequest; |  | import com.doumee.core.haikang.model.param.request.VisitAppointmentVistorRequest; |  | import lombok.Data; |  |   |  | import java.util.List; |  |   |  | @Data |  | public class VisitAppointmentResponse { |  |   |  |     private String  appointRecordId;//    string    False    预约记录ID,可作为修改、取消预约的依据 |  |     private List<VisitAppointmentMDJResponse>   appointmentInfoList;//    object[]    False    预约详细信息 |  | } | 
 |