@@ -209,4 +209,9 @@ public class DataPageDockVO extends CdssLogBaseVO{
* 量表结果
*/
private List<Scale> scale = new ArrayList<>();
+
+ /**
+ * 医生
+ */
+ private Doctor doctor;
}
@@ -0,0 +1,37 @@
+package com.diagbot.vo;
+import lombok.Getter;
+import lombok.Setter;
+/**
+ * 医生信息
+@Getter
+@Setter
+public class Doctor {
+ * 医生ID
+ private Long id;
+ * 医生科室ID
+ private Long deptId;
+ * 医生姓名
+ private String name;
+ * 医生职称(0-无,1-医师,2-主治医师,3-副主任医师,4-主任医师)
+ private String professionalTitle;
+ * 医生职业资格 0/1
+ private Integer professionalPhysicianQualification;
+}
@@ -208,4 +208,9 @@ public class PushJoinVO {
//过期时间字符串
@ApiModelProperty(hidden = true)
private String expireTimeStr;
@@ -186,6 +186,11 @@ public class SearchData extends HospitalBaseVO {
public Integer getLength() {
return length;