|
|
@ -40,10 +40,29 @@ public class AppointmentRecordResultDTO implements Serializable { |
|
|
|
*/ |
|
|
|
private String remark; |
|
|
|
|
|
|
|
/** |
|
|
|
* 事项图片 |
|
|
|
*/ |
|
|
|
private String matterImg; |
|
|
|
|
|
|
|
/** |
|
|
|
* 是否能取消预约 true:能,false:不能 |
|
|
|
*/ |
|
|
|
private Boolean isCancel; |
|
|
|
|
|
|
|
/** |
|
|
|
* 记录ID |
|
|
|
*/ |
|
|
|
private String recordId; |
|
|
|
|
|
|
|
/** |
|
|
|
* 可预约事项所属中心名字 |
|
|
|
*/ |
|
|
|
private String centerName; |
|
|
|
|
|
|
|
/** |
|
|
|
* 可预约事项所属中心地址 |
|
|
|
*/ |
|
|
|
private String address; |
|
|
|
|
|
|
|
/** |
|
|
@ -51,6 +70,9 @@ public class AppointmentRecordResultDTO implements Serializable { |
|
|
|
*/ |
|
|
|
private List<String> appointmentTime; |
|
|
|
|
|
|
|
/** |
|
|
|
* 预约日期 |
|
|
|
*/ |
|
|
|
private String appointmentDate; |
|
|
|
|
|
|
|
@JsonIgnore |
|
|
@ -68,5 +90,6 @@ public class AppointmentRecordResultDTO implements Serializable { |
|
|
|
this.recordId = ""; |
|
|
|
this.appointmentDate = ""; |
|
|
|
this.isCancel = true; |
|
|
|
this.matterImg = ""; |
|
|
|
} |
|
|
|
} |
|
|
|