APP预约接口返回值新增记录ID

master
gongzhenkun 2 years ago
parent 3d9a605930
commit 72d2c0340f

@ -8,6 +8,8 @@ import java.util.Date;
public class PatientHistoryRecordResp implements Serializable {
private static final long serialVersionUID = 7257040908679462977L;
private Long recordId;
private String doctorName;
private String hospitalName;
@ -48,4 +50,12 @@ public class PatientHistoryRecordResp implements Serializable {
public void setRecordTime(Date recordTime) {
this.recordTime = recordTime;
}
public Long getRecordId() {
return recordId;
}
public void setRecordId(Long recordId) {
this.recordId = recordId;
}
}

@ -432,6 +432,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="queryPatientHistoryRecord" parameterType="TRecord" resultType="com.ruoyi.system.domain.resp.PatientHistoryRecordResp">
SELECT
tr.id recordId,
td.`name` doctorName,
th.`name` hospitalName,
td.speciality speciality,

Loading…
Cancel
Save