APP新增患者预约接口
parent
00912980f1
commit
3d9a605930
@ -0,0 +1,63 @@
|
|||||||
|
package com.ruoyi.system.domain.req;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
|
||||||
|
import javax.validation.constraints.NotNull;
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* App端患者预约入参实体
|
||||||
|
*
|
||||||
|
* @author gongzhenkun
|
||||||
|
* @date 2022/8/9 14:48
|
||||||
|
*/
|
||||||
|
@ApiModel(value = "AppletPatientHospitalDoctor", description = "App端患者预约入参实体")
|
||||||
|
public class AppletPatientHospitalDoctor implements Serializable {
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 医院ID
|
||||||
|
*/
|
||||||
|
@NotNull(message = "hospitalId不为空")
|
||||||
|
@ApiModelProperty("hospitalId")
|
||||||
|
private Long hospitalId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 医生ID
|
||||||
|
*/
|
||||||
|
@NotNull(message = "doctorId不为空")
|
||||||
|
@ApiModelProperty("doctorId")
|
||||||
|
private Long doctorId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 患者ID
|
||||||
|
*/
|
||||||
|
@NotNull(message = "patientId不为空")
|
||||||
|
@ApiModelProperty("patientId")
|
||||||
|
private Long patientId;
|
||||||
|
|
||||||
|
public Long getHospitalId() {
|
||||||
|
return hospitalId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setHospitalId(Long hospitalId) {
|
||||||
|
this.hospitalId = hospitalId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getDoctorId() {
|
||||||
|
return doctorId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDoctorId(Long doctorId) {
|
||||||
|
this.doctorId = doctorId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getPatientId() {
|
||||||
|
return patientId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPatientId(Long patientId) {
|
||||||
|
this.patientId = patientId;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue