|
|
|
@ -13,52 +13,36 @@ import java.io.Serializable;
|
|
|
|
|
* @date 2022/8/9 14:48
|
|
|
|
|
*/
|
|
|
|
|
@ApiModel(value = "AppPatientHospitalDoctor", description = "App端患者预约入参实体")
|
|
|
|
|
public class AppPatientHospitalDoctor implements Serializable
|
|
|
|
|
{
|
|
|
|
|
public class AppPatientHospitalDoctor implements Serializable {
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
/** 患者ID */
|
|
|
|
|
@NotNull(message = "patientId不为空")
|
|
|
|
|
@ApiModelProperty("patientId")
|
|
|
|
|
private Long patientId;
|
|
|
|
|
|
|
|
|
|
/** 医院ID */
|
|
|
|
|
/**
|
|
|
|
|
* 医院ID
|
|
|
|
|
*/
|
|
|
|
|
@NotNull(message = "hospitalId不为空")
|
|
|
|
|
@ApiModelProperty("hospitalId")
|
|
|
|
|
private Long hospitalId;
|
|
|
|
|
|
|
|
|
|
/** 医生ID */
|
|
|
|
|
/**
|
|
|
|
|
* 医生ID
|
|
|
|
|
*/
|
|
|
|
|
@NotNull(message = "doctorId不为空")
|
|
|
|
|
@ApiModelProperty("doctorId")
|
|
|
|
|
private Long doctorId;
|
|
|
|
|
|
|
|
|
|
public Long getPatientId()
|
|
|
|
|
{
|
|
|
|
|
return patientId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setPatientId(Long patientId)
|
|
|
|
|
{
|
|
|
|
|
this.patientId = patientId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getHospitalId()
|
|
|
|
|
{
|
|
|
|
|
public Long getHospitalId() {
|
|
|
|
|
return hospitalId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setHospitalId(Long hospitalId)
|
|
|
|
|
{
|
|
|
|
|
public void setHospitalId(Long hospitalId) {
|
|
|
|
|
this.hospitalId = hospitalId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getDoctorId()
|
|
|
|
|
{
|
|
|
|
|
public Long getDoctorId() {
|
|
|
|
|
return doctorId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setDoctorId(Long doctorId)
|
|
|
|
|
{
|
|
|
|
|
public void setDoctorId(Long doctorId) {
|
|
|
|
|
this.doctorId = doctorId;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|