|
@@ -9,32 +9,36 @@ import lombok.Setter;
|
|
|
@Getter
|
|
|
@Setter
|
|
|
public class PushInquiryVO {
|
|
|
+
|
|
|
+ @NotNull(message = "请输入医院编码")
|
|
|
+ private String hospitalCode; //医院编码
|
|
|
+
|
|
|
@NotNull(message = "请输入年龄")
|
|
|
private Long age;
|
|
|
|
|
|
@NotBlank(message = "请输入性别")
|
|
|
- private String sexType;
|
|
|
+ private String sex;
|
|
|
|
|
|
@NotBlank(message = "请输入主诉")
|
|
|
private String symptomJson;
|
|
|
|
|
|
-
|
|
|
- private String pastJson;
|
|
|
- private String otherJson;
|
|
|
- private String vitalsJson;
|
|
|
- private String labsJson;
|
|
|
- private String pacsJson;
|
|
|
- private String disJson;
|
|
|
- private String drugJson;
|
|
|
+ private String vitalJson;//查体
|
|
|
+ private String lisJson;//检验
|
|
|
+ private String pacsJson;//检查
|
|
|
+ private String pastJson;//过往史
|
|
|
+ private String otherJson;//其他史
|
|
|
+ private String diagJson;//诊断
|
|
|
|
|
|
+ //暂时用不上
|
|
|
+ private String drugJson;
|
|
|
private String type;
|
|
|
- private String hospitalCode; //医院编码
|
|
|
private String patientId; //病人id
|
|
|
private String recordId; //就诊序号
|
|
|
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
- return "age="+this.age+"&sexType="+this.sexType+"&symptomJson="+ this.symptomJson+"";
|
|
|
+ return "hospitalCode="+this.hospitalCode+"&age="+this.age+"&sex="+this.sex+"&symptomJson="+ this.symptomJson+"&vitalJson="+ this.vitalJson
|
|
|
+ +"&lisJson="+ this.lisJson+"&pacsJson="+ this.pacsJson+"&pastJson="+ this.pastJson+"&otherJson="+ this.otherJson+"&diagJson="+ this.diagJson+"";
|
|
|
}
|
|
|
|
|
|
|