|
|
@ -65,25 +65,51 @@ public class PmsTreatmentVo { |
|
|
|
@Data |
|
|
|
public static class TreatmentRecordVO { |
|
|
|
private Long id; |
|
|
|
private Long treatmentId; |
|
|
|
|
|
|
|
private Long patientId; |
|
|
|
|
|
|
|
private String name; |
|
|
|
|
|
|
|
private String pinyinFull; |
|
|
|
|
|
|
|
private String pinyinSimple; |
|
|
|
|
|
|
|
private Byte gender; |
|
|
|
|
|
|
|
private Integer age; |
|
|
|
|
|
|
|
private Date birthDate; |
|
|
|
|
|
|
|
private String ethnicity; |
|
|
|
|
|
|
|
private Integer educationYears; |
|
|
|
|
|
|
|
private String phone; |
|
|
|
|
|
|
|
private Byte idCardType; |
|
|
|
|
|
|
|
private String idCard; |
|
|
|
|
|
|
|
private Byte visitType; |
|
|
|
|
|
|
|
private String visitNumber; |
|
|
|
|
|
|
|
private Date visitTime; |
|
|
|
|
|
|
|
private Date dischargeTime; |
|
|
|
|
|
|
|
private String doctor; |
|
|
|
|
|
|
|
private String deptName; |
|
|
|
|
|
|
|
private String diagnosisCode; |
|
|
|
|
|
|
|
private String diagnosisName; |
|
|
|
|
|
|
|
private Byte status; |
|
|
|
|
|
|
|
private Long treatmentId; |
|
|
|
|
|
|
|
private Long organizationId; |
|
|
|
@ApiModelProperty("生效的code和答案字典") |
|
|
|
private Map<String, TreatmentRecord> validRecordValDict; |
|
|
@ -94,6 +120,9 @@ public class PmsTreatmentVo { |
|
|
|
|
|
|
|
private Date createTime; |
|
|
|
|
|
|
|
public TreatmentRecordVO() { |
|
|
|
} |
|
|
|
|
|
|
|
public TreatmentRecordVO(PmsTreatment pmsTreatment) { |
|
|
|
this.treatmentId = pmsTreatment.getId(); |
|
|
|
this.name = pmsTreatment.getName(); |
|
|
|